/* Press Page Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 100px;
}

.page-header .section-badge {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.page-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Press Section */
.press-section {
    padding: 80px 0;
    background: var(--white);
}

.press-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

/* Press Card */
.press-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.press-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.press-card-inner {
    display: flex;
    align-items: stretch;
}

/* Press Image */
.press-image {
    flex-shrink: 0;
    width: 180px;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.press-image img {
    max-width: 130px;
    max-height: 130px;
    object-fit: contain;
    border-radius: 8px;
}

/* Press Content */
.press-content {
    flex: 1;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.press-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.press-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    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: 0.5px;
}

.press-badge i {
    font-size: 0.7rem;
}

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

.press-date i {
    color: var(--primary-green);
    font-size: 0.85rem;
}

.press-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.press-excerpt {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

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

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

.press-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.press-link:hover i {
    transform: translateX(4px);
}

/* Coming Soon Text */
.press-coming-soon {
    text-align: center;
    color: var(--primary-green);
    font-size: 1rem;
    font-weight: 500;
    margin-top: 50px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 50px;
        margin-top: 80px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .press-section {
        padding: 60px 0;
    }
    
    .press-card-inner {
        flex-direction: column;
    }
    
    .press-image {
        width: 100%;
        min-height: 150px;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .press-image img {
        max-width: 100px;
        max-height: 100px;
    }
    
    .press-content {
        padding: 24px;
    }
    
    .press-title {
        font-size: 1.15rem;
    }
    
    .press-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .press-content {
        padding: 20px;
    }
    
    .press-title {
        font-size: 1.1rem;
    }
    
    .press-excerpt {
        font-size: 0.9rem;
    }
}
