/* Press Page Styles */

/* Press Hero / Header Section */
.press-hero {
    padding: 80px 0 60px;
    text-align: center;
}

.press-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.press-hero h1 {
    font-size: 60px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.1;
}

.press-hero h1 span {
    color: var(--primary-color);
}

.press-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: var(--light-grey);
    line-height: 1.5;
}

/* Press Grid Section */
.press-grid-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Press Card */
.press-card {
    background-color: var(--grey-bg);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    min-height: 212px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.press-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Card image */
.press-card-image {
    width: 100%;
    border-radius: 8px;
    display: block;
    margin-bottom: 24px;
    object-fit: cover;
}

/* Card Row 1: source label + date */
.press-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.press-card-source {
    background-color: rgba(247, 145, 79, 0.05);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    padding: 4px 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}

.press-card-date {
    font-size: 14px;
    font-weight: 400;
    color: var(--light-grey);
    white-space: nowrap;
}

/* Card Row 2: headline */
.press-card-headline {
    font-family: 'Urbanist', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-color);
    padding: 0;
    flex: 1;
    margin-bottom: 16px;
}

/* Card Row 3: CTA */
.press-card-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    transition: text-decoration 0.2s ease;
}

.press-card-cta:hover {
    text-decoration: underline;
}

.press-card-cta img {
    width: 16px;
    height: 16px;
    opacity: 0.8;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.press-card-cta:hover img {
    opacity: 1;
    transform: translate(2px, -2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .press-grid-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .press-hero {
        padding: 60px 0 60px;
    }

    .press-hero h1 {
        font-size: 40px;
    }

    .press-subtitle {
        font-size: 18px;
    }

    .press-grid-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .press-card-headline {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .press-grid-content {
        grid-template-columns: 1fr;
    }

    .press-hero {
        padding: 48px 0 40px;
    }
}
