/* ========== PRESS HERO SECTION ========== */
.press-hero-section {
    position: relative;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(18, 18, 18, 0.88) 100%),
        url('https://www.transparenttextures.com/patterns/carbon-fibre-v2.png');
    background-size: auto, 300px 300px;
    min-height: 40vh;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    border-bottom: 3px solid rgba(0, 176, 176, 0.4);
    overflow: hidden;
}

.press-hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 800px 400px at 50% 50%, 
        rgba(0, 176, 176, 0.15) 0%, 
        transparent 50%
    );
    z-index: 1;
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

.press-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    right: -50%;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(0, 212, 212, 0.08) 100px,
            rgba(0, 212, 212, 0.08) 101px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 100px,
            rgba(0, 176, 176, 0.06) 100px,
            rgba(0, 176, 176, 0.06) 101px
        );
    z-index: 1;
    pointer-events: none;
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(100px) translateY(100px);
    }
}

.press-hero-section .hero-viewport {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
}

.press-hero-section .hero-content {
    max-width: 900px;
    text-align: center;
}

.press-hero-section .hero-title {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 212, 212, 0.3);
}

.press-hero-section .hero-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin: 0;
}

/* ========== PRESS SECTION ========== */
.press-section {
    background: #f5f7fa;
    padding: 80px 0 100px;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* ========== PRESS ARTICLE CARD ========== */
.press-article {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.press-article:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 176, 176, 0.15);
}

.article-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.press-article:hover .article-image img {
    transform: scale(1.1);
}

.article-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.4;
}

.article-title a {
    color: inherit;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: #00b0b0;
}

.article-excerpt {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.article-meta {
    display: flex;
    justify-content: flex-end;
    padding-top: 16px;
    border-top: 1px solid #e9ecef;
}

.article-date {
    font-size: 0.85rem;
    color: #9a9a9a;
    font-weight: 600;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .press-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .press-section {
        padding: 60px 0 80px;
    }
    
    .press-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .article-image {
        height: 200px;
    }
    
    .article-content {
        padding: 24px;
    }
}
