/* Press Article Page Styles */

.article-header {
    background: var(--white);
    color: var(--black);
    padding: 40px 0;
    text-align: left;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
}

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

.article-badge {
    background: var(--accent-green);
    color: var(--dark-green);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 10px 0;
}

.article-date {
    font-size: 0.95rem;
    color: var(--text-gray);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
}

.article-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    max-width: 800px;
    color: #000;
}

.article-subtitle {
    font-size: 1.25rem;
    color: #000;
    max-width: 600px;
    margin: 0;
}

.article-header-logo {
    margin-top: 20px;
}

.article-header-logo img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

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

.article-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.article-main {
    flex: 1;
}

.article-sidebar {
    width: 320px;
    flex-shrink: 0;
    background: var(--bg-cream);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 30px;
}

.article-main {
    max-width: 100%;
}

/* Article Intro Row — stacked vertical */
.article-intro-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.article-intro-image {
    width: 100%;
}

.article-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.article-intro-text p:last-child {
    margin-bottom: 0;
}

.article-hero-image {
    margin-bottom: 40px;
    text-align: center;
}

.article-hero-image img {
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

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

.article-body .lead {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.article-body h2 {
    font-size: 1.8rem;
    color: var(--dark-green);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-light);
}

.article-body h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin: 30px 0 15px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.service-item {
    background: var(--bg-cream);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.service-item i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.service-item h3 {
    font-size: 1.1rem;
    margin: 0 0 8px;
    color: var(--dark-green);
}

.service-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

/* Blockquote */
.article-quote {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    border-left: 4px solid var(--primary-green);
    padding: 30px;
    margin: 40px 0;
    border-radius: 0 12px 12px 0;
    position: relative;
}

.article-quote i {
    font-size: 2rem;
    color: var(--primary-green);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 20px;
}

.article-quote p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.article-quote cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-green);
    display: block;
    text-align: right;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 16px;
    margin: 40px 0;
}

.cta-box h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 10px;
}

.cta-box > p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.cta-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.cta-option h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-option p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.5;
}

.cta-option .btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.cta-option .btn-secondary {
    background: var(--white);
    color: var(--dark-green);
}

.cta-option .btn-secondary:hover {
    background: var(--bg-cream);
}

/* Awards List */
.awards-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.awards-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-cream);
    border-radius: 8px;
    font-weight: 500;
}

.awards-list i {
    color: var(--accent-green);
    font-size: 1.1rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    border-radius: 12px;
    color: var(--white);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Video Embed */
.video-embed-container {
    margin: 40px 0;
    text-align: center;
}

.video-embed-container h3 {
    color: var(--dark-green);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Contact Info Box */
.contact-info-box {
    background: var(--bg-cream);
    padding: 20px 30px 30px;
    border-radius: 12px;
    margin: 40px 0;
}

.contact-info-box h3 {
    color: var(--dark-green);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.contact-info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-box li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
}

.contact-info-box i {
    color: var(--primary-green);
    width: 20px;
}

.contact-info-box a:not(.btn) {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-box a:not(.btn):hover {
    text-decoration: underline;
}

/* Sidebar */
.sidebar-box {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.sidebar-box:last-child {
    margin-bottom: 0;
}

.sidebar-box h3 {
    font-size: 1.1rem;
    color: var(--dark-green);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-green);
}

.sidebar-box p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Social Share */
.social-share {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.share-btn:hover {
    transform: translateY(-2px);
}

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

.share-btn.twitter {
    background: #000000;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.email {
    background: var(--text-gray);
}

/* Related Articles */
.related-articles {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-articles li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.related-articles li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-articles a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    display: block;
    transition: color 0.3s;
}

.related-articles a:hover {
    color: var(--primary-green);
}

/* Article Body Images */
.article-body-image {
    margin: 30px 0;
}

.article-body-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* Image Captions */
.image-caption {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .article-layout {
        flex-direction: column;
    }
    
    .article-sidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .article-intro-row {
        flex-direction: column;
    }

    .article-intro-image {
        width: 100%;
    }

    .article-content {
        margin-top: 116px;
        padding: 30px 0;
    }
    
    .article-header {
        padding: 30px 0;
        text-align: left;
    }
    
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .article-subtitle {
        font-size: 1.1rem;
    }
    
    .article-header-logo img {
        width: 100%;
    }
    
    .awards-list {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-options {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        grid-template-columns: 1fr;
    }
    
    .article-body {
        font-size: 1rem;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .article-quote {
        padding: 24px;
    }
    
    .article-quote p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .article-header {
        padding: 20px 0;
    }
    
    .article-header h1 {
        font-size: 1.6rem;
    }
    
    .article-sidebar {
        padding: 20px;
    }
    
    .cta-box {
        padding: 24px;
    }
}