/* =========================================================
   DREAM REFERENCE - THEME.CSS
   White + Navy Premium Theme
   ========================================================= */

:root {
  --bg: #f6f8fc;
  --bg-soft: #eef3f9;
  --surface: #ffffff;
  --surface-2: #f9fbfe;
  --surface-3: #f1f5fb;

  --line: #d8e1ee;
  --line-strong: #bfd0e6;

  --navy-900: #0c2340;
  --navy-850: #123154;
  --navy-800: #173b63;
  --navy-700: #224d7f;
  --navy-600: #325f95;

  --text: #142033;
  --text-soft: #4e617c;
  --text-faint: #74839a;

  --accent: #163b68;
  --accent-strong: #0f2f57;
  --accent-soft: #edf3fa;

  --gold: #d2b06d;
  --gold-soft: #f4ebd7;

  --shadow-sm: 0 6px 18px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 16px 42px rgba(11, 31, 58, 0.1);
  --shadow-lg: 0 24px 70px rgba(11, 31, 58, 0.14);

  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --container: 1120px;
  --header-h: 78px;
  --trans-fast: 160ms ease;
  --trans: 220ms ease;
}

/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  font-family:
    "Pretendard",
    "Noto Sans KR",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background:
    radial-gradient(circle at top left, rgba(23, 59, 99, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #f3f7fc 55%, #eef3f8 100%);
  color: var(--text);
  overflow-x: hidden;
}

img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: #d8e8fb;
  color: var(--navy-900);
}

/* =========================================================
   BASE LAYOUT
   ========================================================= */

.container,
.site-container,
.wrapper,
.inner {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

main {
  display: block;
}

section {
  position: relative;
}

.page-shell {
  padding-bottom: 64px;
}

.section {
  margin-top: 28px;
}

.section-title,
h2.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy-900);
  margin-bottom: 16px;
}

.section-title::before,
h2.section-title::before {
  content: "";
  width: 6px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--navy-700));
  box-shadow: 0 0 0 4px rgba(22, 59, 104, 0.08);
}

/* =========================================================
   ACCESSIBILITY / UTIL
   ========================================================= */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-muted { color: var(--text-faint) !important; }
.text-soft { color: var(--text-soft) !important; }
.text-navy { color: var(--navy-900) !important; }
.bg-soft { background: var(--surface-2) !important; }

.mt-8 { margin-top: 8px !important; }
.mt-12 { margin-top: 12px !important; }
.mt-16 { margin-top: 16px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-24 { margin-top: 24px !important; }
.mt-32 { margin-top: 32px !important; }

.mb-8 { margin-bottom: 8px !important; }
.mb-12 { margin-bottom: 12px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-32 { margin-bottom: 32px !important; }

.hidden {
  display: none !important;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none !important;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-h);
  border-bottom: 1px solid rgba(18, 49, 84, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.92));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header__inner {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.site-header__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.site-header__center {
  min-width: 0;
}

.site-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 1;
}

.site-brand__logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: var(--shadow-sm);
  flex: 0 0 auto;
}

.site-brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.site-brand__title {
  font-size: 1.08rem;
  line-height: 1.05;
  font-weight: 850;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}

.site-brand__sub {
  margin-top: 3px;
  font-size: 0.83rem;
  color: var(--text-soft);
  font-weight: 650;
  line-height: 1.2;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.header-search__input {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  background: rgba(255,255,255,0.98);
  color: var(--text);
  transition:
    border-color var(--trans-fast),
    box-shadow var(--trans-fast),
    background var(--trans-fast);
}

.header-search__input::placeholder {
  color: #8492a7;
}

.header-search__input:focus {
  border-color: rgba(22, 59, 104, 0.3);
  box-shadow: 0 0 0 4px rgba(22, 59, 104, 0.1);
  background: #fff;
}

.header-search__button {
  flex: 0 0 auto;
  height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 24px rgba(12, 35, 64, 0.16);
  transition:
    transform var(--trans-fast),
    box-shadow var(--trans-fast),
    filter var(--trans-fast);
}

.header-search__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(12, 35, 64, 0.2);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  font-weight: 750;
  color: var(--navy-850);
  white-space: nowrap;
  transition:
    background var(--trans-fast),
    color var(--trans-fast),
    transform var(--trans-fast);
}

.site-nav__link:hover,
.site-nav__link.is-active {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--navy-850);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex: 0 0 auto;
  transition:
    transform var(--trans-fast),
    background var(--trans-fast),
    border-color var(--trans-fast);
}

.icon-btn:hover {
  transform: translateY(-1px);
  background: var(--accent-soft);
  border-color: rgba(22, 59, 104, 0.2);
}

.icon-btn__bars {
  width: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.icon-btn__bars span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-search-panel {
  border-top: 1px solid rgba(18, 49, 84, 0.08);
  background: rgba(255,255,255,0.96);
}

.mobile-search-panel .container {
  padding-top: 12px;
  padding-bottom: 14px;
}

.mobile-search {
  display: flex;
  gap: 10px;
}

.mobile-search__input {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  background: #fff;
}

.mobile-search__button {
  flex: 0 0 auto;
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
  color: #fff;
  font-weight: 800;
}

.mobile-drawer {
  border-top: 1px solid rgba(18, 49, 84, 0.08);
  background: rgba(255,255,255,0.97);
}

.mobile-drawer__inner {
  padding: 14px 0 18px;
}

.mobile-nav {
  display: grid;
  gap: 8px;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  color: var(--navy-850);
  font-weight: 750;
  background: #fff;
  border: 1px solid rgba(22, 59, 104, 0.08);
  box-shadow: var(--shadow-sm);
}

.mobile-nav__link:hover,
.mobile-nav__link.is-active {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

/* =========================================================
   HERO / SEARCH PANEL
   ========================================================= */

.hero,
.hero-panel,
.intro-panel,
.search-hero {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(22, 59, 104, 0.12);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(245,249,255,0.98));
  box-shadow: var(--shadow-md);
}

.hero::before,
.hero-panel::before,
.intro-panel::before,
.search-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(35, 77, 127, 0.1), transparent 30%),
    radial-gradient(circle at bottom left, rgba(210, 176, 109, 0.08), transparent 26%);
  pointer-events: none;
}

.badge,
.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(22, 59, 104, 0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  color: var(--navy-700);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.hero h1,
.hero-title,
.intro-panel h1 {
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: var(--navy-900);
  max-width: 11ch;
}

.hero p,
.hero-desc,
.intro-panel p {
  margin-top: 16px;
  max-width: 760px;
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.search-form,
.search-bar,
.hero-search {
  margin-top: 22px;
  display: flex;
  align-items: stretch;
  gap: 12px;
  max-width: 760px;
}

.search-form input,
.search-bar input,
.hero-search input,
input[type="search"],
input[type="text"] {
  width: 100%;
  min-width: 0;
  height: 56px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: none;
  background: rgba(255,255,255,0.96);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
  transition:
    border-color var(--trans-fast),
    box-shadow var(--trans-fast),
    background var(--trans-fast);
}

.search-form input::placeholder,
.search-bar input::placeholder,
.hero-search input::placeholder,
input::placeholder {
  color: #8694a9;
}

.search-form input:focus,
.search-bar input:focus,
.hero-search input:focus,
input[type="search"]:focus,
input[type="text"]:focus {
  border-color: rgba(22, 59, 104, 0.32);
  box-shadow:
    0 0 0 4px rgba(22, 59, 104, 0.1),
    0 10px 22px rgba(13, 36, 66, 0.06);
  background: #fff;
}

.search-form button,
.search-bar button,
.hero-search button,
button.primary,
.btn-primary {
  flex: 0 0 auto;
  min-width: 110px;
  height: 56px;
  padding: 0 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 28px rgba(12, 35, 64, 0.18);
  transition:
    transform var(--trans-fast),
    box-shadow var(--trans-fast),
    filter var(--trans-fast);
}

.search-form button:hover,
.search-bar button:hover,
.hero-search button:hover,
button.primary:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(12, 35, 64, 0.22);
}

.hero-actions,
.action-row,
.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.btn,
.btn-outline,
.btn-ghost,
.chip,
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  font-weight: 800;
  transition:
    transform var(--trans-fast),
    border-color var(--trans-fast),
    background var(--trans-fast),
    color var(--trans-fast),
    box-shadow var(--trans-fast);
}

.btn-outline,
.chip,
.tag {
  border: 1px solid rgba(22, 59, 104, 0.16);
  background: #fff;
  color: var(--navy-850);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover,
.chip:hover,
.tag:hover {
  transform: translateY(-1px);
  border-color: rgba(22, 59, 104, 0.28);
  background: var(--accent-soft);
}

/* =========================================================
   CARD / FEATURE / CATEGORY
   ========================================================= */

.card,
.feature-card,
.category-card,
.panel,
.box {
  position: relative;
  overflow: hidden;
  padding: 22px 20px;
  border: 1px solid rgba(22, 59, 104, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(249,252,255,0.98));
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--trans),
    box-shadow var(--trans),
    border-color var(--trans),
    background var(--trans);
}

.card:hover,
.feature-card:hover,
.category-card:hover,
.panel:hover,
.box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(22, 59, 104, 0.18);
}

.card h3,
.feature-card h3,
.category-card h3,
.panel h3,
.box h3 {
  font-size: 1.22rem;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--navy-900);
  font-weight: 850;
  margin-bottom: 12px;
}

.card p,
.feature-card p,
.category-card p,
.panel p,
.box p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.78;
}

/* =========================================================
   GRID
   ========================================================= */

.grid,
.cards,
.feature-grid,
.category-grid {
  display: grid;
  gap: 16px;
}

.grid-2,
.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3,
.category-grid,
.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4,
.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* =========================================================
   SEARCH RESULTS / LISTS
   ========================================================= */

.result-list,
.search-results {
  display: grid;
  gap: 14px;
}

.result-item,
.search-item {
  padding: 18px 18px;
  border: 1px solid rgba(22, 59, 104, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--trans-fast),
    border-color var(--trans-fast),
    box-shadow var(--trans-fast);
}

.result-item:hover,
.search-item:hover {
  transform: translateY(-2px);
  border-color: rgba(22, 59, 104, 0.22);
  box-shadow: var(--shadow-md);
}

.result-item h3,
.search-item h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 6px;
}

.result-item p,
.search-item p {
  color: var(--text-soft);
}

.result-meta,
.search-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--text-faint);
  font-size: 0.92rem;
}

/* =========================================================
   LINKS / TAGS
   ========================================================= */

a.text-link,
.link {
  color: var(--accent);
  font-weight: 700;
}

a.text-link:hover,
.link:hover {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.keyword-list,
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keyword-list a,
.tags a,
.tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(22, 59, 104, 0.12);
  color: var(--navy-850);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition:
    background var(--trans-fast),
    transform var(--trans-fast),
    border-color var(--trans-fast);
}

.keyword-list a:hover,
.tags a:hover,
.tags span:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
  border-color: rgba(22, 59, 104, 0.22);
}

/* =========================================================
   CONTENT / DETAIL
   ========================================================= */

.content-card,
.article-card,
.detail-card,
.article {
  padding: 26px 22px;
  border: 1px solid rgba(22, 59, 104, 0.12);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.article h1,
.detail-card h1,
.content-card h1 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--navy-900);
  font-weight: 900;
  margin-bottom: 12px;
}

.article h2,
.detail-card h2,
.content-card h2 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 1.35rem;
  color: var(--navy-900);
  letter-spacing: -0.03em;
}

.article p,
.detail-card p,
.content-card p {
  color: var(--text-soft);
  line-height: 1.88;
}

blockquote {
  margin: 18px 0;
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 16px 16px 0;
  color: var(--navy-850);
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  margin-top: 44px;
  border-top: 1px solid rgba(18, 49, 84, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(248,251,255,0.96));
}

.site-footer__inner {
  padding: 34px 0 28px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 0.8fr));
  gap: 28px;
}

.site-footer__col {
  min-width: 0;
}

.site-footer__brand p {
  margin-top: 10px;
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 420px;
}

.site-footer__title,
.site-footer__brand h3 {
  color: var(--navy-900);
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.site-footer__heading,
.site-footer__col h4 {
  color: var(--navy-900);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.site-footer__list {
  display: grid;
  gap: 8px;
}

.site-footer__list a {
  color: var(--navy-700);
  font-weight: 700;
  line-height: 1.5;
}

.site-footer__list a:hover {
  color: var(--navy-900);
}

.site-footer__bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 49, 84, 0.08);
  color: var(--text-soft);
  font-size: 0.94rem;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
  .grid-4,
  .cards-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer__grid {
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr));
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 960px) {
  :root {
    --header-h: 72px;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: inline-flex !important;
  }

  .grid-3,
  .category-grid,
  .cards-3,
  .grid-4,
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero,
  .hero-panel,
  .intro-panel,
  .search-hero {
    padding: 24px 20px;
  }

  .hero h1,
  .hero-title,
  .intro-panel h1 {
    max-width: none;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (max-width: 720px) {
  .container,
  .site-container,
  .wrapper,
  .inner {
    width: min(100% - 24px, var(--container));
  }

  .site-brand__logo {
    width: 38px;
    height: 38px;
  }

  .site-brand__title {
    font-size: 1rem;
  }

  .site-brand__sub {
    font-size: 0.78rem;
  }

  .search-form,
  .search-bar,
  .hero-search,
  .mobile-search {
    flex-direction: column;
  }

  .search-form button,
  .search-bar button,
  .hero-search button,
  .mobile-search__button,
  button.primary,
  .btn-primary {
    width: 100%;
    min-width: 0;
  }

  .grid-2,
  .feature-grid,
  .grid-3,
  .category-grid,
  .cards-3,
  .grid-4,
  .cards-4,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-panel,
  .intro-panel,
  .search-hero,
  .content-card,
  .article-card,
  .detail-card,
  .article,
  .card,
  .feature-card,
  .category-card,
  .panel,
  .box {
    border-radius: 20px;
  }

  .site-footer__inner {
    padding: 28px 0 24px;
  }

  .site-footer__bottom {
    margin-top: 20px;
  }
}

@media (max-width: 520px) {
  .site-header__inner {
    min-height: 68px;
  }

  .site-brand {
    gap: 10px;
  }

  .site-brand__title {
    font-size: 0.96rem;
  }

  .site-brand__sub {
    display: none;
  }

  .icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .hero h1,
  .hero-title,
  .intro-panel h1 {
    font-size: 2rem;
  }

  .hero p,
  .hero-desc,
  .intro-panel p {
    font-size: 0.98rem;
  }

  .section-title,
  h2.section-title {
    font-size: 1.2rem;
  }

  .card,
  .feature-card,
  .category-card,
  .panel,
  .box,
  .content-card,
  .article-card,
  .detail-card,
  .article {
    padding: 18px 16px;
  }

  .site-footer__title,
  .site-footer__brand h3 {
    font-size: 1.08rem;
  }

  .site-footer__heading,
  .site-footer__col h4 {
    font-size: 0.98rem;
  }

  .site-footer__bottom {
    font-size: 0.9rem;
  }
}