.hc-about-location {
    position: relative;
    color: #1f1911;
    font-family: Onest, Arial, sans-serif;
}

.hc-about-location__copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 70px 12px 32px;
}

.hc-about-location__eyebrow,
.hc-about-location__title {
    margin: 0;
}

.hc-about-location__eyebrow {
    color: #b0a89d;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25rem;
}

.hc-about-location__title {
    width: 90%;
    color: #1f1911;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.5rem;
}

.hc-about-location__map {
    position: relative;
    width: 100%;
    height: 514px;
    overflow: hidden;
    background-image: url("/local/templates/horus/assets/images/location.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hc-about-location__logo {
    position: absolute;
    bottom: 140px;
    left: 130px;
    display: flex;
    width: 106px;
    height: 106px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
}

.hc-about-location__logo img {
    width: 66px;
}

.hc-about-location__marker {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 48px;
    height: 48px;
}

.hc-about-location__marker i {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--marker-bg);
    color: #fff;
    font-size: 22px;
    line-height: 1;
}

.hc-about-location__pulse {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: var(--marker-pulse);
    animation: hc-about-location-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes hc-about-location-ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@media (min-width: 768px) {
    .hc-about-location {
        display: flex;
        align-items: center;
        gap: 40px;
        padding: 80px 0;
    }

    .hc-about-location__copy {
        width: fit-content;
        padding: 80px 0 32px;
    }

    .hc-about-location__title {
        width: 100%;
        font-size: 3rem;
        line-height: 3.5rem;
    }

    .hc-about-location__map {
        width: 80%;
        background-image: url("/local/templates/horus/assets/images/locationDesktop.png");
    }

    .hc-about-location__logo {
        bottom: 80px;
        left: 210px;
        border: 2px solid rgba(255, 85, 0, 0.2);
        background: rgba(255, 85, 0, 0.1);
    }

    .hc-about-location__marker {
        left: var(--dx);
        top: var(--dy);
    }
}
