* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #0097b2;
    color: #132430;
}

.poster {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 4vw, 48px);
}

.poster-card {
    width: min(780px, 100%);
    background: #fefcf7;
    border: 2px solid rgba(7, 26, 39, 0.08);
    border-radius: 22px;
    padding: clamp(24px, 3.2vw, 42px);
    overflow: visible;
    box-shadow:
        0 26px 48px rgba(2, 14, 24, 0.34),
        0 2px 0 rgba(255, 255, 255, 0.7) inset;
}

.meta {
    margin: 0 0 16px;
    font-weight: 700;
    font-size: 0.77rem;
    letter-spacing: 0.08em;
    color: #3f5561;
}

.hero {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: clamp(14px, 2vw, 24px);
    align-items: start;
}

.hero-copy {
    min-width: 0;
}

h1 {
    margin: 0;
    font-size: clamp(1.9rem, 5.5vw, 3.2rem);
    line-height: 1.08;
    font-family: "Crimson Text", Georgia, serif;
    font-weight: 700;
    color: #0c2432;
    text-wrap: balance;
}

.highlights {
    margin: 20px 0 26px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
}

.highlights li {
    font-size: clamp(0.97rem, 2.2vw, 1.08rem);
    line-height: 1.45;
    color: #1f3440;
    font-weight: 500;
}

.highlights li::before {
    content: "•";
    color: #e79a00;
    font-weight: 800;
    margin-right: 10px;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 10px;
    border: 1.5px solid #9db6c2;
    padding: 14px 22px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #1e4258;
    background: #f4f8fa;
    box-shadow: none;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.cta:hover {
    background: #eaf2f6;
    border-color: #7f9ead;
    color: #17374b;
}

.calendar-line {
    margin: 12px 0 0;
}

.calendar-line a {
    color: #245f8d;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hero-image-wrap {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.hero-image {
    width: min(380px, 130%);
    height: auto;
    display: block;
    object-fit: contain;
    margin-right: clamp(-88px, -7vw, -44px);
    margin-top: clamp(-18px, -1.8vw, -6px);
    filter: drop-shadow(0 10px 20px rgba(5, 20, 31, 0.28));
}

.details {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(12, 36, 50, 0.12);
}

.details h2 {
    margin: 0 0 8px;
    font-size: 1.04rem;
    font-weight: 700;
    color: #102d3d;
}

.details p {
    margin: 0;
    color: #334a57;
    font-size: 0.96rem;
    line-height: 1.55;
}

.details p + p {
    margin-top: 8px;
}

.footer {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(12, 36, 50, 0.12);
}

.footer p {
    margin: 0;
    color: #4b626e;
    font-size: 0.86rem;
    line-height: 1.45;
}

.footer p + p {
    margin-top: 5px;
}

.footer a {
    color: #245f8d;
    text-decoration: none;
    border-bottom: 1px solid rgba(36, 95, 141, 0.35);
}

.logos {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.logos img {
    display: block;
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

.logos img:first-child {
    max-height: 56px;
}

@media (max-width: 560px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-image {
        width: min(280px, 78vw);
        margin-right: 0;
        margin-top: 6px;
    }

    .poster-card {
        border-radius: 16px;
    }

    .meta {
        font-size: 0.72rem;
    }
}
