.main-section {
    --header-slot-height: clamp(180px, 24vh, 230px);
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    background: transparent;
    padding: 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 20;
    min-height: var(--header-slot-height);
}

.main-content {
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100svh - var(--header-slot-height));
    margin-top: calc(var(--header-slot-height) * -0.5);
    padding: 0;
}

.clinics-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-top: 0;
    position: relative;
    width: 100%;
    min-height: auto;
    padding: 0;
}

.admin-hover-zone {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    height: 46px;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 40;
}

.admin-entry-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    height: 30px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: rgba(92, 59, 109, 0);
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(92, 59, 109, 0);
    transition: all 0.2s ease;
    user-select: none;
}

.admin-entry-link:hover,
.admin-entry-link:focus-visible {
    color: rgba(92, 59, 109, 0.95);
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(92, 59, 109, 0.3);
}
