:root {
  --teal: #2d9a92;
  --teal-dark: #227f78;
  --ink: #050505;
  --white: #ffffff;
  --muted: #d8e7e8;
  --footer: #000000;
  --shadow: rgba(0, 0, 0, .28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 512px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(28, 24, 25, .70), rgba(90, 96, 90, .62) 50%, rgba(130, 125, 110, .45)),
    linear-gradient(135deg, #5a2f32 0%, #272c30 42%, #d3d0c3 70%, #b7aa9a 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(90, 24, 28, .52) 0 9%, transparent 26%),
    radial-gradient(circle at 22% 76%, rgba(34, 40, 48, .65) 0 15%, transparent 34%),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, .42) 0 18%, transparent 34%),
    radial-gradient(circle at 83% 70%, rgba(160, 145, 125, .52) 0 21%, transparent 39%);
  filter: blur(9px);
  transform: scale(1.04);
  z-index: -3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .28);
  z-index: -1;
}

.hero-placeholder {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .7;
}

.placeholder-card {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, .24);
  border: 1px solid rgba(255, 255, 255, .14);
}

.placeholder-card.left {
  width: 380px;
  height: 520px;
  left: 6%;
  bottom: -170px;
  transform: rotate(-18deg);
  background: rgba(55, 35, 39, .58);
}

.placeholder-card.right {
  width: 420px;
  height: 540px;
  right: 8%;
  top: -60px;
  transform: rotate(14deg);
  background: rgba(220, 218, 203, .45);
}

.hero-content {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  color: var(--white);
  text-align: center;
  text-shadow: 0 3px 7px var(--shadow);
}

.hero h1 {
  margin: 0 0 58px;
  font-size: clamp(42px, 5.4vw, 66px);
  line-height: .98;
  letter-spacing: -.04em;
  font-weight: 800;
}

.hero p {
  width: min(780px, 100%);
  margin: 0 auto 20px;
  font-size: clamp(20px, 2.1vw, 25px);
  line-height: 1.62;
  font-weight: 500;
}

.hero-button:hover {
  transform: translateY(-1px);
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .86);
  box-shadow: 0 2px 0 rgba(0, 0, 0, .16);
  font-weight: 800;
  text-shadow: none;
}

.intro-section {
  border-top: 66px solid var(--muted);
  padding: 72px 20px 86px;
  background: #fff;
}

.section-inner {
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.intro-section h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.section-copy {
  width: min(720px, 100%);
  margin: 0 auto;
  color: #4b4b4b;
  font-size: 19px;
  line-height: 1.7;
}

.site-footer {
  background: var(--footer);
  color: var(--white);
  padding: 88px 0 54px;
}

.footer-inner {
  width: min(1410px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 94px;
  row-gap: 44px;
}

.footer-column h2 {
  margin: 0 0 12px;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 800;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 0 0 13px;
  font-size: 14px;
  font-weight: 600;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--teal);
}

.footer-bottom {
  width: min(1410px, calc(100% - 48px));
  margin: 46px auto 0;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  opacity: .45;
}

@media (max-width: 1040px) {
  .hero {
    min-height: 520px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-inner,
  .footer-bottom {
    width: min(100% - 28px, 1410px);
  }

  .hero {
    min-height: 590px;
  }

  .hero h1 {
    margin-bottom: 38px;
  }

  .hero p {
    font-size: 18px;
  }

  .intro-section {
    border-top-width: 46px;
    padding-top: 58px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 64px;
  }
}

/* =========================================================
   Tools Listing Page
   tools.php
   ========================================================= */

.tools-page {
  background: #fff;
}

.tools-hero {
  background: #dceced;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  padding: 72px 20px 64px;
  text-align: center;
}

.tools-hero-inner {
  width: min(920px, 100%);
  margin: 0 auto;
}

.tools-eyebrow,
.tools-results-label {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tools-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 800;
}

.tools-hero p {
  width: min(760px, 100%);
  margin: 0 auto;
  color: #333;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.6;
  font-weight: 500;
}

.tools-directory {
  padding: 58px 20px 86px;
}

.tools-layout {
  width: min(1210px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 282px 1fr;
  gap: 44px;
  align-items: start;
}

.tools-sidebar {
  border: 1px solid #dedede;
  border-radius: 5px;
  background: #fff;
  padding: 27px 24px;
  position: sticky;
  top: 92px;
}

.tools-filter-group {
  margin-bottom: 32px;
}

.tools-filter-group:last-child {
  margin-bottom: 0;
}

.tools-filter-title {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.tools-filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tools-filter-list li {
  margin-bottom: 11px;
}

.tools-filter-list li:last-child {
  margin-bottom: 0;
}

.tools-filter-list a {
  display: inline-block;
  color: #242424;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
}

.tools-filter-list a:hover,
.tools-filter-list a:focus-visible {
  color: var(--teal-dark);
  text-decoration: underline;
}

.tools-content {
  min-width: 0;
}

.tools-content-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 24px;
  margin-bottom: 26px;
}

.tools-content-top h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -.035em;
  font-weight: 800;
}

.tools-count {
  margin: 0 0 4px;
  color: #555;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.tool-card {
  border: 1px solid #dedede;
  border-radius: 5px;
  background: #fff;
  padding: 24px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.tool-card:hover {
  border-color: #c4dada;
  box-shadow: 0 9px 24px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

.tool-card-type {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 15px;
  padding: 0 10px;
  border-radius: 4px;
  background: #e7f4f3;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.tool-card h3 {
  margin: 0 0 11px;
  font-size: 23px;
  line-height: 1.24;
  letter-spacing: -.02em;
  font-weight: 800;
}

.tool-card h3 a:hover,
.tool-card h3 a:focus-visible {
  color: var(--teal-dark);
}

.tool-card p {
  margin: 0 0 18px;
  color: #444;
  font-size: 16px;
  line-height: 1.58;
  font-weight: 500;
}

.tool-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tool-card-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f2f2f2;
  color: #333;
  font-size: 13px;
  font-weight: 700;
}

.tool-card-link {
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 800;
}

.tool-card-link:hover,
.tool-card-link:focus-visible {
  text-decoration: underline;
}

@media (max-width: 940px) {
  .tools-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .tools-sidebar {
    position: static;
  }
}

@media (max-width: 720px) {
  .tools-hero {
    padding: 54px 18px 48px;
  }

  .tools-directory {
    padding: 42px 16px 66px;
  }

  .tools-content-top {
    display: block;
  }

  .tools-count {
    margin-top: 10px;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .tools-sidebar,
  .tool-card {
    padding: 21px;
  }
}


/* =========================================================
   Articles Page
   Add this to assets/css/style.css
   ========================================================= */

.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;
}

.articles-page {
  background: #fff;
}

.articles-hero {
  position: relative;
  min-height: 400px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(20, 20, 18, .18), rgba(255, 255, 255, .12)),
    linear-gradient(135deg, #e9dec8 0%, #1c241e 42%, #f0f2ec 74%, #e5e7df 100%);
  isolation: isolate;
}

.articles-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(166deg, transparent 0 19%, rgba(18, 22, 17, .95) 19.3% 27%, transparent 27.4%),
    linear-gradient(172deg, transparent 0 29%, rgba(42, 44, 37, .9) 29.2% 37%, transparent 37.4%),
    linear-gradient(170deg, transparent 0 43%, rgba(18, 22, 17, .92) 43.2% 51%, transparent 51.4%),
    radial-gradient(circle at 22% 68%, rgba(22, 95, 92, .45), transparent 19%),
    radial-gradient(circle at 8% 14%, rgba(166, 103, 70, .38), transparent 18%);
}

.articles-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .10);
  z-index: -1;
}

.articles-hero-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.articles-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1;
  font-weight: 800;
  text-shadow: 0 3px 8px rgba(0, 0, 0, .32);
}

.articles-directory {
  padding: 34px 0 90px;
}

.articles-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.articles-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 34px;
  margin-bottom: 54px;
  font-size: 17px;
  font-weight: 800;
}

.articles-tabs a {
  position: relative;
  padding: 8px 0 12px;
}

.articles-tabs a:hover,
.articles-tabs a:focus-visible {
  color: var(--teal-dark, #227f78);
}

.articles-tabs a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--teal, #2d9a92);
}

.articles-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.articles-toolbar h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.1;
  font-weight: 800;
}

.articles-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.articles-controls select,
.article-search-wrap input {
  height: 40px;
  border: 1px solid #d9dfe7;
  border-radius: 7px;
  background: #fff;
  color: #17202a;
  font: inherit;
  font-size: 15px;
}

.articles-controls select {
  width: 220px;
  padding: 0 14px;
  appearance: none;
}

.article-search-wrap {
  position: relative;
}

.article-search-wrap input {
  width: 220px;
  padding: 0 42px 0 14px;
}

.article-search-wrap svg {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  fill: #9aa5b1;
  pointer-events: none;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px 32px;
}

.article-card {
  min-width: 0;
}

.article-image {
  position: relative;
  min-height: 160px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 8px;
  padding: 24px;
  color: #fff;
  font-size: clamp(22px, 2.2vw, 33px);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 22px;
  isolation: isolate;
}

.article-image::before,
.article-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.article-image::after {
  border: 8px solid rgba(255, 255, 255, .86);
  border-left: 0;
  border-bottom: 0;
  border-radius: 50% 0 0 0;
  width: 42%;
  height: 105%;
  left: auto;
  bottom: -20%;
  right: -5%;
  opacity: .88;
}

.article-image span {
  max-width: 70%;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}

.article-image-one::before {
  background:
    radial-gradient(circle at 76% 42%, rgba(255, 255, 255, .24), transparent 22%),
    linear-gradient(135deg, #96627b 0%, #96627b 56%, #d9ccd5 56% 100%);
}

.article-image-two::before,
.article-image-five::before,
.article-image-six::before {
  background:
    linear-gradient(135deg, #790815 0%, #790815 59%, #c4a0ad 59% 100%);
}

.article-image-three::before {
  background:
    radial-gradient(circle at 76% 42%, rgba(255, 255, 255, .18), transparent 22%),
    linear-gradient(135deg, #4d4b68 0%, #4d4b68 58%, #111 58% 100%);
}

.article-image-four::before {
  background:
    radial-gradient(circle at 78% 41%, rgba(255, 255, 255, .2), transparent 22%),
    linear-gradient(135deg, #e59866 0%, #e59866 58%, #9e3b2e 58% 100%);
}

.article-card time {
  display: block;
  margin: 0 0 12px;
  font-size: 16px;
  color: #000;
}

.article-card h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -.02em;
}

.article-card h3 a:hover,
.article-card h3 a:focus-visible {
  color: var(--teal-dark, #227f78);
}

.articles-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 90px;
}

.articles-pagination a,
.articles-pagination span {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d6dce3;
  border-radius: 4px;
  background: #172334;
  color: #fff;
  font-size: 15px;
}

.articles-pagination a.current,
.articles-pagination a.disabled {
  background: #fff;
  color: #9aa3ad;
}

.articles-pagination a.current {
  color: #8d98a5;
}

.articles-pagination a:hover:not(.disabled),
.articles-pagination a:focus-visible:not(.disabled) {
  background: var(--teal-dark, #227f78);
  color: #fff;
}

@media (max-width: 980px) {
  .articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .articles-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .articles-hero {
    min-height: 300px;
  }

  .articles-directory {
    padding-top: 24px;
  }

  .articles-tabs {
    gap: 14px 24px;
    margin-bottom: 36px;
  }

  .articles-controls {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .articles-controls select,
  .article-search-wrap input {
    width: 100%;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .articles-pagination {
    flex-wrap: wrap;
    margin-top: 60px;
  }
}


/* =========================================================
   Single Article Page
   Add to /assets/css/style.css
   ========================================================= */

.article-page {
  background: #fff;
  color: #07111f;
}

.single-article {
  width: 100%;
}

.article-header {
  border-top: 1px solid #e2e8ee;
  padding: 54px 20px 0;
}

.article-header-inner,
.article-body-wrap {
  max-width: 1440px;
  margin: 0 auto;
}

.article-header h1 {
  margin: 0 0 42px;
  text-align: center;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #080d15;
}

.article-feature-image {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 240px;
  overflow: hidden;
  background: #93677c;
}

.article-feature-photo {
  min-height: 240px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at 30% 25%, #f6f0f4 0 12%, transparent 13%),
    linear-gradient(135deg, #d7ced4, #7e727b);
  border-right: 5px solid #fff;
}

.article-feature-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px 40px;
  color: #fff;
}

.article-feature-brand {
  position: absolute;
  right: 34px;
  top: 28px;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.92;
  text-transform: uppercase;
}

.article-feature-title {
  max-width: 520px;
  font-size: 36px;
  line-height: 1.12;
  font-weight: 800;
}

.article-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 52px 4px 70px;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 18px;
}

.article-author-photo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #cbdadd;
  color: #0b4f4b;
  font-size: 13px;
  font-weight: 800;
}

.article-author-name,
.article-author-role {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.article-author-name {
  font-weight: 800;
}

.article-published {
  text-align: right;
  color: #8b91a1;
}

.article-published span,
.article-published time {
  display: block;
  font-size: 15px;
  line-height: 1.35;
}

.article-published time {
  font-weight: 800;
}

.article-body-wrap {
  border-top: 1px solid #dce3e8;
  padding: 30px 20px 70px;
}

.article-body {
  max-width: 890px;
  margin: 0 auto;
  font-family: Georgia, 'Times New Roman', serif;
  color: #14213d;
}

.article-body p {
  margin: 0 0 24px;
  font-size: 22px;
  line-height: 1.42;
}

.article-body h2 {
  margin: 42px 0 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  line-height: 1.2;
  color: #080d15;
}

.article-body blockquote {
  margin: 36px 0;
  padding: 24px 30px;
  border-left: 5px solid #2e9691;
  background: #f2f7f7;
}

.article-body blockquote p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 700;
}

.article-signup {
  max-width: 560px;
  margin: 84px auto 64px;
  padding: 28px 28px 24px;
  background: #d6e4e7;
  border-radius: 6px;
}

.article-signup h2 {
  margin: 0 0 34px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
}

.article-signup p {
  margin: 0 0 26px;
  font-size: 17px;
  line-height: 1.55;
}

.article-signup form {
  margin-top: 10px;
}

.article-signup input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d9dee4;
  border-radius: 6px;
  padding: 0 14px;
  font-size: 16px;
  background: #fff;
  box-sizing: border-box;
}

.article-signup button {
  margin-top: 26px;
  border: 1px solid #1d7874;
  border-radius: 7px;
  background: #2e9691;
  color: #fff;
  min-height: 43px;
  padding: 0 15px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.article-signup button:hover {
  background: #267f7b;
}

.related-articles {
  max-width: 890px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid #dce3e8;
}

.related-articles h2 {
  margin: 0 0 28px;
  text-align: center;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
}

.related-articles ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #dce3e8;
}

.related-articles li {
  border-bottom: 1px solid #dce3e8;
}

.related-articles a {
  display: block;
  padding: 18px 0;
  color: #05080d;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
}

.related-articles a:hover {
  color: #2e9691;
}

.related-articles span {
  color: #8a8f98;
}

@media (max-width: 900px) {
  .article-header {
    padding-top: 42px;
  }

  .article-header h1 {
    font-size: 38px;
    margin-bottom: 32px;
  }

  .article-feature-image {
    grid-template-columns: 1fr;
  }

  .article-feature-photo {
    min-height: 180px;
    border-right: 0;
    border-bottom: 5px solid #fff;
  }

  .article-feature-brand {
    position: static;
    margin-bottom: 70px;
    font-size: 22px;
  }

  .article-feature-title {
    font-size: 30px;
  }

  .article-meta-row {
    padding: 36px 0 44px;
  }

  .article-body p,
  .article-body blockquote p {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .article-header h1 {
    font-size: 32px;
  }

  .article-feature-copy {
    padding: 26px 24px;
  }

  .article-feature-title {
    font-size: 26px;
  }

  .article-meta-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-published {
    text-align: left;
  }

  .article-body-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .article-body p,
  .article-body blockquote p {
    font-size: 18px;
  }

  .article-signup {
    margin-top: 54px;
    padding: 24px 20px;
  }
}