/* Press Article Page Styles */

/* Article Navigation */
.article-nav {
    padding: 20px 0;
    margin-top: 100px;
    background: var(--bg-light);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.back-link:hover {
    gap: 12px;
    color: var(--dark-green);
}

.back-link i {
    font-size: 0.9rem;
}

/* Article Header */
.article-header {
    padding: 60px 0 40px;
    background: var(--white);
    text-align: center;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.article-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, #FFC107 100%);
    color: var(--text-dark);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
}

.article-date i {
    color: var(--primary-green);
}

.article-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-green);
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.3;
}

/* Share Links */
.share-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.share-links span {
    color: var(--text-gray);
    font-weight: 500;
}

.share-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease;
}

.share-links a:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* Award Showcase */
.award-showcase {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
}

.award-badge-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.award-badge-display img {
    width: 200px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.award-info {
    flex: 1;
}

.award-category {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.award-info h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 12px;
}

.award-presenter {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* Article Content */
.article-content {
    padding: 60px 0;
    background: var(--white);
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.dateline {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 28px;
    font-weight: 500;
}

.article-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.article-body h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-green);
    margin: 48px 0 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.article-body h3:first-of-type {
    margin-top: 32px;
    padding-top: 0;
    border-top: none;
}

/* Blockquotes */
blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-green);
    padding: 24px 28px;
    margin: 28px 0;
    border-radius: 0 12px 12px 0;
}

blockquote p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 12px !important;
}

blockquote cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-green);
    font-size: 0.95rem;
}

blockquote.highlight-quote {
    background: linear-gradient(135deg, var(--bg-light) 0%, #E8F5E9 100%);
    border-left-color: var(--dark-green);
}

blockquote.featured-quote {
    background: linear-gradient(135deg, #E8F5E9 0%, var(--bg-light) 100%);
    border-left: none;
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    text-align: center;
    padding: 32px;
}

blockquote.featured-quote p {
    font-size: 1.25rem;
    font-weight: 500;
}

/* CTA Section */
.article-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
}

.cta-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}

.cta-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon i {
    font-size: 2rem;
    color: var(--white);
}

.cta-content {
    flex: 1;
}

.cta-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 8px;
}

.cta-content p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Member Showcase (for board announcements) */
.member-showcase {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
}

.member-card {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.member-image {
    position: relative;
    flex-shrink: 0;
}

.member-image img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.member-label {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.member-info h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 8px;
}

.member-title {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.5;
}

/* Welcome Message Box */
.welcome-message {
    background: linear-gradient(135deg, #E8F5E9 0%, var(--bg-light) 100%);
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    padding: 24px 28px;
    margin-top: 32px;
    text-align: center;
}

.welcome-message p {
    margin-bottom: 0 !important;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .member-card {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 24px;
    }
    
    .member-image img {
        width: 150px;
        height: 150px;
    }
    
    .member-info h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .article-nav {
        margin-top: 80px;
    }
    
    .article-header {
        padding: 40px 0 30px;
    }
    
    .article-header h1 {
        font-size: 1.8rem;
        padding: 0 16px;
    }
    
    .share-links {
        gap: 10px;
    }
    
    .share-links a {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .award-badge-display {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .award-badge-display img {
        width: 150px;
    }
    
    .award-info h2 {
        font-size: 1.4rem;
    }
    
    .article-content {
        padding: 40px 0;
    }
    
    .article-body {
        padding: 0 16px;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .article-body p {
        font-size: 1rem;
    }
    
    .article-body h3 {
        font-size: 1.3rem;
    }
    
    blockquote {
        padding: 20px;
        margin: 24px 0;
    }
    
    blockquote p {
        font-size: 1rem;
    }
    
    blockquote.featured-quote p {
        font-size: 1.1rem;
    }
    
    .article-cta {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .article-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .article-header h1 {
        font-size: 1.5rem;
    }
    
    .share-links {
        flex-direction: column;
    }
    
    .share-links a {
        width: 100%;
        justify-content: center;
    }
}
