/* Budha ADT — Support Card.
 *
 * Drop-in customer-support block with a title, intro paragraph, and a
 * list of label/value rows (Customer Care, Wholesale, etc).
 * Designed to sit alongside a Contact form — uses the theme's font
 * stack and respects Glozin CSS variables where they exist, with safe
 * fallbacks so the card looks good even outside Glozin.
 */

.budha-adt-support-card {
    color: var(--gz-color-dark, #111);
    font-family: inherit;
    max-width: 460px;
}

.budha-adt-support-card__title {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: var(--gz-heading-font-weight, 700);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0 0 14px;
    color: inherit;
}

.budha-adt-support-card__intro {
    font-size: 16px;
    line-height: 1.55;
    margin: 0 0 24px;
    color: var(--gz-color-secondary-text, rgba(17,17,17,0.72));
    max-width: 38ch;
}

.budha-adt-support-card__rows {
    list-style: none;
    margin: 0;
    padding: 0;
}

.budha-adt-support-card__row {
    margin: 0 0 16px;
    padding: 0;
    display: block;
}

.budha-adt-support-card__row:last-child {
    margin-bottom: 0;
}

.budha-adt-support-card__label {
    display: block;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 2px;
    color: inherit;
}

.budha-adt-support-card__value {
    font-size: 16px;
    line-height: 1.4;
    color: inherit;
    text-decoration: none;
    display: inline-block;
    border-bottom: 1px solid transparent;
    transition: border-color .15s ease, color .15s ease;
}

a.budha-adt-support-card__value:hover,
a.budha-adt-support-card__value:focus {
    border-bottom-color: currentColor;
    color: var(--budha-accent, var(--gz-color-primary, #7cc04a));
}

/* The phone-link variant gets a tiny visual hint that it's tappable
 * on mobile — a subtle slate-darker weight, no underline by default,
 * underline on hover/focus only. */
.budha-adt-support-card__value--phone {
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}
