/* Press Archive Styles */
body {
    background-color: #fdfdfd;
    font-family: 'Inter', sans-serif;
    color: #111;
    margin: 0;
}

/* Minimalist Close Button */
.close-container {
    padding: 40px;
    display: flex;
    justify-content: flex-end;
}

.close-btn {
    text-decoration: none;
    color: #111;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #888;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 40px 80px;
}

.press-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    font-style: italic;
    color: #111;
    margin-bottom: 60px;
    margin-top: 0;
    text-transform: none;
    /* Let the serif style speak */
}

.press-archive {
    display: flex;
    flex-direction: column;
}

.press-row {
    display: flex;
    align-items: baseline;
    padding: 25px 0;
    border-bottom: 1px solid #eaeaea;
    text-decoration: none;
    color: #111;
    transition: color 0.3s ease;

    /* Animation */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered cascading effect for items */
.press-row:nth-child(1) {
    animation-delay: 0.1s;
}

.press-row:nth-child(2) {
    animation-delay: 0.2s;
}

.press-row:nth-child(3) {
    animation-delay: 0.3s;
}

.press-row:nth-child(4) {
    animation-delay: 0.4s;
}

.press-row:nth-child(5) {
    animation-delay: 0.5s;
}

.press-row:nth-child(6) {
    animation-delay: 0.6s;
}

.press-row:nth-child(7) {
    animation-delay: 0.7s;
}

.press-row:nth-child(8) {
    animation-delay: 0.8s;
}

.press-row:nth-child(9) {
    animation-delay: 0.9s;
}

.press-row:nth-child(10) {
    animation-delay: 1.0s;
}

.press-row:nth-child(11) {
    animation-delay: 1.1s;
}

.press-row:nth-child(12) {
    animation-delay: 1.2s;
}

.press-row:nth-child(13) {
    animation-delay: 1.3s;
}

.press-row:nth-child(14) {
    animation-delay: 1.4s;
}

.press-row:nth-child(15) {
    animation-delay: 1.5s;
}

.press-row:nth-child(n+16) {
    animation-delay: 1.6s;
}

.press-row:hover {
    color: #888;
}

.press-row:hover .press-year,
.press-row:hover .press-outlet {
    color: #888;
}

.press-year {
    font-weight: 300;
    width: 80px;
    flex-shrink: 0;
    font-size: 1.1rem;
    color: #888;
    transition: color 0.3s ease;
}

.press-title {
    flex-grow: 1;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
    margin-right: 40px;
    line-height: 1.3;
}

.press-outlet {
    width: 250px;
    text-align: right;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: #666;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .container {
        padding-top: 100px;
    }

    .press-header h1 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .press-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0;
    }

    .press-year {
        margin-bottom: 5px;
        font-size: 0.9rem;
        color: #888;
    }

    .press-title {
        margin-right: 0;
        margin-bottom: 8px;
        font-size: 1.3rem;
    }

    .press-outlet {
        width: 100%;
        text-align: left;
        font-size: 0.9rem;
    }
}