.state-promos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}


@media (max-width: 768px) {
    .state-promos {
        grid-template-columns: 1fr;
    }
}

.state-promo {
    border: 1px solid #333;
    background-color: #fff;
    border-radius:0px;
}

.night-mode .state-promo {
    border: 1px solid #333;
    background-color: #212124;
    border-radius:0px;
}

.state-promo figure {
    margin: 0 0 15px;
}

.state-promo .promo-title {
    margin-bottom: 10px;
}

.state-promo figure img,
.single-news .state-promo figure img{
    margin: 0;
    max-width: 100%;
}

.single-news .state-promo .promo-title h3,
.state-promo .promo-title h3 {
    font-size: 1.5em;
    margin-top:0;
    margin-bottom:0;
}

.state-promo .promo-description {
    margin-bottom: 15px;
}

.state-promo .promo-type, .state-promo .promotype{
    font-size: 0.8rem;
    font-family: 'Roboto Condensed', sans-serif;
}

.state-promo .promo-ctas {
    display: flex;
    gap: 10px;
    margin-bottom:20px;
}

.promo-meta {
    display: none;
}

.button-tr {
    background-color: #baa564;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.button-tr:hover {
    background-color: #baa56480;
    color: #fff;
}

.state-promo > div[class^="promo"] {
    padding:0 20px;
}