:root {
    --color-bg: #0e0e0e;
    --color-surface: #161616;
    --color-border: #2a2a2a;
    --color-border-active: #555555;
    --color-text: #ffffff;
    --color-text-muted: #888888;
    --font-serif: "Playfair Display", serif;
    --font-sans: "Inter", sans-serif;
}

.press-page {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
}

.press-hero {
    padding: 120px 0 60px;
    border-bottom: 1px solid var(--color-border);
}

.press-overline {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-text-muted);
    margin-bottom: 15px;
}

.press-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 300;
    margin: 0 0 20px;
}

.press-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 550px;
    line-height: 1.6;
}

/* The Grid */
.press-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* No gap here because we will use borders on the items */
    border-left: 1px solid var(--color-border);
    border-top: 1px solid var(--color-border);
}

/* Each Press Item */
.press-item {
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    transition: background-color 0.4s ease;
}

.press-item__inner {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 40px; /* Spacious padding inside the frame */
}

/* The Image Frame (Matting effect) */
.press-item__frame {
    background: var(--color-surface);
    padding: 20px; /* This creates the "mat" around the photo */
    border: 1px solid var(--color-border);
    margin-bottom: 30px;
    transition: border-color 0.4s ease;
}

.press-item__image-container {
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.press-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%); /* Editorial professional look */
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

/* Content Details */
.press-item__meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.press-item__source {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.press-item__date {
    font-size: 12px;
    color: var(--color-text-muted);
}

.press-item__heading {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    line-height: 1.3;
    margin: 0 0 25px;
    font-weight: 400;
}

.press-item__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
}

.press-item__location {
    font-size: 11px;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.press-item__action {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Hover States */
.press-item:hover {
    background-color: #121212;
}

.press-item:hover .press-item__frame {
    border-color: var(--color-border-active);
}

.press-item:hover .press-item__image {
    transform: scale(1.05);
    filter: grayscale(0%); /* Brings color back on hover */
}

.press-item:hover .press-item__action {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Responsive */
@media (max-width: 991px) {
    .press-grid { grid-template-columns: 1fr; }
    .press-item__inner { padding: 30px; }
}

@media (max-width: 768px) {
    .press-hero { padding: 80px 0 40px; }
    .press-item__heading { font-size: 1.4rem; }
}