/* Estilos da seção de notícia ABC News */



.abc-header img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    width: 12%;
    max-width: 132px;
}

@media screen and (max-width: 480px) {
    .abc-header img {
        width: 30%;
    }
}



/* Updated ABC News header styling */
.abc-header {
    background-color: #fff;
    padding: 16px 0;
    border-bottom: 1px solid #d9d9d9;
}

.abc-logo svg {
    height: 35px;
    width: auto;
    display: block;
}

/* Main section styling adjustments */
.principal {
    background-color: #fff;
    padding: 20px 0 40px;
}

.container-principal {
    margin: 0 auto;
    padding: 0 20px;
}

/* News content section with proper spacing */
.news-content {
    margin-bottom: 30px;
}

/* Exact breaking news styling from reference */
.breaking-news-tag {
    font-size: 37px;
    text-align: left;
    font-weight: 900;
    font-family: "Inter Tight", sans-serif;
}

/* Headline using Inter Tight bold from reference */
.news-headline {
    font-size: 37px;
    font-weight: 900;
    line-height: 1.15;
    color: #000;
    margin-bottom: 12px;
    font-family: "Inter Tight", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Subtitle exact styling */
.news-subtitle {
    font-size: 22px;
    text-align: left;
    font-weight: 600;
    font-family: Inter, sans-serif;
}

/* Meta wrapper with authors and date inline, buttons right-aligned */
.news-meta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    border-bottom: 2px solid grey;
    font-size: 16px;
    text-align: left;
    font-weight: 400;
    font-family: "Inter Tight", sans-serif;
    color: #696f7d;
    background-image: unset;
}

/* News info container keeps byline and date together */
.news-info {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.news-byline {
    color: #000;
    margin: 0;
}

.author-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 400;
}

.author-link:hover {
    text-decoration: underline;
}

.news-date {
    color: #666;
    margin: 0;
    font-weight: 400;
}

/* Social buttons exact styling from reference */
.social-share-buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #000;
}

.share-btn:hover {
    background-color: #f5f5f5;
    border-color: #999;
}

.share-btn svg {
    width: 16px;
    height: 16px;
}

.video_vturb {
    margin-top: 24px;
}

.img_adv {
    max-width: 100%;
    height: auto;
    margin-top: 16px;
}

/* Responsive adjustments matching reference */
@media (max-width: 768px) {
    .abc-header {
        text-align: left;
    }

    .abc-logo svg {
        margin: 0 auto;
    }

    .news-headline {
        font-size: 28px;
    }

    .news-subtitle {
        font-size: 18px;
    }

    .news-meta-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .social-share-buttons {
        width: 100%;
        justify-content: flex-start;
    }

    .container-principal {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .abc-header {
        padding: 12px 0;
    }

    .abc-logo svg {
        height: 30px;
    }

    .news-headline {
        font-size: 21px;
        line-height: 1.1;
    }

    .news-subtitle {
        font-size: 16px;
    }

    .breaking-news-tag {
        font-size: 21px;
        letter-spacing: 0;
        line-height: 23px;
    }

    .share-btn {
        width: 34px;
        height: 34px;
    }

    .share-btn svg {
        width: 15px;
        height: 15px;
    }
}