.panel-wrap--hero .panel-center {
    padding-top: 32px;
}

.panel-wrap--hero .panel-content {
    width: 100%;
}

.hero-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 999px;
    padding: 10px 24px;
    font-style: italic;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.70);
    white-space: nowrap;
}

.hero-location-ping {
    position: relative;
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

.hero-location-ping::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #22c55e;
    animation: heroPing 2s ease-out infinite;
    opacity: 0;
}

.hero-location-ping::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #22c55e;
}

@keyframes heroPing {
    0%   { transform: scale(1);   opacity: 0.5; }
    100% { transform: scale(2.4); opacity: 0; }
}

br.mobile-br {
    display: none;
}

.hero-layout h1 {
    font-family: 'Lexend', system-ui, sans-serif;
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    margin: 0;
}

.hero-layout h2,
.panel-wrap--hero .hero-layout h2 {
    font-family: 'Instrument Serif', Georgia, serif !important;
    font-style: italic !important;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.65) !important;
    line-height: 1.15;
    margin: 0;
}

.hero-layout .hero-summary {
    font-size: 16px;
    color: #aaa;
    max-width: 540px;
    line-height: 1.7;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.hero-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.hero-btn--primary {
    background: #2563eb;
    color: #fff;
    border: 1.5px solid #2563eb;
}

.hero-btn--primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

.hero-btn--secondary {
    background: transparent;
    color: #fff;
    border: 1.5px solid #fff;
}

.hero-btn--secondary:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 480px) {
    .panel-wrap--hero .panel-center {
        padding-top: 76px;
    }

    br.mobile-br {
        display: block;
    }

    .hero-location {
        font-size: 12px;
        padding: 9px 20px;
        gap: 8px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}
