/* Respective styles for Cãominhada News Page */

.news-hero {
    background-color: #f8f9fa;
    padding: 160px 0 40px;
    border-bottom: 1px solid #e9ecef;
}

.news-header h1 {
    font-size: 2.5rem;
    color: var(--primary-green-dark);
    margin: 15px 0;
    line-height: 1.2;
}

.news-category {
    background-color: var(--primary-green);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.news-meta {
    color: #6c757d;
    font-size: 0.9rem;
    display: flex;
    gap: 20px;
}

.news-content-section {
    padding: 50px 0;
}

.news-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.main-news-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.news-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.news-body p {
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #212529;
}

.news-quote {
    border-left: 4px solid var(--primary-green);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
    background: #f9f9f9;
    padding: 20px 20px 20px 25px;
    border-radius: 0 8px 8px 0;
}

.news-quote cite {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    font-style: normal;
}

.news-body h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-green-dark);
}

.share-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.share-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.share-btn {
    padding: 8px 16px;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.share-btn:hover {
    opacity: 0.9;
    color: white;
}

.share-btn.whatsapp {
    background-color: #25D366;
}

.share-btn.facebook {
    background-color: #1877F2;
}

.share-btn.twitter {
    background-color: #1DA1F2;
}

/* Sidebar */
.sidebar-widget {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-green);
    display: inline-block;
}

.sidebar-news-list {
    list-style: none;
    padding: 0;
}

.sidebar-news-list li {
    margin-bottom: 20px;
}

.sidebar-news-list a {
    text-decoration: none;
    color: #333;
    display: block;
    font-weight: 500;
    transition: color 0.2s;
}

.sidebar-news-list a:hover {
    color: var(--primary-green);
}

.sidebar-date {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
}

/* Footer overrides for this specific page context if needed */
.main-footer {
    margin-top: 0;
    background: linear-gradient(135deg, rgba(13, 68, 25, 0.85), rgba(8, 38, 16, 0.92)), url('https://images.unsplash.com/photo-1518173946687-a4c8892bbd9f?q=80&w=2560&auto=format&fit=crop') !important;
    background-size: cover !important;
    background-position: center !important;
    background-blend-mode: normal !important;
    color: white;
    padding: 60px 0 30px;
}

@media (max-width: 768px) {
    .news-container {
        grid-template-columns: 1fr;
    }

    .news-header h1 {
        font-size: 1.8rem;
    }
}