.media-kit-page {
    display: grid;
    gap: 2rem;
    padding: 2rem 0 3rem;
}

.media-kit-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f3ecff 100%);
    border-radius: 1.5rem;
    padding: 2.5rem;
    display: grid;
    gap: 1.5rem;
    align-items: center;
    color: #251a4d;
    box-shadow: 0 28px 65px rgba(15, 23, 42, 0.28);
}

.media-kit-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: #1a1142;
    margin: 0;
}

.media-kit-hero p {
    font-size: 1.1rem;
    color: #3c2a6c;
    margin: 0;
    line-height: 1.6;
}

.media-kit-hero a {
    justify-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    background: #2d1b57;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(45, 27, 87, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.media-kit-hero a:hover,
.media-kit-hero a:focus {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(45, 27, 87, 0.3);
}

.media-kit-highlight {
    display: grid;
    gap: 2rem;
}

.media-kit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.media-kit-card {
    background-color: #ffffff;
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: 0 16px 35px rgba(45, 27, 87, 0.08);
    display: grid;
    gap: 1rem;
}

.media-kit-card h2 {
    font-size: 1.5rem;
    color: #2d1b57;
    margin: 0;
}

.media-kit-stats {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.media-kit-stat {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    color: #50436b;
}

.media-kit-stat dt {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(80, 67, 107, 0.75);
}

.media-kit-stat dd {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d1b57;
}

.media-kit-highlight-detail {
    font-size: 0.9rem;
    font-weight: 500;
    color: #8a6ac9;
}

.media-kit-cta {
    background-color: #2d1b57;
    color: #ffffff;
    border-radius: 1.25rem;
    padding: 2rem;
    display: grid;
    gap: 1rem;
    text-align: center;
}

.media-kit-cta h2 {
    font-size: 1.8rem;
    margin: 0;
}

.media-kit-cta p {
    margin: 0;
    font-size: 1.05rem;
}

.media-kit-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.media-kit-cta-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    color: #2d1b57;
    background-color: #ffffff;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.media-kit-cta-button:hover,
.media-kit-cta-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

@media (max-width: 720px) {
    .media-kit-hero {
        padding: 2rem;
    }

    .media-kit-card {
        padding: 1.5rem;
    }
}
