/**
 * ADP Car Market Hub – Location & Opening Hours frontend boxes.
 *
 * Classes:
 *   .as24ci-location-hours-wrapper  – flex wrapper for both boxes
 *   .as24ci-location-box            – address / contact box
 *   .as24ci-hours-box               – opening-hours box
 *   .as24ci-btn                     – shared button style (re-used from plugin)
 */

/* ── Wrapper ────────────────────────────────────────────────────────── */
.as24ci-location-hours-wrapper {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ── Shared box styles ──────────────────────────────────────────────── */
.as24ci-location-box,
.as24ci-hours-box {
    flex: 1 1 280px;
    background: #ffffff;
    border: var(--as24ci-border, 1px solid #dde3ed);
    border-radius: var(--as24ci-border-radius, var(--as24ci-radius, 8px));
    padding: 1.5rem;
    text-align: center;
    box-sizing: border-box;
    box-shadow: var(--as24ci-shadow-card-soft, 0 10px 30px rgba(15, 23, 42, 0.06));
    transition: box-shadow 0.2s ease;
}

.as24ci-location-box:hover,
.as24ci-hours-box:hover {
    box-shadow: var(--as24ci-shadow-card, 0 10px 30px rgba(15, 23, 42, 0.12));
}

/* ── Icon ────────────────────────────────────────────────────────────── */
.as24ci-location-box__icon,
.as24ci-hours-box__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--as24ci-color-primary, #0073aa);
}

.as24ci-location-box__icon svg,
.as24ci-hours-box__icon svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
}

/* ── Titles ──────────────────────────────────────────────────────────── */
.as24ci-location-box__title,
.as24ci-hours-box__title {
    font-size: var(--as24ci-font-size-title, 1.1rem);
    font-weight: 700;
    margin: 0 0 0.75rem;
    text-align: center;
}

.as24ci-location-box__title a {
    color: inherit;
    text-decoration: none;
}

.as24ci-location-box__title a:hover {
    text-decoration: underline;
}

/* ── Location box details ───────────────────────────────────────────── */
.as24ci-location-box__details {
    text-align: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--as24ci-border-color, #eef0f5);
}

.as24ci-location-box__phone {
    font-size: var(--as24ci-font-size-title, 1.1rem);
    margin: 0.5rem 0;
}

.as24ci-location-box__address {
    font-size: var(--as24ci-font-size-text, 1rem);
    color: #555;
    line-height: 1.5;
    margin: 0.5rem 0 1rem;
}

/* ── CTA button ─────────────────────────────────────────────────────── */
.as24ci-location-box__cta.as24ci-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    background: var(--as24ci-primary, #0073aa);
    color: #ffffff;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.as24ci-location-box__cta.as24ci-btn:hover {
    background: var(--as24ci-secondary, #005582);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* ── Hours box columns ──────────────────────────────────────────────── */
.as24ci-hours-box__columns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: left;
}

.as24ci-hours-box__col {
    flex: 1 1 180px;
}

.as24ci-hours-box__col h3 {
    font-size: var(--as24ci-font-size-text, 0.9rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0 0 0.5rem;
    color: var(--as24ci-color-primary, #0073aa);
}

.as24ci-hours-box__col p {
    font-size: var(--as24ci-font-size-text, 0.875rem);
    line-height: 1.5;
    margin: 0 0 0.5rem;
    color: #333;
}

/* ── Mobile ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .as24ci-location-hours-wrapper {
        flex-direction: column;
    }

    .as24ci-location-box,
    .as24ci-hours-box {
        flex: 1 1 100%;
    }

    .as24ci-hours-box__columns {
        flex-direction: column;
    }
}