.current-location-section {
    padding: 85px 0;
    background: #fffaf2;
}

.current-location-card {
    position: relative;
    padding: 42px 48px;
    overflow: hidden;
    border: 1px solid #eadcc5;
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fff8eb 100%
        );
    box-shadow:
        0 20px 55px rgba(72, 47, 19, 0.09);
}

.current-location-card::after {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(203, 151, 67, 0.08);
}

.current-location-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

.current-location-icon {
    display: inline-flex;
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #f7ead4;
    color: #b47a26;
    font-size: 1.75rem;
}

.current-location-label {
    margin-bottom: 8px;
    color: #b47a26;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.current-location-title {
    margin-bottom: 12px;
    color: #352411;
    font-size: clamp(2rem, 3vw, 3.1rem);
    font-weight: 700;
}

.current-location-venue {
    margin-bottom: 12px;
    color: #58442c;
    font-size: 1.08rem;
    font-weight: 600;
}

.current-location-note {
    max-width: 720px;
    margin-bottom: 0;
    color: #786854;
    line-height: 1.75;
}

.current-location-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
}

.current-location-date {
    text-align: right;
}

.current-location-date small {
    display: block;
    color: #8b7a65;
    margin-bottom: 4px;
}

.current-location-date strong {
    color: #42301b;
}

.current-location-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    background: #b47a26;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.current-location-button:hover {
    background: #99661f;
    color: #ffffff;
    transform: translateY(-2px);
}

.current-location-button i {
    transition: transform 0.2s ease;
}

.current-location-button:hover i {
    transform: translateX(4px);
}

@media (max-width: 991.98px) {
    .current-location-actions {
        align-items: flex-start;
    }

    .current-location-date {
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .current-location-section {
        padding: 65px 0;
    }

    .current-location-card {
        padding: 30px 24px;
        border-radius: 22px;
    }

    .current-location-content {
        flex-direction: column;
    }

    .current-location-icon {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
    }
}

.current-location-map {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid #eadcc5;
    box-shadow: 0 15px 35px rgba(72, 47, 19, 0.10);
}

.current-location-map iframe {
    display: block;
    width: 100%;
    min-height: 380px;
}