/* ============================================
   PRESS PAGE STYLES
   Colors: #00676d, #0099b0, #f47a20
   ============================================ */

/* PAGE HERO - Gradient Background */
.page-hero {
    background: linear-gradient(135deg, #00676d, #0099b0);
    padding: 100px 0 52px;
    margin-top: 66px;
}

.page-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-hero-tag {
    color: rgba(255,255,255,0.85) !important;
    background: rgba(255,255,255,0.12) !important;
    border-color: rgba(255,255,255,0.22) !important;
}

.page-hero-title {
    font-size: clamp(26px,4vw,46px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.03em;
    color: #ffffff;
    margin: 10px 0 12px;
}

.page-hero-grad {
    background: linear-gradient(135deg, #f47a20 0%, #ffcc00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    max-width: 560px;
}

/* BREADCRUMB */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color .2s;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb i {
    font-size: 9px;
}

.breadcrumb span {
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 90px 0 40px;
    }
    .page-hero-sub {
        font-size: 14px;
    }
}

/* FEATURED PRESS RELEASE */
.featured-press {
    padding: 60px 0 40px;
    background: white;
}

.featured-press-card {
    display: flex;
    gap: 40px;
    background: #f8f9fc;
    border-radius: 24px;
    border: 1px solid #eef2f6;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.featured-press-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,103,109,0.1);
    border-color: rgba(0,153,176,0.3);
}

.featured-press-badge {
    position: absolute;
    top: -12px;
    left: 30px;
    background: linear-gradient(135deg, #f47a20, #ffcc00);
    color: #fff;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.featured-press-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00676d, #0099b0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-press-icon i {
    font-size: 40px;
    color: white;
}

.featured-press-content {
    flex: 1;
}

.featured-press-date {
    font-size: 12px;
    color: #0099b0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.featured-press-content h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.featured-press-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.featured-press-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.featured-press-meta span {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-press-meta i {
    font-size: 12px;
    color: #0099b0;
}

.btn-press {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00676d, #0099b0);
    color: white;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-press:hover {
    transform: translateY(-2px);
    gap: 12px;
    box-shadow: 0 8px 20px rgba(0,103,109,0.3);
}

/* PRESS GRID */
.press-section {
    padding: 40px 0 60px;
    background: #f8f9fc;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.press-card {
    display: flex;
    gap: 24px;
    background: white;
    border-radius: 20px;
    border: 1px solid #eef2f6;
    padding: 28px;
    transition: all 0.3s ease;
}

.press-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,103,109,0.1);
    border-color: rgba(0,153,176,0.3);
}

.press-card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0,103,109,0.1), rgba(0,153,176,0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.press-card-icon i {
    font-size: 28px;
    background: linear-gradient(135deg, #00676d, #0099b0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.press-card-content {
    flex: 1;
}

.press-date {
    font-size: 11px;
    font-weight: 600;
    color: #0099b0;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.press-card-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #1a1a2e;
}

.press-card-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.press-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.press-tag {
    font-size: 10px;
    font-weight: 600;
    color: #0099b0;
    background: rgba(0,153,176,0.08);
    padding: 4px 10px;
    border-radius: 20px;
}

.press-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #00676d;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: gap 0.2s;
}

.press-link:hover {
    gap: 10px;
    color: #f47a20;
}

/* LOAD MORE */
.load-more {
    text-align: center;
    margin-top: 50px;
}

/* MEDIA KIT SECTION */
.mediakit-section {
    padding: 80px 0;
    background: white;
}

.mediakit-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 48px;
    background: linear-gradient(135deg, rgba(0,103,109,0.03), rgba(244,122,32,0.02));
    border-radius: 30px;
    border: 1px solid #eef2f6;
}

.mediakit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00676d, #0099b0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mediakit-icon i {
    font-size: 32px;
    color: white;
}

.mediakit-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.mediakit-content p {
    color: #666;
    margin-bottom: 28px;
}

/* MEDIA INQUIRIES */
.media-inquiries {
    padding: 60px 0;
    background: #f8f9fc;
}

.inquiries-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.inquiries-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.inquiries-content p {
    color: #666;
    margin-bottom: 24px;
}

.inquiries-contact {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.inquiries-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00676d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.inquiries-contact a:hover {
    color: #f47a20;
}

/* CTA STRIP */
.cta-strip {
    background: linear-gradient(135deg, #00676d, #0099b0);
    padding: 72px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cta-text h2 {
    font-size: clamp(20px,3vw,30px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.cta-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cta-primary {
    background: #ffffff;
    color: #00676d;
    border: 2px solid #ffffff;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
}

.btn-cta-primary:hover {
    background: #f8f9fc;
    transform: translateY(-2px);
}

.btn-cta-ghost {
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.45);
    background: transparent;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
}

.btn-cta-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .press-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-press-card {
        flex-direction: column;
        text-align: center;
    }
    
    .featured-press-icon {
        margin: 0 auto;
    }
    
    .featured-press-meta {
        justify-content: center;
    }
    
    .btn-press {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .press-card {
        flex-direction: column;
        text-align: center;
    }
    
    .press-card-icon {
        margin: 0 auto;
    }
    
    .press-tags {
        justify-content: center;
    }
    
    .press-link {
        justify-content: center;
    }
    
    .inquiries-contact {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .mediakit-content {
        padding: 32px 20px;
    }
    
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .cta-actions .btn {
        min-width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .featured-press-content h2 {
        font-size: 20px;
    }
    
    .featured-press-meta {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}