/* -------------------------------------------------------------------
   Aradel Investor Contacts Section
   Scope: .ar-investor-contacts
   Reference: Aradel Contact Us cards (aradel-contact.css)
   ------------------------------------------------------------------- */

/* ════════════════════════════════════════════════════════════════════
   SECTION WRAPPER
   ════════════════════════════════════════════════════════════════════ */

.ar-investor-contacts {
    padding-top: 64px;
    padding-bottom: 96px;
}

.ar-investor-contacts__inner {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 112px;
    padding-right: 112px;
    box-sizing: border-box;
    width: 100%;
}

/* ════════════════════════════════════════════════════════════════════
   GRID
   ════════════════════════════════════════════════════════════════════ */

.ar-investor-contacts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Prevent grid items overflowing their track */
.ar-investor-contacts__grid > * {
    min-width: 0;
}

/* ════════════════════════════════════════════════════════════════════
   CARD
   ════════════════════════════════════════════════════════════════════ */

.ar-ic-card {
    background: #FBFBFB;
    border-radius: 20px;
    padding: 32px 36px;
}

/* ── Group title (coloured label above divider) ─────────────────────── */

.ar-ic-card__group-title {
    color: #C1000F;
    font-family: "Nunito Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── Divider ────────────────────────────────────────────────────────── */

.ar-ic-card__divider {
    border: none;
    border-top: 1px solid #CDCDCD;
    margin: 0 0 20px;
}

/* ── Organisation name ──────────────────────────────────────────────── */

.ar-ic-card__org-name {
    color: #000;
    font-family: "Nunito Sans", sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0;
    margin: 0 0 6px;
}

/* ── Role / title ───────────────────────────────────────────────────── */

.ar-ic-card__role {
    color: rgba(0, 16, 20, 0.55);
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.01em;
    margin: 0 0 20px;
}

/* ── Details list ───────────────────────────────────────────────────── */

.ar-ic-card__details {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Person name row — no icon, slightly muted */
.ar-ic__detail-row--person {
    color: #000;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
}

/* Standard detail row: icon + content */
.ar-ic__detail-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ar-ic__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #C1000F;
    margin-top: 3px;
}

.ar-ic__icon-svg {
    width: 16px;
    height: 16px;
    display: block;
}

/* Links */
.ar-ic__link {
    color: #000;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    text-decoration: none;
    transition: color 0.2s ease;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

.ar-ic__link:hover {
    color: #C1000F;
    text-decoration: none;
}

/* Address text */
.ar-ic__address-text {
    color: #000;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
}

/* ── Notes ──────────────────────────────────────────────────────────── */

.ar-ic-card__notes {
    margin: 20px 0 0;
    color: rgba(0, 16, 20, 0.55);
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024px)
   ════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {

    .ar-investor-contacts__inner {
        padding-left: 64px;
        padding-right: 64px;
    }

    .ar-investor-contacts__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .ar-ic-card {
        padding: 28px;
    }
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 767px)
   ════════════════════════════════════════════════════════════════════ */

@media (max-width: 767px) {

    .ar-investor-contacts {
        padding-top: 40px;
        padding-bottom: 48px;
    }

    .ar-investor-contacts__inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .ar-investor-contacts__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ar-ic-card {
        padding: 24px;
    }

    .ar-ic-card__org-name {
        font-size: 20px;
        line-height: 26px;
    }
}
