/* Press Archive Styles */
body {
    background-color: #fdfdfd;
    font-family: 'Courier New', Courier, monospace;
    color: #333;
    margin: 0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 20px 60px;
    /* Top padding clears fixed navbar */
}

.press-header h1 {
    font-size: 3rem;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 60px;
    border-bottom: 2px solid #333;
    padding-bottom: 20px;
}

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

.press-row {
    display: flex;
    align-items: baseline;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s ease, padding-left 0.2s ease;
}

.press-row:hover {
    background-color: #f5f5f5;
    padding-left: 10px;
}

.press-year {
    font-weight: bold;
    width: 80px;
    flex-shrink: 0;
    font-size: 1rem;
    color: #666;
}

.press-title {
    flex-grow: 1;
    font-size: 1.1rem;
    font-weight: 500;
    margin-right: 20px;
    line-height: 1.4;
}

.press-outlet {
    width: 200px;
    text-align: right;
    font-style: italic;
    font-size: 0.95rem;
    color: #555;
    flex-shrink: 0;
}

/* 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: 1rem;
    }

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