/* ==============================
   EDINBURG LAWYER — RGV IMMIGRATION HUB v2
   Bilingual EN/ES | Emotional | Spanish Default
   ============================== */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-700: #1a56db;
  --blue-800: #1344b0;
  --blue-900: #0e2f80;
  --blue-50:  #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;

  --red-600:  #dc2626;
  --red-50:   #fef2f2;
  --red-100:  #fee2e2;
  --red-700:  #b91c1c;

  --amber-500: #f59e0b;
  --amber-50:  #fffbeb;
  --amber-100: #fef3c7;
  --amber-700: #b45309;

  --green-600: #16a34a;
  --green-50:  #f0fdf4;
  --green-100: #dcfce7;

  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --white: #ffffff;

  --font-body: 'Satoshi', 'Inter', system-ui, sans-serif;
  --font-display: 'Cabinet Grotesk', 'Satoshi', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14), 0 4px 10px rgba(0,0,0,0.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- LANG BAR ---------- */
.lang-bar {
  background: var(--blue-900);
  height: 38px;
  display: flex;
  align-items: center;
}
.lang-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.lang-note {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  font-weight: 500;
}
.lang-btns { display: flex; gap: 4px; }
.lang-btn {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.30);
  color: rgba(255,255,255,0.65);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 13px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.15s;
}
.lang-btn.active {
  background: var(--white);
  border-color: var(--white);
  color: var(--blue-900);
}
.lang-btn:hover:not(.active) {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  height: 68px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 52px; width: auto; display: block; }
.logo-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--blue-700);
  line-height: 1.2;
}
.logo-sub {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 500;
  line-height: 1.2;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--blue-700); background: var(--blue-50); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-md);
  padding: 13px 26px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s;
  line-height: 1.2;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-700);
  color: var(--white);
  border-color: var(--blue-700);
}
.btn-primary:hover {
  background: var(--blue-800);
  border-color: var(--blue-800);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26,86,219,0.30);
}
.btn-outline {
  background: transparent;
  color: var(--blue-700);
  border-color: var(--blue-200);
}
.btn-outline:hover {
  background: var(--blue-50);
  border-color: var(--blue-700);
  transform: translateY(-1px);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.55) saturate(0.85);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(9, 20, 60, 0.80) 0%,
    rgba(14, 47, 128, 0.60) 50%,
    rgba(14, 47, 128, 0.20) 100%
  );
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.92);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.28);
  margin-bottom: 22px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.30);
}

.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-warning {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(251,191,36,0.15);
  border: 1.5px solid rgba(251,191,36,0.45);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: #fde68a;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 32px;
  line-height: 1.5;
}
.hero-warning svg { flex-shrink: 0; margin-top: 1px; color: #fbbf24; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-btns .btn-primary {
  background: var(--white);
  color: var(--blue-900);
  border-color: var(--white);
  font-size: 16px;
  padding: 14px 28px;
}
.hero-btns .btn-primary:hover {
  background: var(--blue-50);
  box-shadow: 0 4px 20px rgba(255,255,255,0.25);
}
.hero-btns .btn-outline {
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
  font-size: 16px;
  padding: 14px 28px;
}
.hero-btns .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.75);
}

/* Hero Widgets */
.hero-widgets { display: flex; flex-direction: column; gap: 16px; }

.widget-card {
  background: rgba(9, 20, 60, 0.70);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.widget-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.60);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.weather-display { margin-bottom: 12px; }
.weather-temp {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.weather-desc { font-size: 16px; color: rgba(255,255,255,0.85); font-weight: 600; margin-bottom: 4px; }
.weather-sub { font-size: 13px; color: rgba(255,255,255,0.55); }
.widget-link { display: inline-block; font-size: 13px; font-weight: 700; color: var(--blue-200); transition: color 0.15s; }
.widget-link:hover { color: var(--white); }

.emergency-list { display: flex; flex-direction: column; gap: 10px; }
.emergency-item { display: flex; align-items: center; justify-content: space-between; font-size: 13.5px; }
.emergency-item span { color: rgba(255,255,255,0.65); font-weight: 500; }
.emergency-item a {
  font-weight: 700;
  color: var(--white);
  background: rgba(255,255,255,0.10);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12.5px;
  transition: background 0.15s;
}
.emergency-item a:hover { background: rgba(255,255,255,0.22); }

/* ---------- QUOTE STRIP ---------- */
.quote-strip {
  background: var(--blue-700);
  padding: 28px 0;
}
.quote-strip blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.5;
  font-style: italic;
}

/* ---------- SECTION IMAGE HEADERS ---------- */
.section-img-header {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.section-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.45) saturate(0.80);
}
.section-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,20,60,0.50) 0%, rgba(9,20,60,0.75) 100%);
  display: flex;
  align-items: center;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.80); }

/* ---------- SECTIONS ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--gray-50); }

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 48px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-header p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ---------- DOCUMENT CARDS ---------- */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.doc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.doc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.doc-card.severity-critical { border-left: 5px solid var(--red-600); }
.doc-card.severity-warning  { border-left: 5px solid var(--amber-500); }
.doc-card.severity-info     { border-left: 5px solid var(--blue-700); }

.doc-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }

.severity-badge-critical { background: var(--red-100); color: var(--red-700); font-size: 10px; font-weight: 800; letter-spacing: 0.08em; padding: 3px 10px; border-radius: 20px; }
.severity-badge-warning  { background: var(--amber-100); color: var(--amber-700); font-size: 10px; font-weight: 800; letter-spacing: 0.08em; padding: 3px 10px; border-radius: 20px; }
.severity-badge-info     { background: var(--blue-100); color: var(--blue-800); font-size: 10px; font-weight: 800; letter-spacing: 0.08em; padding: 3px 10px; border-radius: 20px; }

.doc-form { font-size: 11px; font-weight: 700; color: var(--gray-400); letter-spacing: 0.04em; }

.doc-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 14px;
  line-height: 1.3;
}

.doc-section { margin-bottom: 12px; }
.doc-label { font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 4px; }
.doc-section p { font-size: 14px; color: var(--gray-600); line-height: 1.55; }

.doc-action {
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-top: auto;
}
.doc-action .doc-label { color: var(--blue-700); }
.doc-action p { font-size: 13.5px; color: var(--gray-700); font-weight: 500; }

/* ---------- GUIDE CARDS ---------- */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.guide-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.guide-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.guide-icon { font-size: 2.2rem; margin-bottom: 14px; line-height: 1; }
.guide-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.3;
}
.guide-steps { list-style: none; counter-reset: steps; display: flex; flex-direction: column; gap: 10px; }
.guide-steps li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
}
.guide-steps li::before {
  content: counter(steps);
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--blue-700);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ---------- RIGHTS CARDS ---------- */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.right-card {
  background: var(--white);
  border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.right-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-200); transform: translateY(-2px); }
.right-icon { font-size: 1.85rem; margin-bottom: 12px; line-height: 1; }
.right-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 10px;
  line-height: 1.3;
}
.right-card p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

/* ---------- LAWYERS ---------- */
.lawyer-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.city-filter-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 32px;
  border: 2px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.18s;
}
.city-filter-btn:hover { border-color: var(--blue-700); color: var(--blue-700); }
.city-filter-btn.active { background: var(--blue-700); border-color: var(--blue-700); color: var(--white); }

.lawyers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.lawyer-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.lawyer-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.lawyer-card.lawyer-free-service { border-color: var(--green-100); background: var(--green-50); }

.free-service-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--green-600);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 0 0 8px 8px;
}
.lawyer-header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.lawyer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-700);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lawyer-free-service .lawyer-avatar { background: var(--green-600); }
.lawyer-name { font-family: var(--font-display); font-size: 15px; font-weight: 800; color: var(--gray-900); line-height: 1.25; margin-bottom: 2px; }
.lawyer-city { font-size: 12px; color: var(--gray-500); font-weight: 500; }
.lawyer-specialty { font-size: 13px; color: var(--blue-800); font-weight: 600; margin-bottom: 8px; background: var(--blue-50); padding: 4px 10px; border-radius: var(--radius-sm); display: inline-block; }
.lawyer-address { font-size: 12.5px; color: var(--gray-500); margin-bottom: 10px; line-height: 1.45; }
.free-consult-badge { font-size: 12px; font-weight: 700; color: var(--green-600); margin-bottom: 12px; }

.lawyer-call {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 15px; font-weight: 700;
  background: var(--blue-700); color: var(--white);
  border-radius: var(--radius-md); padding: 11px 16px;
  margin-top: auto; transition: all 0.18s; text-decoration: none; border: none;
}
.lawyer-call:hover { background: var(--blue-800); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(26,86,219,0.30); }
.lawyer-free-service .lawyer-call { background: var(--green-600); }
.lawyer-free-service .lawyer-call:hover { background: #15803d; }

/* Legal Aid */
.legal-aid-box {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%);
  border-radius: var(--radius-xl);
  padding: 44px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  color: var(--white);
}
.legal-aid-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--white);
}
.legal-aid-box h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.legal-aid-box p { font-size: 15px; color: rgba(255,255,255,0.80); margin-bottom: 22px; line-height: 1.65; max-width: 560px; }
.legal-aid-contacts { display: flex; gap: 12px; flex-wrap: wrap; }
.legal-aid-contacts .btn-primary { background: var(--white); color: var(--blue-800); border-color: var(--white); font-size: 14px; padding: 10px 18px; }
.legal-aid-contacts .btn-primary:hover { background: var(--blue-50); box-shadow: 0 4px 16px rgba(255,255,255,0.20); }
.legal-aid-contacts .btn-outline { border-color: rgba(255,255,255,0.40); color: var(--white); font-size: 14px; padding: 10px 18px; }
.legal-aid-contacts .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.70); }

/* ---------- RESOURCES ---------- */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 16px;
}
.resource-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 26px 18px;
  text-align: center;
  transition: all 0.2s;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.resource-card:hover { border-color: var(--blue-300); box-shadow: var(--shadow-md); transform: translateY(-3px); background: var(--blue-50); }
.resource-icon { font-size: 2.1rem; line-height: 1; margin-bottom: 2px; }
.resource-name { font-family: var(--font-display); font-size: 14px; font-weight: 800; color: var(--gray-900); line-height: 1.3; }
.resource-desc { font-size: 12.5px; color: var(--gray-500); line-height: 1.45; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--gray-900); padding: 44px 0; }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-logo .logo-name { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.footer-disc { font-size: 13px; color: var(--gray-400); line-height: 1.7; max-width: 500px; border-top: 1px solid var(--gray-700); padding-top: 12px; margin-top: 4px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.footer-links a { font-size: 14px; font-weight: 600; color: var(--gray-400); transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-layout { padding-top: 56px; padding-bottom: 56px; }
  .hero-widgets { flex-direction: row; flex-wrap: wrap; }
  .hero-widgets .widget-card { flex: 1; min-width: 260px; }
  .main-nav { display: none; }
  .legal-aid-box { flex-direction: column; padding: 28px 24px; }
  .section-img-header { height: 260px; }
}

@media (max-width: 640px) {
  .hero-content h1 { font-size: 1.95rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-widgets { flex-direction: column; }
  .lang-note { display: none; }
  .docs-grid, .guides-grid, .rights-grid, .lawyers-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 28px; }
  .section-img-header { height: 220px; }
  .legal-aid-contacts { flex-direction: column; }
  .legal-aid-contacts .btn { width: 100%; justify-content: center; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-links { flex-direction: row; flex-wrap: wrap; gap: 14px; }
  .quote-strip blockquote { font-size: 1rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
}
