/* Estilos para a página de detalhes da notícia */
.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 15px;
}

.article-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.article-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-bottom: 15px;
}

.article-subtitle {
    font-size: 18px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 400;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.article-date {
    display: flex;
    align-items: center;
}

.article-date i {
    margin-right: 5px;
    color: #0056b3;
}

.article-share {
    margin-top: 10px;
}

.article-featured-image {
    position: relative;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-featured-image.float-left {
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
    max-width: 50%;
}

.article-featured-image.float-right {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
    max-width: 50%;
}

.image-caption {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 15px;
    font-size: 13px;
    line-height: 1.4;
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content h2, 
.article-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #222;
}

.article-content a {
    color: #0056b3;
    text-decoration: none;
    border-bottom: 1px dotted #0056b3;
}

.article-content a:hover {
    border-bottom: 1px solid #0056b3;
}

.article-content ul, 
.article-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-gallery {
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.article-gallery .owl-carousel .item {
    padding: 5px;
}

.article-gallery .owl-carousel img {
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.article-gallery .owl-carousel img:hover {
    transform: scale(1.02);
}

.article-gallery .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.article-gallery .owl-nav button {
    background-color: #f0f0f0 !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    margin: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.article-gallery .owl-nav button:hover {
    background-color: #0056b3 !important;
}

.article-gallery .owl-nav button img {
    width: 20px;
    height: 20px;
    filter: brightness(0.7);
}

.article-gallery .owl-nav button:hover img {
    filter: brightness(10);
}

.article-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #666;
}

.article-source {
    margin-bottom: 15px;
}

.article-source strong {
    color: #333;
}

.back-to-news {
    display: inline-flex;
    align-items: center;
    color: #0056b3;
    font-weight: 600;
    text-decoration: none;
    margin: 20px 0;
    transition: color 0.3s ease;
}

.back-to-news i {
    margin-right: 5px;
    transition: transform 0.3s ease;
}

.back-to-news:hover {
    color: #003d82;
    text-decoration: none;
}

.back-to-news:hover i {
    transform: translateX(-5px);
}

/* Responsividade */
@media (max-width: 767px) {
    .article-title {
        font-size: 26px;
    }
    
    .article-subtitle {
        font-size: 16px;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-share {
        margin-top: 15px;
    }
    
    .article-featured-image.float-left,
    .article-featured-image.float-right {
        float: none;
        margin: 0 0 20px 0;
        max-width: 100%;
    }
    
    .article-content {
        font-size: 15px;
    }
}
