/* Press Page - Modern Editorial Style */

.press-section {
    background-color: #4b3240;
    color: #ffffff;
    padding: 6rem 0 8rem 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 0;
}

.press-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 2, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.press-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.press-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -0.02em;
    position: relative;
}

.press-subtitle {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    text-align: center;
    margin-bottom: 4rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 0.05em;
}

.press-subtitle em {
    font-style: italic;
    color: #d4af37;
    font-weight: 400;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.press-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.press-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B0200, #d4af37, #8B0200);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.press-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.press-card:hover::before {
    transform: scaleX(1);
}

.press-card--featured {
    background: linear-gradient(135deg, rgba(139, 2, 0, 0.2), rgba(212, 175, 55, 0.1));
    border-color: rgba(212, 175, 55, 0.2);
}

.press-card--featured:hover {
    background: linear-gradient(135deg, rgba(139, 2, 0, 0.3), rgba(212, 175, 55, 0.15));
    border-color: rgba(212, 175, 55, 0.4);
}

.press-card--video {
    border-color: rgba(139, 2, 0, 0.3);
}

.press-card-header {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1.25rem;
}

.press-badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Source Sans Pro', sans-serif;
}

.press-badge--starred {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #0a0a0a;
}

.press-badge--review {
    background: rgba(139, 2, 0, 0.8);
    color: #ffffff;
    border: 1px solid rgba(139, 2, 0, 1);
}

.press-badge--video {
    background: rgba(139, 2, 0, 0.6);
    color: #ffffff;
    border: 1px solid rgba(139, 2, 0, 0.8);
}

.press-badge--featured {
    background: linear-gradient(135deg, #8B0200, #a02020);
    color: #ffffff;
}

.press-badge--podcast {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.press-badge--article {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.press-source {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    font-family: 'Source Sans Pro', sans-serif;
}

.press-card-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.press-card-author {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-style: italic;
    font-family: 'Source Sans Pro', sans-serif;
}

.press-card-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
    line-height: 1.5;
    font-family: 'Source Sans Pro', sans-serif;
}

.press-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Source Sans Pro', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.press-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.press-link:hover {
    color: #f4d03f;
    gap: 0.75rem;
}

.press-link:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .press-section {
        padding: 4rem 0;
    }

    .press-container {
        padding: 0 1.5rem;
    }

    .press-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .press-card {
        padding: 1.5rem;
    }

    .press-title {
        font-size: 2rem;
    }

    .press-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .press-card,
    .press-link,
    .press-card::before {
        transition: none;
    }

    .press-card:hover {
        transform: none;
    }
}

