/* Home page */
.home-dashboard-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.58fr);
    gap: 28px;
    align-items: stretch;
    margin-bottom: 28px;
}

.home-dashboard-copy {
    position: relative;
    overflow: hidden;
    padding: 38px 42px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(33, 33, 33, 0.82), rgba(33, 33, 33, 0.62)),
        radial-gradient(circle at 14% 10%, rgba(255, 201, 49, 0.18), transparent 30%),
        radial-gradient(circle at 100% 90%, rgba(255, 36, 36, 0.2), transparent 32%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-card);
}

.home-dashboard-kicker,
.home-section-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    margin: 0 0 18px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(104, 219, 224, 0.14);
    border: 1px solid rgba(104, 219, 224, 0.28);
    color: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
}

.home-dashboard-title {
    max-width: 640px;
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.home-dashboard-text {
    max-width: 600px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.55;
}

.home-dashboard-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
}

.home-dashboard-actions h2 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.home-primary-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home-primary-actions .button {
    width: 100%;
    min-height: 58px;
    margin: 0;
    font-size: 17px;
}

.home-info-grid {
    margin-bottom: 28px;
}

.home-info-card {
    margin-bottom: 0;
}

.home-info-text {
    max-width: 680px;
    margin-bottom: 20px;
    color: var(--color-muted);
}

.home-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.home-actions .button {
    margin: 0;
}

.home-links-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.home-links-row .button {
    margin: 0;
    width: auto;
    min-width: 0;
    text-align: center;
}

.home-links-groups {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home-section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.home-section-header h2 {
    margin: 0;
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.home-section-kicker {
    margin-bottom: 10px;
    color: var(--color-text);
}

.home-calendar-card,
.home-hall-card {
    margin-bottom: 28px;
}

/* Hall slider */
.hall-slider {
    position: relative;
    margin-top: 8px;
}

.hall-slider-track {
    position: relative;
}

.hall-slide {
    display: none;
    width: 100%;
    height: auto;
    border-radius: 24px;
}

.hall-slide.active {
    display: block;
}

.hall-slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(31, 31, 31, 0.65);
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hall-slider-button.prev {
    left: 12px;
}

.hall-slider-button.next {
    right: 12px;
}

.hall-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.hall-slider-dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: #c9c1b5;
    cursor: pointer;
    padding: 0;
}

.hall-slider-dot.active {
    background: #7a7367;
}

@media (max-width: 900px) {
    .home-dashboard-hero {
        gap: 18px;
        margin-bottom: 22px;
    }

    .home-dashboard-copy {
        padding: 24px 20px;
        border-radius: 26px;
    }

    .home-dashboard-title {
        font-size: clamp(28px, 9vw, 38px);
    }

    .home-dashboard-text {
        font-size: 16px;
    }

    .home-primary-actions .button {
        min-height: 52px;
    }

    .home-dashboard-hero {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: start;
        margin-bottom: 24px;
    }

    .home-dashboard-copy,
    .home-dashboard-actions {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .home-dashboard-copy {
        padding: 28px;
        border-radius: 28px;
    }

    .home-dashboard-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .home-actions {
        flex-direction: column;
    }

    .home-actions .button {
        width: 100%;
    }

    .home-links-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .home-links-groups {
        gap: 8px;
    }

    .home-links-row .button {
        width: 100%;
    }

    .hall-slider-button {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .hall-slider-button.prev {
        left: 8px;
    }

    .hall-slider-button.next {
        right: 8px;
    }

    .hall-slider-dot {
        width: 10px;
        height: 10px;
    }
}