.dance-hero {
    margin: 0 calc(50% - 50vw);
    padding: 54px max(24px, calc((100vw - 1180px) / 2));
    background:
        linear-gradient(rgba(17, 55, 39, 0.78), rgba(17, 55, 39, 0.84)),
        radial-gradient(circle at top right, #4c7b64, #183e2d);
    color: #fff;
}

.dance-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

.dance-breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

.dance-breadcrumbs a:hover,
.dance-breadcrumbs a:focus-visible {
    color: #fff;
    text-decoration: underline;
}

.dance-hero h1 {
    margin: 0;
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.dance-hero p {
    max-width: 720px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
}

.dance-section {
    padding-top: 52px;
    padding-bottom: 72px;
}

.dance-intro {
    max-width: 760px;
    margin-bottom: 28px;
}

.dance-intro h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    line-height: 1.15;
}

.dance-intro p {
    margin: 10px 0 0;
    color: #61717a;
}

.dance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.dance-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #d6e1e7;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(22, 54, 70, 0.1);
}

.dance-logo {
    display: grid;
    min-height: 190px;
    place-items: center;
    padding: 28px;
    border-bottom: 1px solid #d6e1e7;
    background: #fff;
}

.dance-logo img {
    display: block;
    width: 100%;
    max-width: 260px;
    max-height: 140px;
    object-fit: contain;
}

.dance-logo-placeholder {
    display: grid;
    width: 100%;
    max-width: 240px;
    min-height: 110px;
    place-items: center;
    padding: 18px;
    border: 2px dashed #d6e1e7;
    border-radius: 14px;
    color: #61717a;
    font-weight: 750;
    text-align: center;
}

.dance-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.dance-card h2 {
    margin: 0;
    color: #12384a;
    font-size: 1.45rem;
    line-height: 1.2;
}

.dance-card p {
    margin: 10px 0 0;
    color: #61717a;
}

.dance-card-location {
    margin-top: 14px;
    color: #18313c;
    font-size: 0.95rem;
    font-weight: 700;
}

.dance-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 22px;
}

.dance-actions .button {
    min-height: 42px;
    padding: 9px 14px;
    font-size: 0.92rem;
}

.dance-actions .button.secondary {
    border: 1px solid #d6e1e7;
    background: #fff;
    color: #12384a;
}

.dance-actions .button.secondary:hover,
.dance-actions .button.secondary:focus-visible {
    background: #edf4f6;
}

@media (max-width: 620px) {
    .dance-hero {
        padding-top: 46px;
        padding-bottom: 46px;
    }

    .dance-section {
        padding-top: 42px;
        padding-bottom: 58px;
    }
}
