
.container {
    width: 100%;
    margin: 0 auto;
}
        
.noticia {
    display: flex;
    align-items: flex-start;
    padding-top: 10px;
    align-items: center;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 10px;
    text-decoration: none;
    color: inherit;
}
        
.noticia:hover {
    background-color: #f5f5f5;
}
        
.noticia img {
    width: 110px;
    height: 80px;
    margin-right: 10px;
    border-radius: 6px;
    object-fit: cover;
    object-position: center;
    background-color: #eee;
    display: block;
}

.noticia h2 {
    font-size: 15px;
    margin: 0 0 5px;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: #262626;
}
        
.noticia p {
    margin: 0;
    font-size: 14px;
    color: #444;
}

.subbox-wrapper {
    display: flex;
    gap: 15px;
    width: 100%;
    margin-top: 12px;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.subbox-item {
    flex: 1;
    text-decoration: none;
    background-color: #1e1e1e;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s, filter 0.2s;
    display: flex;
    flex-direction: column;
    min-width: 180px;
    max-width: 50%;
    box-sizing: border-box;
    position: relative;
}

.subbox-item:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.subbox-img {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-right: 4px solid orange;
}

.subbox-chapeu {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: orange;
    color: #2c2c2c;
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 2px;
    letter-spacing: 0.3px;
}

.subbox-title {
    font-family: Inter, sans-serif;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 600;
    color: #f5f5f5;
    padding: 8px 10px 12px 10px;
    text-align: left;
}

@media (max-width: 900px) {
    .subbox-wrapper {
        flex-direction: column;
    }
    .subbox-item {
        max-width: 100%;
    }
    .subbox-img {
        height: 200px;
    }
}

.divfaixa-wrapper {
    display: flex;
    width: 100%;
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #2c2c2c;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 15px;
}

.divfaixa-esq {
    background-color: orange;
    padding: 6px 12px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.4px;
}

.divfaixa-dir {
    background-color: #1e1e1e;
    color: #f5f5f5;
    flex: 1;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    letter-spacing: -0.4px;
}

@media (max-width: 600px) {
    .divfaixa-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .divfaixa-esq, .divfaixa-dir {
        justify-content: center;
    }
}