.theaters-public-page {
    gap: 28px;
}

.theaters-public-hero {
    align-items: stretch;
}

.theaters-how-card {
    align-content: start;
}

.theaters-mini-steps {
    display: grid;
    gap: 14px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: theater-steps;
}

.theaters-mini-steps li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    counter-increment: theater-steps;
}

.theaters-mini-steps li::before {
    content: counter(theater-steps);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    color: var(--primary-dark);
    background: var(--primary-soft);
    font-weight: 950;
}

.theaters-mini-steps strong,
.theaters-mini-steps span {
    grid-column: 2;
}

.theaters-mini-steps span {
    color: var(--muted);
    font-size: 0.94rem;
}

.theaters-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.theaters-section-heading .small {
    max-width: 22rem;
    margin: 0;
    text-align: right;
}

.theaters-now-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.theaters-now-card {
    min-width: 0;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: linear-gradient(145deg, #ffffff, #f7faff);
    box-shadow: 0 10px 26px rgba(11, 27, 63, 0.06);
}

.theaters-now-card h3 {
    margin-bottom: 7px;
    font-size: 1.12rem;
}

.theaters-now-card p:last-child {
    margin-bottom: 0;
}

.theaters-movie-meta {
    margin-bottom: 10px;
    color: var(--primary-dark);
    font-size: 0.86rem;
    font-weight: 850;
}

.theaters-list-fallback {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface-soft);
}

.theaters-list-fallback p:last-child {
    margin-bottom: 0;
}

.theaters-inline-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    margin-top: 22px;
    padding: 18px 20px;
    border: 1px solid rgba(21, 92, 255, 0.16);
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff, #edf3ff);
}

.theaters-inline-cta p {
    margin: 4px 0 0;
    color: var(--muted);
}

.theaters-inline-cta .use-case-primary-cta {
    white-space: nowrap;
}

@media (max-width: 820px) {
    .theaters-now-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .theaters-section-heading,
    .theaters-inline-cta {
        display: grid;
        align-items: start;
    }

    .theaters-section-heading .small {
        max-width: none;
        text-align: left;
    }

    .theaters-now-grid {
        grid-template-columns: 1fr;
    }

    .theaters-inline-cta .use-case-primary-cta {
        width: 100%;
        white-space: normal;
        text-align: center;
    }
}
