/* ============================================================
   RLGeoDirectory v2 — Full front-end styles
   Uses --rl-* design tokens from the site's main.css
   ============================================================ */

/* ── Archive page wrapper ────────────────────────────────────── */
.rlgd-archive { padding-bottom: 56px; }

/* ── Editorial bottom: clear the sidebar before La Semana ───── */
.rl-archive-editorial-bottom { clear: both; padding-top: 48px; }

.rlgd-archive__header {
    background: #fff;
    border-bottom: 1px solid var(--rl-border);
    padding: 22px 0 18px;
    margin-bottom: 24px;
}

.rlgd-archive__title {
    font-family: var(--rl-font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    color: var(--rl-black);
    margin: 0 0 14px;
    font-weight: 700;
    padding-left: 12px;
    border-left: 3px solid var(--rl-gold);
}

.rlgd-archive__desc {
    color: var(--rl-text-secondary);
    font-size: .9rem;
    margin: -8px 0 14px;
}

/* ── Search form ─────────────────────────────────────────────── */
.rlgd-search-form__inner {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.rlgd-search-form__input {
    flex: 1;
    min-width: 180px;
    height: 40px;
    padding: 0 14px;
    border: 1px solid var(--rl-border);
    border-radius: var(--rl-radius);
    background: var(--rl-bg);
    color: var(--rl-text);
    font-family: var(--rl-font);
    font-size: .88rem;
    transition: border-color .15s, box-shadow .15s;
}
.rlgd-search-form__input::placeholder { color: var(--rl-text-muted); }
.rlgd-search-form__input:focus {
    outline: none;
    border-color: var(--rl-purple);
    box-shadow: 0 0 0 3px rgba(76,64,132,.08);
}

.rlgd-search-form__select {
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--rl-border);
    border-radius: var(--rl-radius);
    background: var(--rl-bg);
    color: var(--rl-text-secondary);
    font-family: var(--rl-font);
    font-size: .85rem;
    cursor: pointer;
    min-width: 140px;
}
.rlgd-search-form__select:focus { outline: none; border-color: var(--rl-purple); }

.rlgd-search-form__btn {
    height: 40px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--rl-purple);
    color: #fff;
    border: none;
    border-radius: var(--rl-radius);
    font-family: var(--rl-font);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s;
    flex-shrink: 0;
}
.rlgd-search-form__btn:hover { background: var(--rl-purple-dark); }


/* ── Category pills ──────────────────────────────────────────── */
.rlgd-cat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 12px 0;
    border-bottom: 1px solid var(--rl-border-light);
    margin-bottom: 18px;
}

.rlgd-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border: 1px solid var(--rl-border-light);
    border-radius: 3px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .02em;
    color: var(--rl-text-secondary);
    background: var(--rl-bg);
    text-decoration: none;
    transition: all .12s;
}
.rlgd-cat-pill:hover { border-color: var(--rl-purple); color: var(--rl-purple); background: var(--rl-purple-light); }
.rlgd-cat-pill.is-active { background: var(--rl-purple); border-color: var(--rl-purple); color: #fff; }
.rlgd-cat-pill__count { font-weight: 400; opacity: .6; font-size: .72em; }


/* ── Toolbar ─────────────────────────────────────────────────── */
.rlgd-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}
.rlgd-toolbar__count { font-size: .85rem; color: var(--rl-text-muted); }

.rlgd-view-toggle { display: flex; gap: 4px; }
.rlgd-view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--rl-border);
    border-radius: var(--rl-radius);
    background: var(--rl-bg);
    color: var(--rl-text-muted);
    cursor: pointer;
    transition: all .15s;
}
.rlgd-view-btn:hover,
.rlgd-view-btn.is-active { background: var(--rl-purple); border-color: var(--rl-purple); color: #fff; }


/* ── Map toggle ──────────────────────────────────────────────── */
.rlgd-map-toggle-wrap { margin: 0 0 12px; }
.rlgd-map-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid var(--rl-border);
    border-radius: var(--rl-radius);
    background: var(--rl-bg);
    color: var(--rl-text-secondary);
    font-size: .82rem;
    cursor: pointer;
    transition: all .15s;
}
.rlgd-map-toggle:hover,
.rlgd-map-toggle[aria-expanded="true"] { background: var(--rl-purple); border-color: var(--rl-purple); color: #fff; }

.rlgd-archive-map-wrap { margin-bottom: 20px; }
.rlgd-archive-map {
    height: 380px;
    border-radius: var(--rl-radius);
    border: 1px solid var(--rl-border);
    overflow: hidden;
}


/* ── Places grid ─────────────────────────────────────────────── */
.rlgd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.rlgd-grid.is-list { grid-template-columns: 1fr; }
.rlgd-grid.is-list .rlgd-card { flex-direction: row; max-height: 140px; }
.rlgd-grid.is-list .rlgd-card__img-wrap { width: 180px; min-width: 180px; aspect-ratio: auto; }
.rlgd-grid.is-list .rlgd-card__body { padding: 12px 14px; }


/* ── Place card ──────────────────────────────────────────────── */
.rlgd-card {
    background: var(--rl-bg);
    border: none;
    border-radius: var(--rl-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 6px rgba(0,0,0,.07), 0 0 0 1px rgba(0,0,0,.04);
    transition: box-shadow .2s, transform .2s;
}
.rlgd-card:hover {
    box-shadow: 0 8px 28px rgba(76,64,132,.14), 0 0 0 1px rgba(76,64,132,.08);
    transform: translateY(-2px);
}

.rlgd-card__img-wrap {
    position: relative;
    overflow: hidden;
    background: var(--rl-bg-alt);
    aspect-ratio: 16/10;
    flex-shrink: 0;
}
.rlgd-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.rlgd-card:hover .rlgd-card__img { transform: scale(1.04); }

.rlgd-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rl-border);
    background: linear-gradient(135deg, var(--rl-bg-alt) 0%, var(--rl-purple-light) 100%);
}

.rlgd-card__cat {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(76,64,132,.88);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 10px;
}

.rlgd-card__badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--rl-gold);
    color: #fff;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 2px;
}

.rlgd-card__body {
    padding: 12px 14px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 2px solid transparent;
    transition: border-color .2s;
}
.rlgd-card:hover .rlgd-card__body { border-color: var(--rl-gold); }

.rlgd-card__title {
    font-family: var(--rl-font-display);
    font-size: .95rem;
    line-height: 1.3;
    margin: 0 0 2px;
    font-weight: 700;
}
.rlgd-card__title a { color: var(--rl-black); text-decoration: none; }
.rlgd-card__title a:hover { color: var(--rl-purple); }

.rlgd-card__location,
.rlgd-card__phone,
.rlgd-card__web {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .76rem;
    color: var(--rl-text-muted);
    margin: 0;
}
.rlgd-card__location svg,
.rlgd-card__phone svg,
.rlgd-card__web svg { flex-shrink: 0; color: var(--rl-purple); opacity: .7; }
.rlgd-card__phone a,
.rlgd-card__web a { color: var(--rl-text-muted); text-decoration: none; }
.rlgd-card__phone a:hover,
.rlgd-card__web a:hover { color: var(--rl-purple); }


/* ── Events grid ─────────────────────────────────────────────── */
.rlgd-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.rlgd-event-card {
    background: var(--rl-bg);
    border: none;
    border-radius: var(--rl-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 6px rgba(0,0,0,.07), 0 0 0 1px rgba(0,0,0,.04);
    transition: box-shadow .2s, transform .2s;
}
.rlgd-event-card:hover {
    box-shadow: 0 8px 28px rgba(76,64,132,.14), 0 0 0 1px rgba(76,64,132,.08);
    transform: translateY(-2px);
}

.rlgd-event-card__img-wrap {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--rl-purple-dark);
    overflow: hidden;
    flex-shrink: 0;
}
.rlgd-event-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.rlgd-event-card:hover .rlgd-event-card__img { transform: scale(1.04); }

.rlgd-event-card__body {
    padding: 12px 14px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-top: 2px solid transparent;
    transition: border-color .2s;
}
.rlgd-event-card:hover .rlgd-event-card__body { border-color: var(--rl-gold); }

.rlgd-event-card__title { font-family: var(--rl-font-display); font-size: .95rem; font-weight: 700; line-height: 1.3; margin: 0; }
.rlgd-event-card__title a { color: var(--rl-black); text-decoration: none; }
.rlgd-event-card__title a:hover { color: var(--rl-purple); }

.rlgd-event-card__date,
.rlgd-event-card__location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .76rem;
    color: var(--rl-text-muted);
    margin: 0;
}
.rlgd-event-card__date svg,
.rlgd-event-card__location svg { flex-shrink: 0; color: var(--rl-purple); opacity: .7; }

.rlgd-event-card__price { font-size: .8rem; font-weight: 700; color: var(--rl-gold); margin: 0; }

.rlgd-event-card__cta {
    margin-top: auto;
    padding-top: 8px;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--rl-purple);
    text-decoration: none;
}
.rlgd-event-card__cta:hover { color: var(--rl-purple-dark); }


/* ── Date badge (archive + hero) ─────────────────────────────── */
.rlgd-date-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--rl-purple);
    color: #fff;
    border-radius: 3px;
    padding: 6px 10px;
    text-align: center;
    min-width: 48px;
    line-height: 1;
    z-index: 2;
}
.rlgd-date-badge__month {
    display: block;
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .85;
    margin-bottom: 2px;
}
.rlgd-date-badge__day { display: block; font-size: 1.5rem; font-weight: 700; }


/* ── Pagination ──────────────────────────────────────────────── */
.rlgd-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    padding: 8px 0 24px;
}
.rlgd-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid var(--rl-border);
    border-radius: var(--rl-radius);
    font-size: .85rem;
    color: var(--rl-text);
    text-decoration: none;
    background: var(--rl-bg);
    transition: all .15s;
}
.rlgd-pagination .page-numbers.current { background: var(--rl-purple); color: #fff; border-color: var(--rl-purple); font-weight: 700; }
.rlgd-pagination .page-numbers:hover:not(.current) { background: var(--rl-purple-light); color: var(--rl-purple); border-color: var(--rl-purple); }


/* ── No results ──────────────────────────────────────────────── */
.rlgd-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 64px 24px;
    color: var(--rl-text-muted);
}
.rlgd-no-results svg { margin: 0 auto 16px; color: var(--rl-border); display: block; }
.rlgd-no-results p { margin: 0; }
.rlgd-no-results a { color: var(--rl-purple); }


/* ── Single place/event ──────────────────────────────────────── */
.rlgd-single { padding-bottom: 56px; }

.rlgd-single__hero {
    width: 100%;
    height: 460px;
    overflow: hidden;
    position: relative;
    background: var(--rl-purple-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}
.rlgd-single__hero--nobg {
    background: linear-gradient(135deg, #1a0e38 0%, var(--rl-purple) 100%);
    min-height: 120px;
}
.rlgd-single__hero-img { width: 100%; height: 100%; object-fit: contain; display: block; }

.rlgd-single__layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
    padding-top: 28px;
}

.rlgd-single__main { min-width: 0; }

.rlgd-breadcrumb {
    font-size: .78rem;
    color: var(--rl-text-muted);
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
}
.rlgd-breadcrumb a { color: var(--rl-text-muted); text-decoration: none; }
.rlgd-breadcrumb a:hover { color: var(--rl-purple); }

.rlgd-single__header { margin-bottom: 24px; }
.rlgd-single__cats { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }

.rlgd-cat-tag {
    display: inline-block;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--rl-purple);
    background: var(--rl-purple-light);
    padding: 3px 10px;
    border-radius: 2px;
    text-decoration: none;
    transition: all .15s;
}
.rlgd-cat-tag:hover { background: var(--rl-purple); color: #fff; }

.rlgd-single__title {
    font-family: var(--rl-font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--rl-black);
    line-height: 1.2;
    margin: 0 0 8px;
}

.rlgd-single__meta-loc {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    color: var(--rl-text-muted);
    margin: 0;
}

.rlgd-single__content { margin-bottom: 32px; line-height: 1.75; font-size: 1.02rem; }

.rlgd-section-heading {
    font-family: var(--rl-font);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--rl-purple);
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--rl-purple-light);
}

.rlgd-single-map {
    height: 320px;
    border-radius: var(--rl-radius);
    border: 1px solid var(--rl-border);
    margin-bottom: 12px;
    overflow: hidden;
}

.rlgd-single__address {
    font-size: .85rem;
    color: var(--rl-text-secondary);
    font-style: normal;
    line-height: 1.5;
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.rlgd-directions-link {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    color: var(--rl-purple);
    text-decoration: none;
}
.rlgd-directions-link:hover { color: var(--rl-purple-dark); }

.rlgd-single__back { margin-top: 32px; }
.rlgd-single__back a { font-size: .85rem; color: var(--rl-text-muted); text-decoration: none; }
.rlgd-single__back a:hover { color: var(--rl-purple); }

.rlgd-event-single__date {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .95rem;
    color: var(--rl-purple);
    font-weight: 600;
    margin: 6px 0 0;
}


/* ── Info sidebar cards ──────────────────────────────────────── */
.rlgd-single__sidebar {
    position: sticky;
    top: calc(var(--rl-navbar-h, 46px) + var(--rl-rp-h, 0px) + 16px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rlgd-info-card {
    background: var(--rl-bg);
    border: 1px solid var(--rl-border);
    border-radius: var(--rl-radius);
    overflow: hidden;
}
.rlgd-info-card--event { border-top: 3px solid var(--rl-purple); }
.rlgd-info-card--offer { border-top: 3px solid var(--rl-gold); background: var(--rl-gold-light); }

.rlgd-info-card__heading {
    font-family: var(--rl-font);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--rl-text-muted);
    background: var(--rl-bg-alt);
    padding: 10px 16px;
    margin: 0;
    border-bottom: 1px solid var(--rl-border-light);
}

.rlgd-info-card__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--rl-border-light);
    font-size: .85rem;
}
.rlgd-info-card__row:last-child { border-bottom: none; }

.rlgd-info-card__label {
    font-weight: 700;
    color: var(--rl-text);
    white-space: nowrap;
}
.rlgd-info-card__row a { color: var(--rl-purple); text-decoration: none; }
.rlgd-info-card__row a:hover { color: var(--rl-purple-dark); }

.rlgd-price-range { font-weight: 700; color: var(--rl-gold); }

/* Business hours dl */
.rlgd-hours { display: grid; grid-template-columns: 56px 1fr; gap: 0; margin: 0; padding: 8px 0; }
.rlgd-hours dt { font-weight: 700; font-size: .8rem; color: var(--rl-text); padding: 5px 16px; }
.rlgd-hours dd { font-size: .8rem; color: var(--rl-text-secondary); padding: 5px 16px 5px 0; margin: 0; }
.rlgd-hours__closed { color: var(--rl-text-muted); font-style: italic; }

/* Event status */
.rlgd-event-status { font-size: .78rem; font-weight: 700; padding: 2px 8px; border-radius: 2px; }
.rlgd-event-status--scheduled { background: #e7f5ea; color: #1a7a2a; }
.rlgd-event-status--cancelled { background: #fde8e8; color: #c0392b; }
.rlgd-event-status--postponed { background: #fef3e2; color: #b45309; }
.rlgd-event-status--moved-online { background: var(--rl-purple-light); color: var(--rl-purple); }

.rlgd-price { font-size: 1rem; color: var(--rl-gold); }

/* CTA buttons in sidebar */
.rlgd-cta-btn {
    display: block;
    margin: 8px 16px 12px;
    padding: 10px 16px;
    text-align: center;
    background: var(--rl-purple);
    color: #fff;
    border-radius: var(--rl-radius);
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    transition: background .15s;
}
.rlgd-cta-btn:hover { background: var(--rl-purple-dark); color: #fff; }
.rlgd-cta-btn--outline { background: transparent; border: 2px solid var(--rl-purple); color: var(--rl-purple); margin-top: 0; }
.rlgd-cta-btn--outline:hover { background: var(--rl-purple-light); color: var(--rl-purple); }

/* Video embed */
.rlgd-video-wrap { padding: 12px 16px 16px; }
.rlgd-video-wrap a { color: var(--rl-purple); }

/* ── Info card body text ─────────────────────────────────────── */
.rlgd-info-card__body-text { padding: 12px 16px; margin: 0; font-size: .88rem; line-height: 1.55; }

/* ── Responsive (archive) ────────────────────────────────────── */
@media (max-width: 1024px) {
    .rlgd-grid,
    .rlgd-events-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 900px) {
    .rlgd-single__layout { grid-template-columns: 1fr; }
    .rlgd-single__sidebar { position: static; }
    .rlgd-archive-map { height: 280px; }
}

@media (max-width: 600px) {
    .rlgd-grid,
    .rlgd-events-grid { grid-template-columns: 1fr; }
    .rlgd-search-form__inner { flex-direction: column; }
    .rlgd-search-form__select,
    .rlgd-search-form__input { width: 100%; min-width: 100%; }
    .rlgd-search-form__btn { width: 100%; justify-content: center; }
    .rlgd-cat-pills { gap: 4px; }
    .rlgd-archive__header { padding: 16px 0 14px; }
    .rlgd-archive__title { font-size: 1.2rem; }
}


/* ============================================================
   SINGLE DETAIL PAGE — article-style layout
   ============================================================ */

/* ── Meta line (location / date / phone in byline) ──────────── */
.rlgd-place-meta__loc,
.rlgd-place-meta__phone {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .82rem;
    color: var(--rl-text-muted);
    text-decoration: none;
}
.rlgd-place-meta__phone:hover { color: var(--rl-purple); }
.rlgd-place-meta__price {
    font-size: .82rem;
    color: var(--rl-gold);
}


/* ── Action bar below the hero image ────────────────────────── */
.rlgd-actions-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rl-border-light);
}

.rlgd-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: var(--rl-bg-alt);
    border: 1px solid var(--rl-border);
    border-radius: 24px;
    color: var(--rl-text);
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s, border-color .15s, color .15s;
    white-space: nowrap;
}
.rlgd-action-btn:hover {
    background: var(--rl-purple-light);
    border-color: var(--rl-purple);
    color: var(--rl-purple);
}
.rlgd-action-btn--primary {
    background: var(--rl-purple);
    border-color: var(--rl-purple);
    color: #fff;
}
.rlgd-action-btn--primary:hover {
    background: var(--rl-purple-dark);
    border-color: var(--rl-purple-dark);
    color: #fff;
}


/* ── Info inset card (contact/hours below article body) ─────── */
.rlgd-info-inset {
    margin: 24px 0;
    padding: 16px 20px;
    background: var(--rl-bg-alt);
    border: 1px solid var(--rl-border-light);
    border-left: 3px solid var(--rl-purple);
    border-radius: var(--rl-radius);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rlgd-info-inset__row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    color: var(--rl-text);
    text-decoration: none;
}
.rlgd-info-inset__row svg { flex-shrink: 0; color: var(--rl-purple); }
a.rlgd-info-inset__row:hover { color: var(--rl-purple); }
a.rlgd-info-inset__row:hover svg { color: var(--rl-purple-dark); }

.rlgd-info-inset__hours {
    font-size: .85rem;
    color: var(--rl-text);
    padding-top: 4px;
    border-top: 1px solid var(--rl-border-light);
}
.rlgd-info-inset__hours strong {
    display: block;
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--rl-text-muted);
    margin-bottom: 6px;
}

.rlgd-info-inset__social {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 4px;
    border-top: 1px solid var(--rl-border-light);
}

.rlgd-info-inset__social-link {
    font-size: .72rem;
    font-weight: 700;
    color: var(--rl-purple);
    text-decoration: none;
    padding: 3px 10px;
    border: 1px solid var(--rl-purple-light);
    border-radius: 12px;
    background: var(--rl-purple-light);
    transition: background .12s;
}
.rlgd-info-inset__social-link:hover { background: var(--rl-purple); color: #fff; }


/* ── Special offer banner ────────────────────────────────────── */
.rlgd-offer-banner {
    margin: 16px 0;
    padding: 12px 16px;
    background: var(--rl-gold-light);
    border-left: 3px solid var(--rl-gold);
    font-size: .88rem;
    color: var(--rl-text);
    border-radius: var(--rl-radius);
}
.rlgd-offer-banner strong { color: #7a5a06; }


/* ── Video embed ─────────────────────────────────────────────── */
.rlgd-video-embed { margin: 20px 0; }


/* ── Map section ─────────────────────────────────────────────── */
.rlgd-map-section { margin: 28px 0 24px; }


/* ── Contact list (kept for compatibility) ───────────────────── */
.rlgd-contact-list { padding: 4px 0; }
.rlgd-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--rl-border-light);
    text-decoration: none;
    color: inherit;
    transition: background .12s;
}
.rlgd-contact-item:last-child { border-bottom: none; }
.rlgd-contact-item:hover { background: var(--rl-bg-alt); }

.rlgd-contact-item__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rl-purple-light);
    border-radius: 50%;
    color: var(--rl-purple);
}

.rlgd-contact-item__text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}
.rlgd-contact-item__label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--rl-text-muted);
}
.rlgd-contact-item__val {
    font-size: .85rem;
    color: var(--rl-purple);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 190px;
}
a.rlgd-contact-item .rlgd-contact-item__val { color: var(--rl-purple); }

/* Social badges in sidebar */
.rlgd-social-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 12px 16px;
}
.rlgd-social-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .15s;
}
.rlgd-social-badge:hover { opacity: .85; }
.rlgd-social-badge--fb { background: #1877f2; color: #fff; }
.rlgd-social-badge--ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.rlgd-social-badge--tw { background: #000; color: #fff; }


/* ── Ad break ────────────────────────────────────────────────── */
.rlgd-ad-break {
    margin: 28px 0;
    padding: 14px 0;
    border-top: 1px solid var(--rl-border-light);
    border-bottom: 1px solid var(--rl-border-light);
    text-align: center;
}


/* ── Section headings (magazine style) ──────────────────────── */
.rlgd-section-heading--mag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--rl-font);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--rl-text);
    margin: 0 0 16px;
}
.rlgd-section-heading--mag::before {
    content: '';
    display: block;
    width: 4px;
    height: 18px;
    background: var(--rl-purple);
    border-radius: 2px;
    flex-shrink: 0;
}
.rlgd-section-heading--mag::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--rl-border);
}


/* ── Related places / events grid ───────────────────────────── */
.rlgd-related { margin: 32px 0 24px; }

.rlgd-related-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px;
    margin-bottom: 12px;
}

.rlgd-related-card {
    display: flex;
    flex-direction: column;
    background: var(--rl-bg);
    border: 1px solid var(--rl-border);
    border-radius: var(--rl-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    transition: box-shadow .2s, transform .2s;
}
.rlgd-related-card:hover {
    box-shadow: 0 8px 28px rgba(76,64,132,.16);
    transform: translateY(-4px);
    color: inherit;
}

.rlgd-related-card__img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--rl-bg-alt);
    flex-shrink: 0;
}
.rlgd-related-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}
.rlgd-related-card:hover .rlgd-related-card__img { transform: scale(1.07); }

.rlgd-related-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rl-border);
    background: var(--rl-bg-alt);
}

.rlgd-related-card__body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.rlgd-related-card__title {
    font-family: var(--rl-font-display);
    font-size: .9rem;
    font-weight: 700;
    color: var(--rl-black);
    margin: 0;
    line-height: 1.35;
}

.rlgd-related-card__meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .75rem;
    color: var(--rl-text-muted);
    margin: 0;
}
.rlgd-related-card__meta svg { flex-shrink: 0; color: var(--rl-purple); }

.rlgd-related-card__cta {
    display: inline-block;
    margin-top: auto;
    padding-top: 8px;
    font-size: .72rem;
    font-weight: 800;
    color: var(--rl-purple);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.rlgd-related__view-all {
    text-align: right;
    margin: 8px 0 0;
    font-size: .82rem;
}
.rlgd-related__view-all a { color: var(--rl-purple); text-decoration: none; font-weight: 700; }
.rlgd-related__view-all a:hover { color: var(--rl-purple-dark); }


/* ── Article engagement strip ───────────────────────────────── */
.rlgd-articles-strip {
    margin: 8px 0 36px;
    padding: 28px 24px 24px;
    background: var(--rl-bg-alt);
    border-radius: var(--rl-radius);
    border: 1px solid var(--rl-border-light);
}

.rlgd-articles-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px;
    margin-bottom: 14px;
}

.rlgd-article-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: var(--rl-bg);
    border-radius: var(--rl-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.07);
    transition: box-shadow .2s, transform .2s;
}
.rlgd-article-card:hover {
    box-shadow: 0 8px 28px rgba(76,64,132,.14);
    transform: translateY(-4px);
    color: inherit;
}

.rlgd-article-card__img-wrap {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--rl-bg-alt);
    flex-shrink: 0;
}
.rlgd-article-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}
.rlgd-article-card:hover .rlgd-article-card__img { transform: scale(1.06); }

.rlgd-article-card__body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.rlgd-article-card__cat {
    font-size: .6rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--rl-purple);
}

.rlgd-article-card__title {
    font-family: var(--rl-font-display);
    font-size: .88rem;
    font-weight: 700;
    color: var(--rl-black);
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rlgd-article-card__date {
    margin-top: auto;
    padding-top: 6px;
    font-size: .72rem;
    color: var(--rl-text-muted);
}


/* ── Responsive overrides ────────────────────────────────────── */
@media (max-width: 900px) {
    .rlgd-related-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .rlgd-articles-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .rlgd-actions-bar { gap: 6px; }
}

@media (max-width: 600px) {
    .rlgd-actions-bar { flex-direction: column; }
    .rlgd-action-btn { justify-content: center; }

    .rlgd-related-grid { grid-template-columns: 1fr 1fr !important; gap: 10px; }
    .rlgd-articles-grid { grid-template-columns: 1fr 1fr !important; gap: 10px; }
    .rlgd-articles-strip { padding: 18px 14px 14px; }

    .rlgd-ad-break { margin: 18px 0; padding: 10px 0; }

    .rlgd-info-inset { padding: 12px 14px; }
}




/* ============================================================
   ENGAGEMENT SECTIONS — places/events archive editorial strips
   ============================================================ */

/* ── Shared section chrome ───────────────────────────────────── */
.rlgd-eng-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--rl-border);
}
.rlgd-eng-label {
    font-family: var(--rl-font);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--rl-text);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 9px;
}
.rlgd-eng-label::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 15px;
    background: var(--rl-purple);
    border-radius: 2px;
    flex-shrink: 0;
}
.rlgd-eng-all {
    font-size: .72rem;
    font-weight: 700;
    color: var(--rl-purple);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}
.rlgd-eng-all:hover { color: var(--rl-gold); }
.rlgd-eng-card__meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--rl-text-muted);
    margin: 0;
}
.rlgd-eng-card__meta svg { flex-shrink: 0; color: var(--rl-purple); opacity: .6; }
.rlgd-eng-card__meta--sm { font-size: .72rem; }
.rlgd-eng-card__kicker {
    font-size: .6rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--rl-purple);
    text-decoration: none;
    display: block;
}


/* ── Category scroll strip (inside sidebar layout) ───────────── */
.rlgd-eng-section { margin: 32px 0 4px; }
.rlgd-eng-section--cats { margin-top: 36px; }

.rlgd-cat-scroll {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 2px 0 4px;
}
.rlgd-cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 13px;
    border-radius: 2px;
    border: 1px solid var(--rl-border-light);
    background: #fff;
    font-size: .73rem;
    font-weight: 600;
    color: var(--rl-text-secondary);
    text-decoration: none;
    transition: all .12s;
    white-space: nowrap;
}
.rlgd-cat-chip:hover {
    border-color: var(--rl-purple);
    color: var(--rl-purple);
    background: var(--rl-purple-light);
}
.rlgd-cat-chip.is-active {
    background: var(--rl-purple);
    border-color: var(--rl-purple);
    color: #fff;
}
.rlgd-cat-chip__ct {
    font-size: .65em;
    font-weight: 500;
    opacity: .65;
    background: rgba(0,0,0,.06);
    padding: 1px 5px;
    border-radius: 10px;
}
.rlgd-cat-chip.is-active .rlgd-cat-chip__ct { background: rgba(255,255,255,.2); opacity: 1; }


/* ── Full-width strip wrapper ────────────────────────────────── */
.rlgd-eng-strip { padding: 44px 0; }

.rlgd-eng-strip--events {
    background: var(--rl-purple-dark);
    background: linear-gradient(135deg, #2a1f54 0%, var(--rl-purple) 100%);
}
.rlgd-eng-strip--events .rlgd-eng-label { color: rgba(255,255,255,.55); }
.rlgd-eng-strip--events .rlgd-eng-label::before { background: var(--rl-gold); }
.rlgd-eng-strip--events .rlgd-eng-header { border-bottom-color: rgba(255,255,255,.12); }
.rlgd-eng-strip--events .rlgd-eng-all { color: var(--rl-gold); }
.rlgd-eng-strip--events .rlgd-eng-all:hover { color: #fff; }

.rlgd-eng-strip--news {
    background: var(--rl-bg-alt);
    border-top: 1px solid var(--rl-border-light);
}


/* ── Events: featured + secondary layout ────────────────────── */
.rlgd-ev-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 20px;
    align-items: start;
}

/* Featured event */
.rlgd-ev-featured {
    background: #fff;
    border-radius: var(--rl-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(0,0,0,.28);
}
.rlgd-ev-featured__img-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--rl-purple-dark);
    flex-shrink: 0;
}
.rlgd-ev-featured__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.rlgd-ev-featured:hover .rlgd-ev-featured__img { transform: scale(1.03); }
.rlgd-ev-featured__img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a0e38 0%, var(--rl-purple) 100%);
}
.rlgd-ev-featured__body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.rlgd-ev-featured__title {
    font-family: var(--rl-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
}
.rlgd-ev-featured__title a { color: var(--rl-black); text-decoration: none; }
.rlgd-ev-featured__title a:hover { color: var(--rl-purple); }
.rlgd-ev-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    padding: 8px 18px;
    background: var(--rl-purple);
    color: #fff;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--rl-radius);
    transition: background .15s;
    align-self: flex-start;
}
.rlgd-ev-cta:hover { background: var(--rl-gold); color: #fff; }

/* Secondary events (stacked) */
.rlgd-ev-secondary {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.rlgd-ev-side {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    align-items: center;
    background: rgba(255,255,255,.08);
    border-radius: var(--rl-radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    transition: background .15s;
}
.rlgd-ev-side:hover { background: rgba(255,255,255,.13); }
.rlgd-ev-side__img-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: rgba(255,255,255,.08);
    flex-shrink: 0;
    height: 100%;
}
.rlgd-ev-side__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.rlgd-ev-side:hover .rlgd-ev-side__img { transform: scale(1.05); }
.rlgd-ev-side__img-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.08);
}
.rlgd-ev-side__body {
    padding: 12px 14px 12px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.rlgd-ev-side__title {
    font-family: var(--rl-font-display);
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}
.rlgd-ev-side__title a { color: #fff; text-decoration: none; }
.rlgd-ev-side__title a:hover { color: var(--rl-gold); }
.rlgd-ev-side .rlgd-eng-card__kicker { color: rgba(255,255,255,.5); }
.rlgd-ev-side .rlgd-eng-card__meta { color: rgba(255,255,255,.55); }
.rlgd-ev-side .rlgd-eng-card__meta svg { color: var(--rl-gold); opacity: 1; }
/* Date badge inside secondary cards */
.rlgd-ev-side .rlgd-date-badge { top: 6px; left: 6px; padding: 4px 7px; min-width: 38px; }
.rlgd-ev-side .rlgd-date-badge__day { font-size: 1.1rem; }


/* ── News grid ───────────────────────────────────────────────── */
.rlgd-news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.rlgd-news-card {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.rlgd-news-card__img-wrap {
    display: block;
    overflow: hidden;
    border-radius: var(--rl-radius);
    background: var(--rl-bg-alt);
    aspect-ratio: 16/9;
    margin-bottom: 10px;
}
.rlgd-news-card--lead .rlgd-news-card__img-wrap { aspect-ratio: 3/2; }
.rlgd-news-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.rlgd-news-card:hover .rlgd-news-card__img-wrap img { transform: scale(1.04); }
.rlgd-news-card__img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--rl-border-light);
}
.rlgd-news-card__body { display: flex; flex-direction: column; gap: 5px; }
.rlgd-news-card__kicker {
    font-size: .6rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--rl-purple);
    text-decoration: none;
}
.rlgd-news-card__kicker:hover { color: var(--rl-gold); }
.rlgd-news-card__title {
    font-family: var(--rl-font-display);
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: var(--rl-black);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rlgd-news-card--lead .rlgd-news-card__title {
    font-size: 1.2rem;
    -webkit-line-clamp: 4;
}
.rlgd-news-card__title a { color: inherit; text-decoration: none; }
.rlgd-news-card__title a:hover { color: var(--rl-purple); }
.rlgd-news-card__excerpt {
    font-size: .85rem;
    color: var(--rl-text-secondary);
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rlgd-news-card__date {
    font-size: .68rem;
    color: var(--rl-text-muted);
    margin: 2px 0 0;
}


/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .rlgd-news-grid { grid-template-columns: 1fr 1fr 1fr; }
    .rlgd-news-card--lead { grid-column: 1 / -1; flex-direction: row; gap: 20px; }
    .rlgd-news-card--lead .rlgd-news-card__img-wrap { width: 340px; flex-shrink: 0; margin-bottom: 0; aspect-ratio: 16/9; }
    .rlgd-news-card--lead .rlgd-news-card__body { justify-content: center; }
}

@media (max-width: 900px) {
    .rlgd-ev-layout { grid-template-columns: 1fr; }
    .rlgd-ev-secondary { flex-direction: row; }
    .rlgd-ev-side { grid-template-columns: 90px 1fr; }
    .rlgd-eng-strip { padding: 32px 0; }
    .rlgd-cat-scroll { gap: 5px; }
}

@media (max-width: 768px) {
    .rlgd-news-grid { grid-template-columns: 1fr 1fr; }
    .rlgd-news-card--lead { grid-column: 1 / -1; flex-direction: column; }
    .rlgd-news-card--lead .rlgd-news-card__img-wrap { width: 100%; }
}

@media (max-width: 600px) {
    .rlgd-ev-secondary { flex-direction: column; }
    .rlgd-news-grid { grid-template-columns: 1fr; }
    .rlgd-news-card--lead { grid-column: auto; }
    .rlgd-eng-strip { padding: 24px 0; }
    .rlgd-eng-section { margin-top: 24px; }
    .rlgd-cat-scroll { gap: 4px; }
}

/* ── Events: empty state ─────────────────────────────────────── */
.rlgd-events-empty {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 64px 24px;
    background: #fafafa;
    border: 1px solid var(--rl-border);
    border-radius: 4px;
}
.rlgd-events-empty__icon {
    color: var(--rl-purple);
    opacity: .45;
    margin-bottom: 20px;
}
.rlgd-events-empty__title {
    font-family: var(--rl-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--rl-black);
    margin: 0 0 12px;
}
.rlgd-events-empty__text {
    font-size: .9375rem;
    color: #555;
    max-width: 520px;
    line-height: 1.6;
    margin: 0 0 28px;
}
.rlgd-events-empty__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rl-purple);
    color: #fff;
    font-family: var(--rl-font-display);
    font-size: .875rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: 3px;
    text-decoration: none;
    transition: background .18s;
}
.rlgd-events-empty__btn:hover { background: var(--rl-purple-dark); color: #fff; }

/* ── Events: submit-your-event CTA banner ────────────────────── */
.rlgd-submit-cta {
    margin: 32px 0 8px;
    background: linear-gradient(135deg, var(--rl-purple-dark) 0%, var(--rl-purple) 100%);
    border-radius: 4px;
    padding: 24px 28px;
}
.rlgd-submit-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.rlgd-submit-cta__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.rlgd-submit-cta__headline {
    font-family: var(--rl-font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    color: #fff;
}
.rlgd-submit-cta__sub {
    font-size: .875rem;
    color: rgba(255,255,255,.78);
}
.rlgd-submit-cta__btn {
    flex-shrink: 0;
    display: inline-block;
    background: var(--rl-gold);
    color: #1a1a1a;
    font-family: var(--rl-font-display);
    font-size: .8125rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 11px 22px;
    border-radius: 3px;
    text-decoration: none;
    white-space: nowrap;
    transition: filter .18s;
}
.rlgd-submit-cta__btn:hover { filter: brightness(1.08); color: #1a1a1a; }

@media (max-width: 640px) {
    .rlgd-submit-cta__inner { flex-direction: column; align-items: flex-start; }
    .rlgd-submit-cta__btn { width: 100%; text-align: center; }
}
