/* ─── Unity Roots Card System ──────────────────────────────────────────────── */
:root {
  --ur-navy:    #0a183d;
  --ur-accent:  #3b6cf7;
  --ur-warm:    #fcf9f5;
  --ur-text:    #1a1a2e;
  --ur-muted:   #6b7280;
  --ur-border:  #e5e7eb;
  --ur-radius:  12px;
  --ur-shadow:  0 2px 12px rgba(10,24,61,.08);
}

/* Grid */
.ur-cards-grid { display: grid; gap: 24px; }
.ur-cols-1 { grid-template-columns: repeat(1,1fr); }
.ur-cols-2 { grid-template-columns: repeat(2,1fr); }
.ur-cols-3 { grid-template-columns: repeat(3,1fr); }
.ur-cols-4 { grid-template-columns: repeat(4,1fr); }
@media (max-width: 1024px) {
  .ur-cols-3, .ur-cols-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .ur-cols-2, .ur-cols-3, .ur-cols-4 { grid-template-columns: 1fr; }
}

/* Base Card */
.ur-card {
  background: #fff;
  border-radius: var(--ur-radius);
  box-shadow: var(--ur-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ur-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(10,24,61,.14); }

/* Thumbnail */
.ur-card__thumb-link { display: block; position: relative; overflow: hidden; }
.ur-card__thumb { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .3s ease; }
.ur-card:hover .ur-card__thumb { transform: scale(1.04); }
.ur-card__thumb--placeholder { height: 200px; background: linear-gradient(135deg, var(--ur-navy) 0%, #1e3a6e 100%); }
.ur-card__thumb--event { background: linear-gradient(135deg, #1a3a6e 0%, #2c5faa 100%); }
.ur-card__thumb--resource { background: linear-gradient(135deg, #14532d 0%, #15803d 100%); }

/* Body */
.ur-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }

/* Tag */
.ur-card__tag {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ur-accent); background: rgba(59,108,247,.08);
  padding: 3px 10px; border-radius: 999px;
  width: fit-content;
}
.ur-card__tag--resource { color: #15803d; background: rgba(21,128,61,.08); }

/* Title */
.ur-card__title { font-size: 16px; font-weight: 700; line-height: 1.4; margin: 0; color: var(--ur-text); }
.ur-card__title a { color: inherit; text-decoration: none; }
.ur-card__title a:hover { color: var(--ur-accent); }

/* Excerpt */
.ur-card__excerpt { font-size: 13px; color: var(--ur-muted); line-height: 1.6; margin: 0; flex: 1; }

/* Meta */
.ur-card__meta { display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--ur-border); }
.ur-card__avatar { border-radius: 50%; width: 26px !important; height: 26px !important; object-fit: cover; }
.ur-card__author { font-size: 12px; font-weight: 600; color: var(--ur-text); }
.ur-card__date { font-size: 12px; color: var(--ur-muted); margin-left: auto; }

/* ─── Event Cards ──────────────────────────────────────────────────────────── */
.ur-event-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ur-event-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.12); }

/* Image wrapper */
.ur-event-card__img-wrap { position: relative; overflow: hidden; }
.ur-event-card__img-wrap a { display: block; }
.ur-event-card__img { width: 100%; height: 180px; object-fit: cover; display: block; transition: transform .35s ease; }
.ur-event-card:hover .ur-event-card__img { transform: scale(1.04); }
.ur-event-card__img--placeholder { display: block; width: 100%; height: 180px; background: linear-gradient(135deg, #1a3a6e 0%, #2c5faa 100%); }

/* Date badge */
.ur-event-card__date {
  position: absolute; top: 12px; left: 12px;
  background: #fff; border-radius: 8px; padding: 6px 10px;
  text-align: center; min-width: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.ur-event-card__date-month { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #D97706; }
.ur-event-card__date-day   { display: block; font-size: 22px; font-weight: 800; line-height: 1.1; color: #0D1015; }
.ur-event-card__date-wd    { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: #9CA3AF; }

/* Category pill */
.ur-event-card__cat {
  position: absolute; bottom: 12px; left: 12px;
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 99px;
  background: #2563EB; color: #fff;
  text-transform: capitalize;
}
.ur-event-card__cat--workshop  { background: #92400E; }
.ur-event-card__cat--social    { background: #059669; }
.ur-event-card__cat--language  { background: #7C3AED; }
.ur-event-card__cat--meetup    { background: #2563EB; }

/* Card body */
.ur-event-card__body { padding: 16px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.ur-event-card__title {
  font-size: 16px; font-weight: 700; line-height: 1.35; color: #0D1015; margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
}
.ur-event-card__title a { color: inherit; text-decoration: none; }
.ur-event-card__title a:hover { color: #2563EB; }
.ur-event-card__excerpt { font-size: 13px; color: #4B5563; line-height: 1.6; margin: 0; flex: 1; }
.ur-event-card__details { display: flex; flex-direction: column; gap: 4px; }
.ur-event-card__details p { font-size: 12px; color: #4B5563; margin: 0; display: flex; align-items: center; gap: 6px; }
.ur-event-card__details i { color: #9CA3AF; width: 14px; text-align: center; }

/* Footer */
.ur-event-card__footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid #F3F4F6; margin-top: auto; }
.ur-event-card__avatars { display: flex; align-items: center; }
.ur-event-card__av {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff;
  margin-left: -7px;
}
.ur-event-card__av:first-child { margin-left: 0; }
.ur-event-card__av--1 { background: #2563EB; }
.ur-event-card__av--2 { background: #D97706; }
.ur-event-card__av--3 { background: #0A183D; }
.ur-event-card__going { font-size: 11px; color: #6B7280; margin-left: 8px; }
.ur-event-card__btn {
  background: #2563EB; color: #fff;
  font-size: 13px; font-weight: 600; padding: 7px 16px; border-radius: 8px;
  text-decoration: none; transition: background .2s ease; white-space: nowrap;
}
.ur-event-card__btn:hover { background: #1E40AF; color: #fff; }

/* Footer buttons */
.ur-card__footer { display: flex; gap: 8px; margin-top: auto; padding-top: 12px; }
.ur-card__btn {
  font-size: 13px; font-weight: 600; padding: 7px 16px;
  border-radius: 8px; text-decoration: none; border: 1.5px solid var(--ur-border);
  color: var(--ur-text); background: transparent; transition: all .2s;
}
.ur-card__btn:hover { border-color: var(--ur-accent); color: var(--ur-accent); }
.ur-card__btn--primary { background: var(--ur-navy); color: #fff; border-color: var(--ur-navy); }
.ur-card__btn--primary:hover { background: #162d5a; border-color: #162d5a; color: #fff; }

/* ─── Dashboard ────────────────────────────────────────────────────────────── */
.ur-dashboard { max-width: 1100px; margin: 0 auto; padding: 40px 24px; font-family: 'Inter', sans-serif; }
.ur-dashboard__header { display: flex; align-items: center; gap: 20px; padding: 32px; background: var(--ur-navy); border-radius: 16px; color: #fff; margin-bottom: 32px; }
.ur-dashboard__avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(255,255,255,.3); flex-shrink: 0; }
.ur-dashboard__welcome h1 { font-size: 22px; font-weight: 700; margin: 0 0 4px; }
.ur-dashboard__welcome p { font-size: 14px; opacity: .75; margin: 0; }

.ur-dashboard__stats { display: grid; grid-template-columns: repeat(auto-fit,minmax(140px,1fr)); gap: 16px; margin-bottom: 32px; }
.ur-stat-card { background: #fff; border-radius: 12px; padding: 20px; text-align: center; box-shadow: var(--ur-shadow); }
.ur-stat-card__number { font-size: 32px; font-weight: 800; color: var(--ur-navy); }
.ur-stat-card__label { font-size: 12px; color: var(--ur-muted); margin-top: 4px; }

.ur-dashboard__section-title { font-size: 18px; font-weight: 700; color: var(--ur-text); margin: 0 0 16px; }
.ur-dashboard__quick-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.ur-quick-action { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 10px; text-decoration: none; font-size: 14px; font-weight: 600; border: 1.5px solid var(--ur-border); color: var(--ur-text); background: #fff; transition: all .2s; }
.ur-quick-action:hover { border-color: var(--ur-accent); color: var(--ur-accent); }
.ur-quick-action--primary { background: var(--ur-navy); color: #fff; border-color: var(--ur-navy); }
.ur-quick-action--primary:hover { background: #162d5a; color: #fff; }

.ur-dashboard__section { margin-bottom: 40px; }
.ur-login-prompt { text-align: center; padding: 80px 24px; }
.ur-login-prompt h2 { font-size: 24px; color: var(--ur-text); margin-bottom: 8px; }
.ur-login-prompt p { color: var(--ur-muted); margin-bottom: 24px; }
.ur-login-prompt a { background: var(--ur-navy); color: #fff; padding: 12px 28px; border-radius: 10px; text-decoration: none; font-weight: 600; }

/* ─── Single Post ───────────────────────────────────────────────────────────── */
.ur-single { max-width: 800px; margin: 0 auto; padding: 40px 24px; font-family: 'Inter', sans-serif; }
.ur-single__hero { margin-bottom: 32px; }
.ur-single__hero img { width: 100%; border-radius: 16px; max-height: 420px; object-fit: cover; }
.ur-single__tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ur-accent); background: rgba(59,108,247,.08); padding: 4px 12px; border-radius: 999px; margin-bottom: 16px; }
.ur-single__title { font-size: clamp(24px,4vw,36px); font-weight: 800; color: var(--ur-text); line-height: 1.25; margin: 0 0 16px; }
.ur-single__meta { display: flex; align-items: center; gap: 12px; padding: 16px 0; border-top: 1px solid var(--ur-border); border-bottom: 1px solid var(--ur-border); margin-bottom: 32px; }
.ur-single__meta-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.ur-single__meta-author { font-weight: 600; font-size: 14px; }
.ur-single__meta-date { font-size: 13px; color: var(--ur-muted); }
.ur-single__content { font-size: 16px; line-height: 1.8; color: var(--ur-text); }
.ur-single__content p { margin-bottom: 1.4em; }
.ur-single__back { display: inline-flex; align-items: center; gap: 6px; color: var(--ur-accent); text-decoration: none; font-weight: 600; font-size: 14px; margin-bottom: 32px; }
.ur-single__back:hover { text-decoration: underline; }

/* ─── Single Event Page ────────────────────────────────────────────────────── */

/* Hero */
.ur-ev-hero {
  position: relative; min-height: 500px;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
}
.ur-ev-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.7) 100%);
}
.ur-ev-hero__content {
  position: relative; width: 100%;
  max-width: 1200px; margin: 0 auto; padding: 0 24px 56px;
}
.ur-ev-hero__inner { max-width: 640px; }
.ur-ev-hero__breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.75); margin-bottom: 16px;
}
.ur-ev-hero__breadcrumb a { color: rgba(255,255,255,.75); text-decoration: none; }
.ur-ev-hero__breadcrumb a:hover { color: #fff; }
.ur-ev-hero__breadcrumb i { font-size: 10px; }
.ur-ev-hero__badge {
  display: inline-block; background: #2563EB; color: #fff;
  font-size: 12px; font-weight: 600; padding: 4px 14px; border-radius: 99px; margin-bottom: 12px;
}
.ur-ev-hero__title {
  font-size: clamp(26px, 5vw, 44px); font-weight: 700; color: #fff;
  line-height: 1.2; margin: 0 0 12px;
  font-family: 'Playfair Display', 'DM Serif Display', Georgia, serif;
}
.ur-ev-hero__subtitle { font-size: 15px; color: rgba(255,255,255,.85); margin: 0 0 20px; line-height: 1.6; }
.ur-ev-hero__meta { display: flex; flex-wrap: wrap; gap: 16px; }
.ur-ev-hero__meta-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,.9); }
.ur-ev-hero__meta-item i { font-size: 15px; }

/* Main layout */
.ur-ev-main { background: #FCFBF9; padding: 56px 0; }
.ur-ev-main__wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.ur-ev-main__grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
@media (max-width: 900px) {
  .ur-ev-main__grid { grid-template-columns: 1fr; }
  .ur-ev-sidebar { order: -1; }
}

/* Sections */
.ur-ev-section { margin-bottom: 48px; }
.ur-ev-section__label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #6B7280; margin-bottom: 8px; }
.ur-ev-section__heading {
  font-size: 26px; font-weight: 700; color: #1F2937; margin: 0 0 20px;
  font-family: 'Playfair Display', Georgia, serif;
}
.ur-ev-section__heading--sm {
  font-size: 22px; font-weight: 700; color: #1F2937; margin: 0 0 20px;
  font-family: 'Playfair Display', Georgia, serif;
}
.ur-ev-section__content { font-size: 15px; line-height: 1.8; color: #4B5563; max-width: 620px; }
.ur-ev-section__content p { margin-bottom: 1.2em; }
.ur-ev-section__content ul { padding-left: 20px; margin-bottom: 1.2em; }
.ur-ev-section__content li { margin-bottom: .4em; }
.ur-ev-quote {
  background: #EFF6FF; border-radius: 10px; padding: 16px 20px; margin-top: 20px;
  font-style: italic; color: #1F2937; font-size: 15px;
  font-family: 'Playfair Display', Georgia, serif;
  border: none;
}

/* Features grid */
.ur-ev-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 600px) { .ur-ev-features { grid-template-columns: 1fr; } }
.ur-ev-feature {
  background: #fff; border-radius: 10px; padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
}
.ur-ev-feature__icon {
  width: 40px; height: 40px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; font-size: 18px;
}
.ur-ev-feature__icon--blue   { background: #DBEAFE; color: #2563EB; }
.ur-ev-feature__icon--green  { background: #D1FAE5; color: #059669; }
.ur-ev-feature__icon--amber  { background: #FEF3C7; color: #D97706; }
.ur-ev-feature__icon--purple { background: #EDE9FE; color: #7C3AED; }
.ur-ev-feature__icon--rose   { background: #FFE4E6; color: #E11D48; }
.ur-ev-feature__icon--cyan   { background: #CFFAFE; color: #0891B2; }
.ur-ev-feature h3 { font-size: 15px; font-weight: 700; color: #111827; margin: 0 0 4px; }
.ur-ev-feature p  { font-size: 13px; color: #6B7280; margin: 0; }

/* Details grid */
.ur-ev-details { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .ur-ev-details { grid-template-columns: 1fr; } }
.ur-ev-detail { display: flex; align-items: flex-start; gap: 14px; }
.ur-ev-detail__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: #EFF6FF; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: #2563EB;
}
.ur-ev-detail__label { font-size: 12px; color: #6B7280; margin: 0 0 2px; }
.ur-ev-detail__value { font-size: 14px; font-weight: 600; color: #111827; margin: 0; }
.ur-ev-detail__sub  { font-size: 12px; color: #6B7280; margin: 2px 0 0; }

/* RSVP Sidebar */
.ur-ev-rsvp {
  background: #fff; border-radius: 14px; padding: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  position: sticky; top: 100px;
}
.ur-ev-rsvp__header { margin-bottom: 12px; }
.ur-ev-rsvp__badge {
  display: inline-block; background: #ECFDF5; color: #059669;
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 99px;
}
.ur-ev-rsvp__count { font-size: 20px; font-weight: 800; color: #111827; margin: 0 0 2px; }
.ur-ev-rsvp__sub { font-size: 13px; color: #6B7280; margin: 0 0 20px; }
.ur-ev-rsvp__actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.ur-ev-rsvp__btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: all .2s ease; text-align: center; cursor: pointer;
}
.ur-ev-rsvp__btn--primary { background: #2563EB; color: #fff; border: none; }
.ur-ev-rsvp__btn--primary:hover { background: #1E40AF; color: #fff; }
.ur-ev-rsvp__btn--secondary { background: transparent; color: #2563EB; border: 2px solid #2563EB; }
.ur-ev-rsvp__btn--secondary:hover { background: #EFF6FF; }
.ur-ev-rsvp__btn--disabled { background: #F3F4F6; color: #9CA3AF; cursor: not-allowed; border: none; opacity: .8; }
.ur-ev-rsvp__attendees { display: flex; flex-direction: column; gap: 10px; padding: 16px 0; border-top: 1px solid #F3F4F6; }
.ur-ev-rsvp__attendees-header { display: flex; justify-content: space-between; align-items: center; }
.ur-ev-rsvp__av-stack { display: flex; }
.ur-ev-rsvp__av {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff; margin-left: -8px;
}
.ur-ev-rsvp__av:first-child { margin-left: 0; }
.ur-ev-rsvp__av--1 { background: #2563EB; }
.ur-ev-rsvp__av--2 { background: #D97706; }
.ur-ev-rsvp__av--3 { background: #0A183D; }
.ur-ev-rsvp__av--4 { background: #059669; }
.ur-ev-rsvp__going { font-size: 12px; color: #6B7280; }
.ur-ev-rsvp__tip {
  background: #FFFBF0; border-left: 3px solid #D97706;
  border-radius: 0 8px 8px 0; padding: 12px 14px;
  display: flex; gap: 10px; align-items: flex-start; margin-top: 16px;
}
.ur-ev-rsvp__tip i { color: #D97706; margin-top: 2px; flex-shrink: 0; }
.ur-ev-rsvp__tip p { font-size: 13px; color: #374151; margin: 0; line-height: 1.5; }

/* More Events */
.ur-ev-more { background: #fff; padding: 56px 0; }
.ur-ev-more__wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.ur-ev-more__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.ur-ev-more__heading {
  font-size: 22px; font-weight: 700; color: #1F2937; margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
}
.ur-ev-more__link { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: #2563EB; text-decoration: none; transition: gap .2s; }
.ur-ev-more__link:hover { gap: 10px; }
.ur-ev-more__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 768px) {
  .ur-ev-more__grid { grid-template-columns: 1fr; }
  .ur-ev-more__header { flex-direction: column; align-items: flex-start; gap: 8px; }
}
.ur-ev-more__card {
  background: #fff; border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06); overflow: hidden;
  transition: box-shadow .2s;
}
.ur-ev-more__card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.1); }
.ur-ev-more__img-wrap { position: relative; overflow: hidden; }
.ur-ev-more__img { width: 100%; height: 120px; object-fit: cover; display: block; transition: transform .3s; }
.ur-ev-more__card:hover .ur-ev-more__img { transform: scale(1.04); }
.ur-ev-more__img--placeholder { display: block; width: 100%; height: 120px; background: linear-gradient(135deg,#1a3a6e,#2c5faa); }
.ur-ev-more__date {
  position: absolute; top: 10px; left: 10px;
  background: #fff; padding: 4px 8px; border-radius: 6px;
  font-size: 11px; font-weight: 600; color: #111827;
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
}
.ur-ev-more__cat {
  position: absolute; bottom: 10px; left: 10px;
  background: #F3F4F6; color: #374151;
  font-size: 11px; font-weight: 500; padding: 3px 8px; border-radius: 99px;
}
.ur-ev-more__body { padding: 14px; }
.ur-ev-more__title { font-size: 14px; font-weight: 600; color: #111827; margin: 0 0 6px; }
.ur-ev-more__title a { color: inherit; text-decoration: none; }
.ur-ev-more__title a:hover { color: #2563EB; }
.ur-ev-more__meta { font-size: 12px; color: #6B7280; margin: 0; }
.ur-ev-more__meta i { color: #9CA3AF; margin-right: 4px; }

/* ── Event Cards (Prototype Design) ────────────────────────────────────── */
.ur-ec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ur-ec-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.ur-ec-grid--cols-1 { grid-template-columns: 1fr; }
@media (max-width: 1024px) { .ur-ec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .ur-ec-grid, .ur-ec-grid--cols-2 { grid-template-columns: 1fr; } }

.ur-ec-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: box-shadow 0.25s ease;
}
.ur-ec-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.10); }

.ur-ec-card__img-wrap {
    position: relative;
    height: 120px;
    overflow: hidden;
}
.ur-ec-card__img-wrap a { display: block; height: 100%; }
.ur-ec-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.ur-ec-card:hover .ur-ec-card__img { transform: scale(1.04); }
.ur-ec-card__img--placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a183d, #2c5faa);
}
.ur-ec-card__date-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #FFFFFF;
    color: #111827;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    pointer-events: none;
}
.ur-ec-card__cat-pill {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #F3F4F6;
    color: #374151;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    pointer-events: none;
}
.ur-ec-card__body { padding: 16px; }
.ur-ec-card__title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px;
    line-height: 1.4;
}
.ur-ec-card__title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.ur-ec-card__title a:hover { color: #2563EB; }
.ur-ec-card__meta {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ur-ec-card__meta i { font-size: 12px; color: #9CA3AF; flex-shrink: 0; }

/* ── Sidebar avatar stack update ────────────────────────────────────────── */
.ur-ev-rsvp__badge--green {
    background-color: #E6F9EC;
    color: #17A055;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}
.ur-ev-rsvp__attendees-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.ur-ev-rsvp__attendees-title { font-size: 13px; font-weight: 600; color: #111827; }
.ur-ev-rsvp__attendees-link { font-size: 13px; color: #2563EB; text-decoration: none; }
.ur-ev-rsvp__attendees-link:hover { text-decoration: underline; }
.ur-ev-rsvp__av-stack { display: flex; align-items: center; overflow: hidden; flex-shrink: 0; }
.ur-ev-rsvp__av-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    object-fit: cover;
    margin-left: -12px;
}
.ur-ev-rsvp__av-img:first-child { margin-left: 0; }
.ur-ev-rsvp__av-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F3F4F6;
    border: 2px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: #6B7280;
    margin-left: -12px;
    flex-shrink: 0;
}

/* ── Community page gallery (page-id-32) ───────────────────────────────── */
.page-id-32 .elementor-widget-image-gallery .gallery {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    float: none !important;
}
/* Kill float clearfix that fights grid layout */
.page-id-32 .elementor-widget-image-gallery .gallery::after,
.page-id-32 .elementor-widget-image-gallery .gallery::before {
    display: none !important;
}
.page-id-32 .elementor-widget-image-gallery figure.gallery-item {
    display: block !important;
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 10px;
    box-sizing: border-box !important;
}
.page-id-32 .elementor-widget-image-gallery .gallery-icon {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}
.page-id-32 .elementor-widget-image-gallery .gallery-icon a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}
.page-id-32 .elementor-widget-image-gallery .gallery-icon img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    margin: 0 !important;
    border-radius: 0 !important;
}
@media (max-width: 768px) {
    .page-id-32 .elementor-widget-image-gallery .gallery {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ─── Events Page (ID 43) Elementor Hero Overrides ──────────────────────── */

/* "EVENTS" badge: swap near-black (#0D1015) for brand blue pill */
.elementor-43 .elementor-element.elementor-element-7ba6da9 {
  background-color: rgba(37, 99, 235, 0.92) !important;
  border-radius: 20px !important;
  display: inline-flex !important;
  align-self: flex-start !important;
  width: auto !important;
  max-width: fit-content !important;
}

/* "Browse Events" button — keep blue, ensure visibility */
.elementor-43 .elementor-element.elementor-element-52db860 .elementor-button {
  background-color: #2563EB !important;
  border-color: #2563EB !important;
  color: #fff !important;
  font-weight: 600 !important;
}
.elementor-43 .elementor-element.elementor-element-52db860 .elementor-button:hover {
  background-color: #1E40AF !important;
  border-color: #1E40AF !important;
}

/* "Host an Event" button — white outline on hero for readability */
.elementor-43 .elementor-element.elementor-element-6f04528 .elementor-button {
  background: transparent !important;
  border-color: rgba(255,255,255,0.85) !important;
  color: #fff !important;
  font-weight: 600 !important;
}
.elementor-43 .elementor-element.elementor-element-6f04528 .elementor-button:hover {
  background: rgba(255,255,255,0.15) !important;
  border-color: #fff !important;
}

/* ─── Write Story Page (ID 74) — Center form & step progress ────────────── */

/* Form main area: force full-width centering */
.elementor-74 .elementor-element.elementor-element-2a4198a {
  width: 100% !important;
  max-width: 840px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

/* Step progress footer bar: stretch to full width */
.elementor-74 .elementor-element.elementor-element-3181890,
.elementor-74 .elementor-element.elementor-element-fbf7186 {
  width: 100% !important;
  display: flex !important;
}
.elementor-74 .elementor-element.elementor-element-bc832fc {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
.elementor-74 .elementor-element.elementor-element-1840d04 {
  width: 100% !important;
  max-width: 840px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: flex !important;
  justify-content: center !important;
}
/* Row holding the three step items */
.elementor-74 .elementor-element.elementor-element-40c237d {
  width: 100% !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 16px !important;
}

/* ─── Stories Page (ID 21) — Hero Badge ─────────────────────────────────── */
.elementor-21 .elementor-element.elementor-element-7fcb83d {
  background-color: rgba(37, 99, 235, 0.92) !important;
  border-radius: 20px !important;
  display: inline-flex !important;
  align-self: flex-start !important;
  width: auto !important;
  max-width: fit-content !important;
  padding: 6px 14px !important;
}
.elementor-21 .elementor-element.elementor-element-7fcb83d .elementor-heading-title {
  color: #fff !important;
}

/* ─── Sitewide Icon Fixes ────────────────────────────────────────────────── */

/* Font Awesome: add required prefix classes via CSS content for bare fa- classes */
i[class*="fa-facebook-f"]  { font-family: "Font Awesome 6 Brands", "FontAwesome" !important; }
i[class*="fa-instagram"]   { font-family: "Font Awesome 6 Brands", "FontAwesome" !important; }
i[class*="fa-envelope"]    { font-family: "Font Awesome 6 Free", "FontAwesome" !important; font-weight: 400 !important; }
i[class*="fa-user"]        { font-family: "Font Awesome 6 Free", "FontAwesome" !important; font-weight: 900 !important; }

/* Header profile button (8a0708a) — force 40×40 circle, center icon */
.elementor-element.elementor-element-8a0708a {
  height: 40px !important;
}
.elementor-element.elementor-element-8a0708a .elementor-button {
  width: 40px !important;
  height: 40px !important;
  min-height: 40px !important;
  border-radius: 50% !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: 1.5px solid rgba(255,255,255,0.55) !important;
}
.elementor-element.elementor-element-8a0708a .elementor-button .elementor-button-content-wrapper,
.elementor-element.elementor-element-8a0708a .elementor-button .elementor-button-text {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  line-height: 1 !important;
}

/* Footer social icon buttons (f40136b=FB, ad4e26f=IG, bd33082=Email) */
.elementor-element.elementor-element-f40136b .elementor-button,
.elementor-element.elementor-element-ad4e26f .elementor-button,
.elementor-element.elementor-element-bd33082 .elementor-button {
  width: 40px !important;
  height: 40px !important;
  min-height: 40px !important;
  border-radius: 50% !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.elementor-element.elementor-element-f40136b .elementor-button-content-wrapper,
.elementor-element.elementor-element-ad4e26f .elementor-button-content-wrapper,
.elementor-element.elementor-element-bd33082 .elementor-button-content-wrapper,
.elementor-element.elementor-element-f40136b .elementor-button-text,
.elementor-element.elementor-element-ad4e26f .elementor-button-text,
.elementor-element.elementor-element-bd33082 .elementor-button-text {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  line-height: 1 !important;
}

/* Home page video play button (26605fb) — make a proper circle */
.elementor-15 .elementor-element.elementor-element-26605fb .elementor-button {
  width: 72px !important;
  height: 72px !important;
  min-height: 72px !important;
  border-radius: 50% !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(37, 99, 235, 0.92) !important;
  border: 3px solid rgba(255,255,255,0.6) !important;
  transform: translate(-50%, -50%) !important;
}
.elementor-15 .elementor-element.elementor-element-26605fb .e-font-icon-svg {
  display: block !important;
}
.elementor-15 .elementor-element.elementor-element-26605fb .elementor-button-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
/* ::after already creates a CSS triangle; just ensure centering */
.elementor-15 .elementor-element.elementor-element-26605fb .elementor-button::after {
  margin-left: 4px !important;
}

/* ─── Footer ────────────────────────────────────────────────────────────────── */
.ur-footer { background: #0a183d; color: #fff; padding: 56px 0 0; font-family: 'Inter', sans-serif; }
.ur-footer__wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.ur-footer__top { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
@media (max-width: 768px) { .ur-footer__top { grid-template-columns: 1fr; } }

.ur-footer__logo { color: #fff; font-size: 22px; font-weight: 800; letter-spacing: -0.5px; text-decoration: none; }
.ur-footer__tagline { color: #c9a55a; font-size: 13px; font-weight: 600; margin: 4px 0 0; }
.ur-footer__desc { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.6; margin: 12px 0 0; max-width: 320px; }

.ur-footer__label { font-size: 16px; font-weight: 600; margin: 0 0 12px; color: #fff; }
.ur-footer__nav-wrap { padding: 24px 0; }
.ur-footer__nav { display: flex; flex-wrap: wrap; gap: 12px 28px; list-style: none; margin: 0; padding: 0; justify-content: center; }
.ur-footer__nav li a { color: rgba(255,255,255,.75); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.ur-footer__nav li a:hover { color: #fff; }

.ur-footer__bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1); }
@media (max-width: 640px) { .ur-footer__bottom { flex-direction: column; gap: 12px; text-align: center; } }
.ur-footer__copy { font-size: 13px; color: rgba(255,255,255,.6); margin: 0; }

.ur-footer__social { display: flex; gap: 10px; }
.ur-footer__social-link { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; transition: all .2s; text-decoration: none; }
.ur-footer__social-link:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); color: #fff; }
.ur-footer__social-link--fb:hover { background: #1877F2; border-color: #1877F2; }
.ur-footer__social-link--ig:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); border-color: transparent; }

/* ─── Contact Form 7 (Newsletter) ───────────────────────────────────────────── */
.ur-footer__newsletter .wpcf7 { max-width: 360px; }
.ur-footer__newsletter .wpcf7-form { display: flex; gap: 10px; }
.ur-footer__newsletter .wpcf7-form-control-wrap { flex: 1; }
.ur-footer__newsletter input[type=email] {
  width: 100%; padding: 12px 16px; border: none; border-radius: 8px;
  background: rgba(255,255,255,.12); color: #fff; font-size: 14px;
}
.ur-footer__newsletter input[type=email]::placeholder { color: rgba(255,255,255,.6); }
.ur-footer__newsletter input[type=email]:focus { outline: 2px solid #3b6cf7; background: rgba(255,255,255,.18); }
.ur-footer__newsletter input[type=submit],
.ur-footer__newsletter button.wpcf7-submit {
  padding: 12px 20px; border: none; border-radius: 8px;
  background: #3b6cf7; color: #fff; font-weight: 600; cursor: pointer; transition: background .2s;
}
.ur-footer__newsletter input[type=submit]:hover,
.ur-footer__newsletter button.wpcf7-submit:hover { background: #2953cc; }
.ur-footer__newsletter .wpcf7-response-output { margin: 10px 0 0; font-size: 13px; color: rgba(255,255,255,.9); }

/* ─── Lightbox Gallery ─────────────────────────────────────────────────────── */
.ur-lightbox {
    position: fixed; inset: 0; z-index: 9999;
    display: none; align-items: center; justify-content: center;
}
.ur-lightbox.ur-lightbox--active { display: flex; }

.ur-lightbox__overlay {
    position: absolute; inset: 0;
    background: rgba(10, 24, 61, 0.95);
    backdrop-filter: blur(8px);
}

.ur-lightbox__container {
    position: relative;
    max-width: 90vw; max-height: 90vh;
    display: flex; flex-direction: column; align-items: center;
}

.ur-lightbox__content {
    position: relative;
    max-width: 100%; max-height: 85vh;
    display: flex; align-items: center; justify-content: center;
}

.ur-lightbox__img {
    max-width: 100%; max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.ur-lightbox__close {
    position: absolute; top: -50px; right: 0;
    width: 44px; height: 44px;
    background: transparent; border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: #fff; font-size: 28px; line-height: 1;
    cursor: pointer; transition: all 0.2s;
    display: flex; align-items: center; justify-content: center;
}
.ur-lightbox__close:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

.ur-lightbox__prev,
.ur-lightbox__next {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 50px; height: 80px;
    background: rgba(255,255,255,0.1);
    border: none; border-radius: 8px;
    color: #fff; font-size: 36px;
    cursor: pointer; transition: all 0.2s;
    display: flex; align-items: center; justify-content: center;
}
.ur-lightbox__prev { left: -70px; }
.ur-lightbox__next { right: -70px; }

.ur-lightbox__prev:hover,
.ur-lightbox__next:hover {
    background: rgba(255,255,255,0.2);
}

@media (max-width: 900px) {
    .ur-lightbox__prev,
    .ur-lightbox__next {
        width: 40px; height: 60px;
        font-size: 24px;
    }
    .ur-lightbox__prev { left: 10px; }
    .ur-lightbox__next { right: 10px; }
    .ur-lightbox__close { top: 10px; right: 10px; }
}

.ur-lightbox__counter {
    position: absolute; bottom: -40px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    background: rgba(0,0,0,0.3);
    padding: 6px 16px;
    border-radius: 20px;
}

/* ── YouTube video lightbox ──────────────────────────────────────────────── */
.ur-video-lb {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.ur-video-lb--active {
    display: flex;
}
.ur-video-lb__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    cursor: pointer;
}
.ur-video-lb__box {
    position: relative;
    z-index: 1;
    width: 90vw;
    max-width: 900px;
}
.ur-video-lb__close {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 10px;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.ur-video-lb__close:hover { opacity: 1; }
.ur-video-lb__ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.ur-video-lb__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Gallery images cursor pointer */
.elementor-image img,
.softlite-image img,
[data-ur-lightbox] img {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}
.elementor-image img:hover,
.softlite-image img:hover {
    transform: scale(1.02);
}

/* ══════════════════════════════════════════════════════════════════════════
   SITE HEADER — hardcoded (header.php)
   ══════════════════════════════════════════════════════════════════════════ */

.ur-header {
    position: sticky;
    top: 0;
    z-index: 9000;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.ur-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    gap: 24px;
}

/* Logo */
.ur-header__logo-link {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.ur-header__logo {
    height: 68px;
    width: auto;
    display: block;
}

/* Desktop nav */
.ur-header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.ur-header__nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.ur-header__nav-list li { margin: 0; padding: 0; }
.ur-header__nav-list a {
    font-size: 15px;
    font-weight: 500;
    color: #1a2238;
    text-decoration: none;
    transition: color 0.2s;
}
.ur-header__nav-list a:hover { color: #2563eb; }

/* Actions group */
.ur-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Join Us button */
.ur-header__btn-join {
    display: inline-flex;
    align-items: center;
    padding: 9px 22px;
    background: #2563eb;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}
.ur-header__btn-join:hover { background: #1d4ed8; color: #fff; }

/* Profile icon */
.ur-header__btn-profile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #374151;
    text-decoration: none;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
}
.ur-header__btn-profile:hover { background: #f3f4f6; color: #2563eb; }
.ur-header__btn-profile svg { display: block; }

/* Hamburger — hidden on desktop, visible on tablet + mobile */
.ur-header__hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    color: #374151;
    padding: 0;
    transition: background 0.2s;
}
.ur-header__hamburger:hover { background: #f3f4f6; }
.ur-header__hamburger svg { display: block; }

/* Show hamburger only on ≤1024px */
@media (max-width: 1024px) {
    .ur-header__nav { display: none; }
    .ur-header__hamburger { display: inline-flex; }
}
@media (max-width: 600px) {
    .ur-header__inner { padding: 0 16px; }
    .ur-header__logo { height: 56px; }
}

/* ── Mobile slide drawer ──────────────────────────────────────────────────── */
.ur-mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 0 0 32px;
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}
.ur-mobile-nav.is-open {
    transform: translateX(0);
}
.ur-mobile-nav[aria-hidden="true"] { pointer-events: none; }
.ur-mobile-nav.is-open            { pointer-events: auto; }

/* Drawer top row: logo + close */
.ur-mobile-nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}
.ur-mobile-nav__logo {
    height: 44px;
    width: auto;
}
.ur-mobile-nav__close {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #374151;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s;
}
.ur-mobile-nav__close:hover { background: #f3f4f6; }

/* Drawer nav links */
.ur-mobile-nav__list {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    flex: 1;
}
.ur-mobile-nav__list li { margin: 0; padding: 0; }
.ur-mobile-nav__list a {
    display: block;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #1a2238;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.15s, color 0.15s;
}
.ur-mobile-nav__list a:hover { background: #f9fafb; color: #2563eb; }

/* Drawer Join Us */
.ur-mobile-nav__join-btn {
    display: block;
    margin: 20px 24px 0;
    padding: 12px;
    background: #2563eb;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}
.ur-mobile-nav__join-btn:hover { background: #1d4ed8; color: #fff; }

/* ── Overlay behind drawer ─────────────────────────────────────────────── */
.ur-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    cursor: pointer;
}
.ur-mobile-overlay.is-active { display: block; }

/* ══════════════════════════════════════════════════════════════════════════
   SITE FOOTER — hardcoded (footer.php)
   ══════════════════════════════════════════════════════════════════════════ */

.ur-footer {
    background: #0d1b2a;
    color: #c9d4e0;
    padding: 60px 0 0;
    font-size: 15px;
    line-height: 1.7;
}

.ur-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 48px;
}

/* Col 1 — brand */
.ur-footer__brand-logo {
    height: 68px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}
.ur-footer__tagline {
    color: #94a3b8;
    font-size: 14px;
    margin: 0 0 20px;
    max-width: 280px;
}
.ur-footer__socials {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.ur-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #c9d4e0;
    text-decoration: none;
    font-size: 15px;
    transition: background 0.2s, color 0.2s;
}
.ur-footer__socials a:hover { background: #2563eb; color: #fff; }

/* Col 2-3 — link columns */
.ur-footer__col-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    margin: 0 0 16px;
}
.ur-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ur-footer__links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.ur-footer__links a:hover { color: #ffffff; }

/* Col 4 — newsletter */
.ur-footer__newsletter-text {
    color: #94a3b8;
    font-size: 14px;
    margin: 0 0 16px;
}
.ur-footer__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ur-footer__input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.ur-footer__input::placeholder { color: #64748b; }
.ur-footer__input:focus { border-color: #2563eb; }
.ur-footer__subscribe {
    padding: 10px 18px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.ur-footer__subscribe:hover { background: #1d4ed8; }

/* Bottom bar */
.ur-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 24px;
    text-align: center;
    font-size: 13px;
    color: #64748b;
    max-width: 1280px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .ur-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}
@media (max-width: 600px) {
    .ur-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 16px 40px;
    }
    .ur-footer { padding-top: 40px; }
}

/* ── Header: Responsive Hamburger ──────────────────────────────────────────
   Desktop (≥1025px): full nav visible, hamburger hidden
   Tablet  (768–1024px): hamburger visible, desktop nav hidden
   Mobile  (<768px): hamburger visible, desktop nav hidden
   ────────────────────────────────────────────────────────────────────────── */

/* Hide desktop nav on tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    nav.nav-desktop-menu { display: none !important; }
    .elementor-122 .elementor-element.elementor-element-938bbc9 { display: flex !important; }
}

/* Show desktop nav, hide hamburger at true desktop */
@media (min-width: 1025px) {
    nav.nav-desktop-menu { display: flex !important; }
    .elementor-122 .elementor-element.elementor-element-938bbc9 { display: none !important; }
}

/* ── Mobile/Tablet: Slide-from-right drawer ───────────────────────────── */
.nav-mobile-menu {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 280px !important;
    max-width: 85vw !important;
    background: #fff !important;
    z-index: 9997 !important;
    transform: translateX(0) !important;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow-y: auto !important;
    padding: 72px 0 32px !important;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.18) !important;
    border-top: none !important;
}

/* Hidden state: slide off to the right */
.nav-mobile-menu.softlite-hidden {
    display: block !important;
    transform: translateX(105%) !important;
}

/* Desktop: always off-screen (hamburger is hidden, but just in case) */
@media (min-width: 1025px) {
    .nav-mobile-menu,
    .nav-mobile-menu.softlite-hidden {
        transform: translateX(105%) !important;
        pointer-events: none !important;
    }
}

/* Mobile menu list styling */
.nav-mobile-list {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}
.nav-mobile-item {
    border-bottom: 1px solid #f1f5f9 !important;
}
.nav-mobile-link {
    display: block !important;
    padding: 14px 24px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #0a183d !important;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s !important;
}
.nav-mobile-link:hover,
.nav-mobile-link.active {
    background: #f0f4ff !important;
    color: #1b4bff !important;
}

/* Backdrop overlay */
.ur-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 24, 61, 0.5);
    z-index: 9996;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.ur-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Close button inside drawer */
.ur-nav-close {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    width: 36px !important;
    height: 36px !important;
    background: #f1f5f9 !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 22px !important;
    line-height: 1 !important;
    color: #0a183d !important;
    transition: background 0.2s !important;
    z-index: 2 !important;
}
.ur-nav-close:hover { background: #dde3f5 !important; }

/* ── Resource Section Header ────────────────────────────────────────────── */
.ur-rc-section-header {
    margin-bottom: 40px;
}
.ur-rc-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #D69E2E;
    margin-bottom: 12px;
}
.ur-rc-heading {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
    line-height: 1.2;
}

/* ── Resource Cards (prototype design) ─────────────────────────────────── */
.ur-rc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ur-rc-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.ur-rc-grid--cols-1 { grid-template-columns: 1fr; }
@media (max-width: 1024px) { .ur-rc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .ur-rc-grid, .ur-rc-grid--cols-2 { grid-template-columns: 1fr; } }

.ur-rc-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.ur-rc-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    transform: translateY(-3px);
}
.ur-rc-card__img-wrap { position: relative; overflow: hidden; }
.ur-rc-card__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.ur-rc-card:hover .ur-rc-card__img { transform: scale(1.04); }
.ur-rc-card__img--placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #1a3a6e, #2c5faa);
}
.ur-rc-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ur-rc-card__body { padding: 20px; }
.ur-rc-card__title {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 8px;
    line-height: 1.4;
}
.ur-rc-card__title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.ur-rc-card__title a:hover { color: #2563EB; }
.ur-rc-card__excerpt {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.625;
    margin: 0 0 16px;
}
.ur-rc-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563EB;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.ur-rc-card__link:hover { gap: 12px; color: #2563EB; }
.ur-rc-card__link i { font-size: 12px; }

/* ── Single Resource Page ───────────────────────────────────────────────── */
#ur-resource-single { background: #F9FAFB; }

/* Hero */
.ur-rs-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
    background: #0a183d;
}
.ur-rs-hero__bg { position: absolute; inset: 0; }
.ur-rs-hero__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ur-rs-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.28) 100%);
}
.ur-rs-hero__content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
}
.ur-rs-hero__inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 44px;
}
.ur-rs-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.ur-rs-breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.ur-rs-breadcrumb a:hover { color: #fff; }
.ur-rs-breadcrumb i { font-size: 10px; opacity: 0.7; }
.ur-rs-hero__badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.ur-rs-hero__title {
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 16px;
    max-width: 700px;
}
.ur-rs-hero__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    flex-wrap: wrap;
}
.ur-rs-hero__meta i { margin-right: 5px; }
.ur-rs-sep { opacity: 0.4; }

/* Body */
.ur-rs-body { padding: 48px 0 72px; }
.ur-rs-body__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

/* Content column */
.ur-rs-content { flex: 1; min-width: 0; }
.ur-rs-content__text {
    background: #fff;
    border-radius: 10px;
    padding: 36px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    font-size: 16px;
    line-height: 1.85;
    color: #374151;
    margin-bottom: 24px;
}
.ur-rs-content__text h2,
.ur-rs-content__text h3 { color: #111827; font-weight: 600; margin: 28px 0 12px; }
.ur-rs-content__text p { margin-bottom: 16px; }
.ur-rs-content__text ul,
.ur-rs-content__text ol { padding-left: 24px; margin-bottom: 16px; }
.ur-rs-content__text li { margin-bottom: 8px; }
.ur-rs-content__text a { color: #2563EB; }

/* External CTA */
.ur-rs-cta-bar { margin-bottom: 24px; }
.ur-rs-cta-bar__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2563EB;
    color: #fff;
    padding: 13px 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s;
}
.ur-rs-cta-bar__btn:hover { background: #1E40AF; color: #fff; }

/* Feedback bar */
.ur-rs-feedback {
    background: #EFF6FF;
    border-radius: 10px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.ur-rs-feedback__text h3 { font-size: 18px; font-weight: 600; color: #111827; margin: 0 0 4px; }
.ur-rs-feedback__text p  { font-size: 14px; color: #6B7280; margin: 0; }
.ur-rs-feedback__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Buttons */
.ur-rs-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.ur-rs-btn--primary { background: #2563EB; color: #fff !important; }
.ur-rs-btn--primary:hover { background: #1E40AF; }
.ur-rs-btn--outline { background: transparent; border: 1.5px solid #2563EB; color: #2563EB; }
.ur-rs-btn--outline:hover { background: #EFF6FF; }
.ur-rs-btn--full { width: 100%; justify-content: center; }

/* Sidebar */
.ur-rs-sidebar {
    width: 290px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Widgets */
.ur-rs-widget {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.ur-rs-widget--cta { background: #F1F5F9; }
.ur-rs-widget__title { font-size: 15px; font-weight: 600; color: #111827; margin: 0 0 16px; }
.ur-rs-widget__rows  { display: flex; flex-direction: column; gap: 14px; }
.ur-rs-widget__row   { display: flex; align-items: center; gap: 12px; }
.ur-rs-widget__icon  {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #EFF6FF;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}
.ur-rs-widget__label { font-size: 11px; color: #6B7280; margin: 0 0 2px; }
.ur-rs-widget__value { font-size: 13px; font-weight: 500; color: #111827; margin: 0; }
.ur-rs-widget__link  { font-size: 13px; color: #2563EB; font-weight: 500; text-decoration: none; }
.ur-rs-widget__link:hover { text-decoration: underline; }
.ur-rs-widget__desc  { font-size: 13px; color: #6B7280; margin: 0 0 16px; line-height: 1.5; }
.ur-rs-widget__more  {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #2563EB;
    font-weight: 500;
    text-decoration: none;
    margin-top: 14px;
    transition: gap 0.2s;
}
.ur-rs-widget__more:hover { gap: 10px; }

/* Related */
.ur-rs-related { display: flex; flex-direction: column; gap: 14px; }
.ur-rs-related__item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    align-items: flex-start;
    transition: opacity 0.2s;
}
.ur-rs-related__item:hover { opacity: 0.8; }
.ur-rs-related__img {
    width: 64px; height: 48px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    display: block;
}
.ur-rs-related__img--ph {
    width: 64px; height: 48px;
    border-radius: 6px;
    background: linear-gradient(135deg, #1a3a6e, #2c5faa);
    flex-shrink: 0;
}
.ur-rs-related__title {
    font-size: 13px;
    font-weight: 500;
    color: #111827;
    line-height: 1.4;
    margin: 0;
    transition: color 0.2s;
}
.ur-rs-related__item:hover .ur-rs-related__title { color: #2563EB; }

/* Responsive */
@media (max-width: 900px) {
    .ur-rs-body__inner { flex-direction: column; }
    .ur-rs-sidebar { width: 100%; }
    .ur-rs-hero { height: 320px; }
}
@media (max-width: 600px) {
    .ur-rs-hero { height: 280px; }
    .ur-rs-content__text { padding: 20px; }
    .ur-rs-feedback { flex-direction: column; align-items: flex-start; }
}

/* ─── Story Card v2 (Prototype Match) ──────────────────────────────────────── */
.ur-sc {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ur-sc:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }

.ur-sc__img-wrap { position: relative; overflow: hidden; flex-shrink: 0; }
.ur-sc__img-link { display: block; }
.ur-sc__img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  transition: transform .35s ease;
}
.ur-sc:hover .ur-sc__img { transform: scale(1.04); }
.ur-sc__img--placeholder {
  aspect-ratio: 4/3; display: block;
  background: linear-gradient(135deg, #0a183d 0%, #1e3a6e 100%);
}

.ur-sc__badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 4px;
  letter-spacing: .02em;
}
.ur-sc__badge--new-beginnings  { background: #E0F2FF; color: #0052FF; }
.ur-sc__badge--homesickness    { background: #FFF4E5; color: #92400E; }
.ur-sc__badge--friendship      { background: #E6F0FF; color: #0052FF; }
.ur-sc__badge--growth          { background: #DCFCE7; color: #166534; }
.ur-sc__badge--personal-growth { background: #DCFCE7; color: #166534; }
.ur-sc__badge--culture         { background: #F3E8FF; color: #6D28D9; }
.ur-sc__badge--career          { background: #ECFDF5; color: #059669; }
.ur-sc__badge--new-connections { background: #E6F0FF; color: #0052FF; }
.ur-sc__badge--default         { background: rgba(0,82,255,.1); color: #0052FF; }

.ur-sc__readtime {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,.3); color: #fff;
  font-size: 11px; font-weight: 500;
  padding: 4px 8px; border-radius: 4px;
  backdrop-filter: blur(2px);
}

.ur-sc__body {
  padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.ur-sc__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px; font-weight: 700; line-height: 1.3;
  color: #111827; margin: 0;
}
.ur-sc__title a { color: inherit; text-decoration: none; }
.ur-sc__title a:hover { color: #0052FF; }

.ur-sc__excerpt {
  font-size: 13px; color: #6B7280; line-height: 1.65;
  margin: 0; flex: 1; font-style: italic;
}

.ur-sc__footer {
  display: flex; align-items: center;
  justify-content: space-between; margin-top: auto; padding-top: 4px;
}
.ur-sc__author { display: flex; align-items: center; gap: 8px; }
.ur-sc__avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: #E5E7EB; border: none;
  display: flex; align-items: center; justify-content: center;
  color: #9CA3AF; font-size: 12px; flex-shrink: 0;
}
.ur-sc__byline { font-size: 13px; font-weight: 500; color: #111827; }
.ur-sc__read-link {
  font-size: 13px; font-weight: 600; color: #0052FF;
  text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
  transition: gap .2s ease; white-space: nowrap; flex-shrink: 0;
}
.ur-sc__read-link:hover { gap: 8px; color: #0041CC; }
.ur-sc__read-link i { font-size: 11px; }

/* Grid wrapper for .ur-sc cards */
.ur-sc-grid { display: grid; gap: 24px; }
.ur-sc-grid--3 { grid-template-columns: repeat(3, 1fr); }
.ur-sc-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1024px) {
  .ur-sc-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ur-sc-grid--2, .ur-sc-grid--3 { grid-template-columns: 1fr; }
}

/* ─── Stories Page ──────────────────────────────────────────────────────────── */
.ur-stories-hero {
  position: relative; height: 500px; overflow: hidden;
}
.ur-stories-hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.ur-stories-hero__gradient {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,rgba(255,255,255,.95) 0%,rgba(255,255,255,.7) 50%,transparent 100%);
}
.ur-stories-hero__content {
  position: relative; height: 100%;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center;
}
.ur-stories-hero__inner { max-width: 600px; padding: 80px 0; }
.ur-stories-hero__label {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: #6B7280; margin-bottom: 14px;
}
.ur-stories-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 48px); font-weight: 700;
  color: #111827; margin: 0 0 12px; line-height: 1.2;
}
.ur-stories-hero__title span { color: #0052FF; }
.ur-stories-hero__desc { font-size: 16px; color: #6B7280; line-height: 1.65; max-width: 500px; margin: 0; }

.ur-stories-filter {
  background: #fff; border-bottom: 1px solid #E5E7EB; padding: 24px 0;
}
.ur-stories-filter__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
}
.ur-stories-filter__search {
  position: relative; width: 280px; flex-shrink: 0;
}
.ur-stories-filter__search i {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: #9CA3AF; font-size: 13px;
}
.ur-stories-filter__input {
  width: 100%; height: 40px; padding: 0 16px 0 40px;
  background: #F3F4F6; border: 1px solid #E5E7EB; border-radius: 8px;
  font-size: 14px; color: #111827; font-family: inherit;
  transition: border-color .2s;
}
.ur-stories-filter__input:focus { outline: none; border-color: #0052FF; background: #fff; }
.ur-stories-filter__input::placeholder { color: #9CA3AF; }
.ur-stories-filter__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.ur-fp {
  padding: 7px 16px; border-radius: 999px; font-size: 13px; font-weight: 500;
  border: 1px solid #E5E7EB; background: #fff; color: #1F2937;
  cursor: pointer; transition: all .2s; font-family: inherit;
}
.ur-fp:hover { border-color: #0052FF; color: #0052FF; }
.ur-fp.is-active { background: #0052FF; color: #fff; border-color: #0052FF; }
.ur-stories-filter__sort { margin-left: auto; }
.ur-stories-filter__sort select {
  height: 40px; padding: 0 36px 0 14px; background: #fff;
  border: 1px solid #E5E7EB; border-radius: 8px;
  font-size: 14px; color: #374151; font-family: inherit; cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center; background-size: 18px;
}
.ur-stories-filter__sort select:focus { outline: none; border-color: #0052FF; }
@media (max-width: 640px) {
  .ur-stories-filter__search { width: 100%; }
  .ur-stories-filter__sort { margin-left: 0; }
}

.ur-stories-main { padding: 64px 0 80px; background: #FCF9F3; }
.ur-stories-main__wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.ur-stories-empty {
  grid-column: 1/-1; text-align: center;
  padding: 60px 24px; color: #6B7280; font-size: 15px;
}

.ur-stories-pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-top: 48px;
}
.ur-stories-pagination .page-numbers {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border-radius: 6px; font-size: 14px; font-weight: 500;
  text-decoration: none; transition: all .2s;
  background: #F3F4F6; color: #1F2937;
}
.ur-stories-pagination .page-numbers:hover { background: #E5E7EB; }
.ur-stories-pagination .page-numbers.current { background: #0052FF; color: #fff; }
.ur-stories-pagination .page-numbers.dots { background: transparent; pointer-events: none; }
.ur-stories-pagination .page-numbers.prev,
.ur-stories-pagination .page-numbers.next {
  width: 34px; height: 34px; border-radius: 50%;
  background: #E5E7EB; color: #6B7280; font-size: 12px;
}
.ur-stories-pagination .page-numbers.prev:hover,
.ur-stories-pagination .page-numbers.next:hover { background: #D1D5DB; color: #111827; }

.ur-stories-cta { padding: 64px 0 80px; background: #FCF9F3; }
.ur-stories-cta__wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.ur-stories-cta__box {
  position: relative; border-radius: 16px; overflow: hidden;
}
.ur-stories-cta__bg {
  position: absolute; inset: 0;
}
.ur-stories-cta__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .2; }
.ur-stories-cta__gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0033CC 0%, #0052FF 100%);
}
.ur-stories-cta__content {
  position: relative; padding: 64px 48px;
}
.ur-stories-cta__inner { max-width: 560px; }
.ur-stories-cta__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 36px); font-weight: 700;
  color: #fff; margin: 0 0 14px; line-height: 1.25;
}
.ur-stories-cta__desc { font-size: 16px; color: #E6EFFF; margin: 0 0 28px; line-height: 1.6; }
.ur-stories-cta__btns { display: flex; flex-wrap: wrap; gap: 14px; }
.ur-stories-cta__btn-gold {
  display: inline-block; background: #FFC726; color: #1F2937;
  padding: 13px 26px; border-radius: 8px; font-size: 15px; font-weight: 600;
  text-decoration: none; transition: background .2s;
}
.ur-stories-cta__btn-gold:hover { background: #E6B523; }
.ur-stories-cta__btn-outline {
  display: inline-block; border: 2px solid #fff; color: #fff;
  padding: 11px 24px; border-radius: 8px; font-size: 15px; font-weight: 600;
  text-decoration: none; transition: all .2s;
}
.ur-stories-cta__btn-outline:hover { background: #fff; color: #0A1733; }
@media (max-width: 640px) {
  .ur-stories-cta__content { padding: 40px 24px; }
}

/* ─── Related Stories (Single Post) ─────────────────────────────────────────── */
.ur-related {
  background: #FCF9F5; padding: 64px 0 80px;
}
.ur-related__wrap {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.ur-related__head {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; margin-bottom: 40px; gap: 12px;
}
.ur-related__label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: #6B7280; margin-bottom: 8px;
}
.ur-related__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 28px); font-weight: 600;
  color: #0A1733; margin: 0; line-height: 1.25;
}
.ur-related__all {
  display: inline-flex; align-items: center; gap: 0;
  font-size: 14px; font-weight: 600; color: #0052FF;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
}
.ur-related__all::after {
  content: '\2192';
  display: inline-block; margin-left: 8px;
  transition: transform .2s ease;
}
.ur-related__all:hover::after { transform: translateX(5px); }

.ur-related__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .ur-related__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .ur-related__grid { grid-template-columns: 1fr; } }

.ur-rel-card {
  background: #fff; border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ur-rel-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }

.ur-rel-card__img-wrap { position: relative; overflow: hidden; flex-shrink: 0; }
.ur-rel-card__img-link { display: block; }
.ur-rel-card__img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block;
  transition: transform .35s ease;
}
.ur-rel-card:hover .ur-rel-card__img { transform: scale(1.04); }
.ur-rel-card__img--placeholder {
  aspect-ratio: 16/10; display: block;
  background: linear-gradient(135deg, #0a183d 0%, #1e3a6e 100%);
}
.ur-rel-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: #0052FF; color: #fff;
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 4px;
}

.ur-rel-card__body { padding: 20px; }
.ur-rel-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 600; color: #0A1733;
  line-height: 1.35; margin: 0 0 8px;
}
.ur-rel-card__title a { color: inherit; text-decoration: none; }
.ur-rel-card__title a:hover { color: #0052FF; }
.ur-rel-card__meta { font-size: 13px; color: #6B7280; line-height: 1.4; }

/* ─── Hero Slider Widget ────────────────────────────────────────────────────── */
.ur-hs {
  position: relative; width: 100%; height: 650px;
  overflow: hidden; background: #0a183d;
}
.ur-hs__track { position: relative; width: 100%; height: 100%; }

.ur-hs__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center center;
  opacity: 0; pointer-events: none;
  transition: opacity .7s ease;
}
.ur-hs__slide.is-active { opacity: 1; pointer-events: auto; }

.ur-hs__overlay {
  position: absolute; inset: 0;
  background: rgba(10,24,61,.58);
}

.ur-hs__content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center;
  padding: 0 60px;
}
.ur-hs__content--left   { justify-content: flex-start; }
.ur-hs__content--center { justify-content: center; text-align: center; }
.ur-hs__content--right  { justify-content: flex-end; }

.ur-hs__inner { max-width: 640px; width: 100%; }

.ur-hs__badge {
  display: inline-block; background: #0052FF; color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px;
  margin-bottom: 22px;
}

.ur-hs__heading {
  font-family: 'Playfair Display', serif;
  font-size: 54px; font-weight: 700; color: #fff;
  line-height: 1.15; margin: 0 0 18px;
}

.ur-hs__desc {
  font-size: 18px; color: rgba(255,255,255,.85);
  line-height: 1.65; margin: 0 0 32px;
  font-family: 'Inter', sans-serif;
}

.ur-hs__btns { display: flex; flex-wrap: wrap; gap: 14px; }
.ur-hs__content--center .ur-hs__btns { justify-content: center; }

.ur-hs__btn {
  display: inline-block;
  padding: 14px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none; cursor: pointer;
  border: 2px solid transparent;
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .2s ease;
}
.ur-hs__btn:hover { transform: translateY(-2px); }

.ur-hs__btn--primary { background: #0052FF; color: #fff; border-color: #0052FF; }
.ur-hs__btn--primary:hover { background: #0041CC; border-color: #0041CC; color: #fff; }

.ur-hs__btn--gold { background: #FFC726; color: #1F2937; border-color: #FFC726; }
.ur-hs__btn--gold:hover { background: #E6B523; border-color: #E6B523; color: #1F2937; }

.ur-hs__btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.9); }
.ur-hs__btn--outline:hover { background: #fff; color: #0A1733; border-color: #fff; }

/* Arrows */
.ur-hs__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 52px; height: 52px;
  background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.6);
  border-radius: 50%; color: #fff; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; line-height: 1;
  backdrop-filter: blur(4px);
  transition: background .22s ease, border-color .22s ease;
}
.ur-hs__arrow:hover { background: rgba(255,255,255,.3); border-color: #fff; }
.ur-hs__arrow--prev { left: 24px; }
.ur-hs__arrow--next { right: 24px; }

/* Dots */
.ur-hs__dots {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.ur-hs__dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: none; padding: 0; cursor: pointer;
  background: rgba(255,255,255,.35);
  transition: background .22s ease, transform .22s ease;
}
.ur-hs__dot.is-active { background: #fff; transform: scale(1.35); }

/* Responsive */
@media (max-width: 900px) {
  .ur-hs { height: 500px; }
  .ur-hs__heading { font-size: 38px; }
  .ur-hs__desc { font-size: 16px; }
  .ur-hs__content { padding: 0 32px; }
}
@media (max-width: 600px) {
  .ur-hs { height: 420px; }
  .ur-hs__heading { font-size: 28px; }
  .ur-hs__desc { font-size: 14px; margin-bottom: 22px; }
  .ur-hs__content { padding: 0 20px; }
  .ur-hs__btn { padding: 12px 20px; font-size: 14px; }
  .ur-hs__arrow { width: 40px; height: 40px; font-size: 16px; }
  .ur-hs__arrow--prev { left: 10px; }
  .ur-hs__arrow--next { right: 10px; }
  .ur-hs__badge { font-size: 10px; padding: 5px 12px; margin-bottom: 14px; }
}

/* ─── Section Wrapper (boxed) ───────────────────────────────────────────── */
.ur-section { padding: 64px 0; background: #fff; }
.ur-section__container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Section Header */
.ur-section__header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.ur-section__header-text { display: flex; flex-direction: column; gap: 8px; }
.ur-section__label { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #D4AF37; }
.ur-section__title { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3.5vw, 36px); font-weight: 700; color: #0A183D; margin: 0; line-height: 1.2; }
.ur-section__view-all { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: #1B4BFF; text-decoration: none; transition: gap .2s; white-space: nowrap; }
.ur-section__view-all:hover { gap: 10px; color: #1B4BFF; }
@media (max-width: 640px) { .ur-section__header { align-items: flex-start; flex-direction: column; } }

/* ─── Header User Dropdown ──────────────────────────────────────────────── */
.ur-header__user-menu { position: relative; }
.ur-header__user-btn {
    display: flex; align-items: center; gap: 8px;
    background: none; border: 1.5px solid rgba(0,0,0,.1);
    border-radius: 50px; padding: 5px 12px 5px 5px;
    cursor: pointer; font-family: 'Inter', sans-serif;
    font-size: 13px; font-weight: 500; color: inherit;
    transition: border-color .2s, background .2s;
}
.ur-header__user-btn:hover { background: rgba(47,91,234,.06); border-color: rgba(47,91,234,.3); }
.ur-header__user-avatar {
    width: 30px; height: 30px; border-radius: 50%;
    object-fit: cover; border: 2px solid rgba(47,91,234,.25);
}
.ur-header__user-name { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ur-header__dropdown {
    position: absolute; top: calc(100% + 10px); right: 0;
    background: #fff; border: 1px solid rgba(0,0,0,.08);
    border-radius: 16px; padding: 8px;
    min-width: 200px; box-shadow: 0 16px 48px rgba(0,0,0,.12);
    z-index: 9999; opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s, visibility .2s, transform .2s;
}
.ur-header__dropdown.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.ur-header__drop-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; border-radius: 10px;
    font-size: 13px; font-weight: 500; color: #1e293b;
    text-decoration: none; transition: background .15s, color .15s;
}
.ur-header__drop-item:hover { background: #f1f5f9; color: #2F5BEA; }
.ur-header__drop-item--danger { color: #e53e3e !important; }
.ur-header__drop-item--danger:hover { background: #fff5f5 !important; color: #c53030 !important; }
.ur-header__drop-divider { height: 1px; background: #f1f5f9; margin: 6px 0; }

/* ─── Global Smooth Scroll ──────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

/* ─── Global Scrollbar ──────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg,#93C5FD,#2563EB); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg,#60A5FA,#1D4ED8); }
::-webkit-scrollbar-corner { background: transparent; }

/* ─── Header Nav – Active / Current Page ────────────────────────────────── */
/* Match the theme's own hover color: rgb(27,75,255) = #1B4BFF              */
.current-menu-item > .nav-link,
.current-menu-ancestor > .nav-link,
.current-menu-parent > .nav-link {
  color: rgb(27, 75, 255) !important;
}
/* Show the same underline that appears on hover */
.current-menu-item > .nav-link::after,
.current-menu-ancestor > .nav-link::after,
.current-menu-parent > .nav-link::after {
  width: 100% !important;
}
/* Fallback – Elementor default nav-menu widget active classes */
.elementor-nav-menu .elementor-item-active,
.elementor-nav-menu .current-menu-item > .elementor-item,
.elementor-nav-menu .current-menu-ancestor > .elementor-item {
  color: rgb(27, 75, 255) !important;
  font-weight: 600 !important;
}
.elementor-nav-menu--main .elementor-item-active::after,
.elementor-nav-menu--main .current-menu-item > .elementor-item::after,
.elementor-nav-menu--main .current-menu-ancestor > .elementor-item::after {
  background-color: rgb(27, 75, 255) !important;
  width: 100% !important;
}
