:root {
  --green: #06473f;
  --green-2: #0c665c;
  --ink: #17222a;
  --muted: #65717a;
  --line: #dfe5e7;
  --gold: #b6893d;
  --blue: #246d8f;
  --bg: #f7f9f9;
  --surface: #fff;
  --shadow: 0 14px 34px rgba(19, 40, 47, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: "Cairo", Arial, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.shell { width: min(1450px, calc(100% - 48px)); margin-inline: auto; }

.brand-row,
.main-nav__inner {
  display: flex;
  align-items: center;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.brand-row {
  justify-content: space-between;
  gap: 22px;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--green);
}
.brand__mark {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(182, 137, 61, .36);
  border-radius: 8px;
}
.brand__mark svg {
  width: 52px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}
.brand__mark img {
  display: block;
  max-width: 58px;
  max-height: 58px;
  object-fit: contain;
}
.brand strong {
  display: block;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.2;
}
.brand small {
  display: block;
  margin-top: 4px;
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 700;
}
.vision { color: #8c969b; font-size: 28px; font-weight: 800; }

.national-banner { margin-bottom: 18px; }
.national-banner img {
  display: block;
  width: 100%;
  min-height: 108px;
  max-height: 260px;
  object-fit: cover;
  background: linear-gradient(90deg, #f5f8f6, #dcebea);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.main-nav { border-top: 1px solid var(--line); }
.main-nav__inner {
  gap: 6px;
  min-height: 54px;
  overflow: visible;
}
.main-nav__inner li {
  position: relative;
  display: block;
  flex: 0 0 auto;
  list-style: none;
}
.main-nav a {
  display: block;
  position: relative;
  flex: 0 0 auto;
  padding: 15px 18px;
  font-weight: 700;
  color: #334047;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a[aria-current="page"] { color: var(--gold); }
.main-nav .menu-item-has-children > a::after {
  display: inline-block;
  margin-right: 8px;
  color: var(--gold);
  content: "⌄";
  font-size: 13px;
}
.main-nav .sub-menu {
  position: absolute;
  top: calc(100% - 2px);
  right: 0;
  z-index: 50;
  display: grid;
  min-width: 210px;
  margin: 0;
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.main-nav .menu-item-has-children:hover > .sub-menu,
.main-nav .menu-item-has-children:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.main-nav .sub-menu li { width: 100%; }
.main-nav .sub-menu a {
  padding: 10px 12px;
  white-space: nowrap;
  border-radius: 6px;
}
.main-nav .sub-menu a:hover {
  color: var(--green);
  background: #edf5f4;
}

.search-band { padding: 16px 0 20px; }
.search-panel,
.stats-strip,
.news-list,
.latest-books,
.popular-list,
.archive-books,
.single-book {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.search-panel {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 28px;
  padding: 26px;
}
.search-copy h1 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: clamp(24px, 2vw, 34px);
}
.search-copy p { margin: 0; color: var(--muted); }
.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 154px 150px;
  gap: 14px;
  align-items: end;
}
.search-form label span {
  display: block;
  margin-bottom: 7px;
  color: #42515a;
  font-size: 13px;
  font-weight: 700;
}
.search-form input,
.search-form select,
.newsletter input {
  width: 100%;
  height: 44px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd8dc;
  border-radius: 7px;
  padding: 0 14px;
}
.primary-btn,
.ghost-btn,
.newsletter button {
  height: 44px;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 800;
}
.primary-btn {
  color: #fff;
  background: var(--green);
  border: 0;
}
.ghost-btn {
  color: var(--green);
  background: #edf5f4;
  border: 1px solid #c9dddd;
}
.advanced-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 8px;
}
.advanced-grid.is-hidden { display: none; }

.stats-strip {
  display: grid;
  grid-template-columns: 230px repeat(5, minmax(0, 1fr));
  margin-top: 14px;
  overflow: hidden;
}
.stats-cta {
  display: flex;
  min-height: 108px;
  flex-direction: column;
  justify-content: center;
  padding: 18px 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #123140);
  border-right: 7px solid var(--gold);
}
.stats-cta span { color: rgba(255,255,255,.78); }
.stat {
  display: grid;
  min-height: 108px;
  place-items: center;
  padding: 16px;
  text-align: center;
  border-inline-start: 1px solid var(--line);
  transition: background .16s ease, transform .16s ease;
}
.stat:hover {
  background: #f2f7f6;
  transform: translateY(-1px);
}
.stat span { color: var(--muted); font-weight: 600; }
.stat strong { color: var(--green); font-size: 28px; line-height: 1.1; }

.content-grid {
  display: grid;
  grid-template-columns: minmax(250px, 300px) minmax(0, 1fr) minmax(250px, 300px);
  align-items: stretch;
  gap: 20px;
  padding: 4px 0 22px;
}
.news-list,
.latest-books,
.popular-list,
.archive-books {
  min-width: 0;
  padding: 20px;
}
.news-list,
.popular-list {
  display: flex;
  flex-direction: column;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}
.section-heading h1,
.section-heading h2 {
  position: relative;
  margin: 0;
  padding-right: 12px;
  color: var(--green);
  font-size: 22px;
}
.section-heading h1::before,
.section-heading h2::before {
  position: absolute;
  top: 8px;
  right: 0;
  width: 4px;
  height: 22px;
  background: var(--gold);
  content: "";
}
.section-heading a,
.section-heading span { color: var(--blue); font-weight: 700; }

.news-list article {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.news-list article:last-child { border-bottom: 0; }
.news-list time { color: var(--gold); font-size: 12px; font-weight: 800; }
.news-list h3 { margin: 3px 0 0; font-size: 13px; line-height: 1.5; }

.book-grid,
.archive-book-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.archive-book-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.book-card { min-width: 0; }
.cover {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  padding: 0;
  color: #fff;
  background: linear-gradient(145deg, #104d43, #b6893d);
  border-radius: 8px;
  box-shadow: 0 16px 24px rgba(10, 20, 28, .15);
}
.cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.book-card h3 { margin: 12px 0 2px; font-size: 15px; line-height: 1.45; }
.book-card p { margin: 0; color: var(--muted); font-size: 13px; }

.popular-list ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.popular-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  grid-template-areas: "title rank";
  align-items: start;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.popular-list li:first-child { padding-top: 0; }
.popular-list li span {
  grid-area: title;
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}
.popular-list b {
  display: grid;
  grid-area: rank;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: var(--gold);
  border-radius: 6px;
  line-height: 1;
}

.mission-band { padding: 0 0 22px; }
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 1.2fr;
  gap: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.mission-grid article {
  padding: 26px;
  border-inline-start: 1px solid var(--line);
}
.mission-grid article span { color: var(--green); font-size: 38px; }
.mission-grid h2 { margin: 8px 0 6px; color: var(--green); font-size: 20px; }
.mission-grid p { margin: 0; color: var(--muted); }
.media-tile {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #123140);
}
.media-tile span { color: #e0c58d; font-weight: 800; }
.media-tile strong { margin-top: 8px; font-size: 26px; }

.archive-books {
  margin-bottom: 28px;
}
.inner-wrap {
  padding: 24px 0 34px;
}
.inner-page {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.inner-hero {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(6, 71, 63, .94), rgba(18, 49, 64, .92)),
    #123140;
  color: #fff;
}
.inner-hero span {
  display: inline-block;
  margin-bottom: 10px;
  color: #e3bd70;
  font-weight: 800;
}
.inner-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.35;
}
.inner-hero p {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(255,255,255,.78);
}
.inner-content {
  padding: 30px 34px 36px;
  font-size: 17px;
}
.inner-page__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 30px;
  align-items: start;
  padding: 30px 34px 36px;
}
.inner-page__body--wide {
  grid-template-columns: minmax(0, 1fr);
}
.inner-page__body .inner-content {
  padding: 0;
}
.inner-visual {
  position: sticky;
  top: 18px;
  overflow: hidden;
  background: #f4f8f7;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.inner-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.inner-visual__panel {
  padding: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #123140);
}
.inner-visual__panel span {
  display: block;
  margin-bottom: 8px;
  color: #e3bd70;
  font-size: 13px;
  font-weight: 800;
}
.inner-visual__panel strong {
  display: block;
  font-size: 22px;
  line-height: 1.45;
}
.inner-visual__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #fff;
}
.inner-visual__stats a {
  min-height: 92px;
  padding: 16px;
  text-align: center;
  border-inline-start: 1px solid var(--line);
  transition: background .2s ease, transform .2s ease;
}
.inner-visual__stats a:first-child {
  border-inline-start: 0;
}
.inner-visual__stats a:hover {
  background: #f3f8f7;
  transform: translateY(-1px);
}
.inner-visual__stats b {
  display: block;
  color: var(--green);
  font-size: 30px;
  line-height: 1.1;
}
.inner-visual__stats span {
  color: var(--muted);
  font-weight: 800;
}
.inner-content > *:first-child { margin-top: 0; }
.inner-content > *:last-child { margin-bottom: 0; }
.inner-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.post-meta time,
.post-meta a {
  display: inline-grid;
  min-height: 34px;
  place-items: center;
  padding: 0 12px;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 7px;
  font-weight: 800;
}
.post-meta a {
  color: #123140;
  background: #e3bd70;
  border-color: #e3bd70;
}
.post-featured {
  margin: 0;
  max-height: 420px;
  overflow: hidden;
}
.post-featured img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.archive-list {
  display: grid;
  gap: 14px;
}
.list-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.list-card time { color: var(--gold); font-weight: 800; }
.list-card h2 { margin: 6px 0; color: var(--green); font-size: 20px; }
.list-card p { margin: 0; color: var(--muted); }
.pagination {
  margin-top: 22px;
}
.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pagination a,
.pagination span {
  display: inline-grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
}
.pagination .current {
  color: #fff;
  background: var(--green);
}
.empty-state {
  color: var(--muted);
  font-weight: 700;
}
.post-list {
  display: grid;
  gap: 14px;
  padding: 24px;
}
.post-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.post-card__media {
  display: block;
  min-height: 150px;
  overflow: hidden;
  background: #edf5f4;
  border-radius: 8px;
}
.post-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-card__body time {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}
.post-card__body h2 {
  margin: 6px 0;
  color: var(--green);
  font-size: 22px;
  line-height: 1.45;
}
.post-card__body p {
  margin: 0;
  color: var(--muted);
}
.term-cloud {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.term-cloud a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.term-cloud a:hover {
  border-color: rgba(6, 71, 63, .25);
  box-shadow: var(--shadow);
}
.term-cloud b {
  display: grid;
  min-width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 6px;
  font-size: 13px;
}
.library-page-panel {
  display: grid;
  gap: 18px;
}
.library-page-intro h2 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 28px;
}
.library-page-intro p {
  margin: 0;
  color: var(--muted);
}
.library-page-panel .search-form { margin: 0; }
.library-page-panel .search-form input,
.library-page-panel .search-form select,
.library-page-panel .search-form button { min-height: 48px; }
.library-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.library-quick-links a {
  display: inline-grid;
  min-height: 42px;
  place-items: center;
  padding: 0 16px;
  color: #fff;
  background: var(--green);
  border-radius: 7px;
  font-weight: 800;
}
.library-quick-links a:hover {
  background: #123140;
}
.library-category-cloud {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.single-wrap {
  padding: 24px 0;
}
.single-book {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  padding: 24px;
}
.single-book__cover img {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.cover--large { min-height: 420px; }
.single-book h1 {
  margin: 0 0 18px;
  color: var(--green);
  font-size: clamp(28px, 3vw, 42px);
}
.book-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 22px;
}
.book-meta div {
  padding: 12px;
  background: #f4f7f7;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.book-meta dt { color: var(--muted); font-size: 13px; font-weight: 800; }
.book-meta dd { margin: 3px 0 0; color: var(--ink); font-weight: 700; }
.entry-content { color: #2f3b42; }

.footer {
  position: relative;
  overflow: hidden;
  color: #dfe7e8;
  background:
    linear-gradient(135deg, rgba(6, 71, 63, .96), rgba(18, 49, 64, .98)),
    #123140;
  padding: 42px 0 24px;
}
.footer::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(182, 137, 61, .14), transparent 28%),
    linear-gradient(0deg, rgba(255,255,255,.06), transparent 44%);
  content: "";
}
.footer .shell {
  position: relative;
  z-index: 1;
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, .8fr);
  align-items: center;
  gap: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.footer-logo__mark {
  display: grid;
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  place-items: center;
  color: #e3bd70;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(227, 189, 112, .45);
  border-radius: 8px;
}
.footer-logo__mark svg {
  width: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}
.footer-logo__mark img {
  display: block;
  max-width: 46px;
  max-height: 46px;
  object-fit: contain;
}
.footer-logo strong {
  display: block;
  font-size: 28px;
  line-height: 1.2;
}
.footer-logo small {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.78);
  font-weight: 700;
}
.footer__brand p {
  max-width: 680px;
  margin: 14px 76px 0 0;
  color: rgba(255,255,255,.76);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  padding: 28px 0 24px;
}
.footer h2 {
  position: relative;
  margin: 0 0 14px;
  padding-right: 12px;
  color: #fff;
  font-size: 18px;
}
.footer h2::before {
  position: absolute;
  top: 7px;
  right: 0;
  width: 4px;
  height: 18px;
  background: #e3bd70;
  content: "";
}
.footer p { margin: 8px 0; }
.footer a {
  color: rgba(255,255,255,.8);
  transition: color .16s ease, transform .16s ease;
}
.footer a:hover {
  color: #e3bd70;
  transform: translateX(-2px);
}
.footer-links {
  min-width: 0;
}
.footer-links a,
.footer-menu a {
  display: block;
  margin: 9px 0;
}
.footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-contact p {
  color: rgba(255,255,255,.8);
}
.footer-contact span {
  display: block;
  color: #e3bd70;
  font-size: 12px;
  font-weight: 800;
}
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.footer-social a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  font-weight: 800;
}
.footer-social a:hover {
  color: #123140;
  background: #e3bd70;
  transform: translateY(-1px);
}
.newsletter {
  padding: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
}
.newsletter div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 116px;
  gap: 8px;
}
.newsletter input {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
}
.newsletter input::placeholder {
  color: rgba(255,255,255,.58);
}
.newsletter button {
  color: #17222a;
  background: #e3bd70;
  border: 0;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  color: rgba(255,255,255,.68);
  border-top: 1px solid rgba(255,255,255,.16);
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom a {
  color: #e3bd70;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .content-grid,
  .search-panel,
  .mission-grid,
  .inner-page__body,
  .single-book,
  .post-card,
  .term-cloud,
  .footer__top,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .search-form,
  .advanced-grid,
  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }
  .stats-cta { grid-column: 1 / -1; }
  .book-grid,
  .archive-book-grid {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
  }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 28px, 1450px); }
  .brand-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .vision { font-size: 20px; }
  .brand__mark { width: 58px; height: 58px; }
  .brand strong { font-size: 24px; }
  .brand small { font-size: 14px; }
  .national-banner img { min-height: 76px; }
  .main-nav__inner {
    overflow-x: auto;
    overflow-y: visible;
  }
  .main-nav .sub-menu {
    position: static;
    display: none;
    min-width: 100%;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
  }
  .main-nav .menu-item-has-children:hover > .sub-menu,
  .main-nav .menu-item-has-children:focus-within > .sub-menu {
    display: grid;
  }
  .search-panel,
  .news-list,
  .latest-books,
  .popular-list,
  .archive-books,
  .inner-page__body,
  .single-book {
    padding: 16px;
  }
  .inner-visual { position: static; }
  .inner-wrap { padding: 16px 0 24px; }
  .inner-hero { padding: 24px 18px; }
  .inner-hero h1 { font-size: 26px; }
  .post-list { padding: 16px; }
  .post-card { padding: 12px; }
  .search-form,
  .advanced-grid,
  .stats-strip,
  .book-grid,
  .archive-book-grid,
  .newsletter div,
  .book-meta {
    grid-template-columns: 1fr;
  }
  .content-grid { gap: 14px; }
  .footer {
    padding: 32px 0 20px;
  }
  .footer__brand p {
    margin-right: 0;
  }
  .footer-logo {
    align-items: flex-start;
  }
  .footer-logo strong {
    font-size: 23px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
