/* =============================================================
   Aradel — Registrar Information Strip
   Shortcode: [ar_registrar_info]
   Scope: .ar-reg-strip
   ============================================================= */

/* ── Strip wrapper — full-bleed red band ── */
.ar-reg-strip {
    background-color: #C1000F;
    width: 100%;
}

.ar-reg-strip__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 96px 112px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 120px;
    align-items: start;
}

/* ── Left column — heading ── */
.ar-reg-strip__heading-col {
    display: flex;
    align-items: flex-start;
    padding-top: 4px; /* optical alignment with first row label */
}

.ar-reg-strip__heading {
    color: #fff;
    font-family: "Nunito Sans", sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 64px;
    letter-spacing: 0.014px;
    margin: 0;
    padding: 0;
}

/* ── Right column — detail rows ── */
.ar-reg-strip__details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ── Individual row — icon + value single line ── */
.ar-reg-strip__row {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ── Icon ── */
.ar-reg__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #FBFBFB;
}

/* ── Row content — value only, no label ── */
.ar-reg-strip__row-content {
    min-width: 0;
}

/* ── Value ── */
.ar-reg-strip__value {
    color: #FBFBFB;
    font-family: "Nunito Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ar-reg-strip__value--address {
    max-width: 440px;
}

/* ── Links ── */
.ar-reg-strip__link {
    color: #FBFBFB;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.ar-reg-strip__link:hover,
.ar-reg-strip__link:focus-visible {
    opacity: 0.75;
    text-decoration: underline;
    text-underline-offset: 3px;
    outline: none;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .ar-reg-strip__link {
        transition: none;
    }
}

/* ── Tablet ≤ 1024px ── */
@media (max-width: 1024px) {
    .ar-reg-strip__inner {
        padding: 72px 64px;
        grid-template-columns: 1fr 1fr;
        column-gap: 120px;
    }

    .ar-reg-strip__heading {
        font-size: 40px;
        line-height: 54px;
    }
}

/* ── Tablet narrow / large mobile ≤ 768px ── */
@media (max-width: 768px) {
    .ar-reg-strip__inner {
        grid-template-columns: 1fr;
        row-gap: 40px;
        padding: 64px 64px;
    }

    .ar-reg-strip__heading-col {
        padding-top: 0;
    }

    .ar-reg-strip__heading {
        font-size: 36px;
        line-height: 48px;
    }
}

/* ── Mobile ≤ 640px ── */
@media (max-width: 640px) {
    .ar-reg-strip__inner {
        padding: 48px 24px;
        row-gap: 32px;
    }

    .ar-reg-strip__heading {
        font-size: 24px;
        line-height: 34px;
    }

    .ar-reg-strip__details {
        gap: 24px;
    }

    .ar-reg-strip__value {
        font-size: 16px;
        line-height: 24px;
    }

    .ar-reg-strip__value--address {
        max-width: 100%;
    }
}
