:root {
  --bg: #fdfcf8;
  --bg-alt: #f2f7fb;
  --surface: #ffffff;
  --surface-strong: #fffefa;
  --text: #21303b;
  --muted: #5b6f7f;
  --line: #d8e6f0;
  --line-strong: #c5dbe8;
  --primary: #2d8cac;
  --primary-deep: #226d87;
  --secondary: #f0a563;
  --success: #69ae86;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-xl: 0 30px 76px rgba(21, 45, 61, 0.16);
  --shadow-lg: 0 16px 42px rgba(21, 45, 61, 0.12);
  --shadow-md: 0 10px 26px rgba(21, 45, 61, 0.1);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.62;
  background:
    radial-gradient(circle at 12% -8%, rgba(240, 165, 99, 0.28) 0%, rgba(240, 165, 99, 0) 36%),
    radial-gradient(circle at 88% 0%, rgba(45, 140, 172, 0.24) 0%, rgba(45, 140, 172, 0) 34%),
    linear-gradient(180deg, var(--bg) 0%, #f8fbff 48%, var(--bg-alt) 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(var(--max-width), calc(100% - 2.4rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 14px;
  top: 14px;
  background: #0f1f2b;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(212, 227, 236, 0.9);
  backdrop-filter: blur(15px);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(18, 44, 59, 0.22);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.94rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.language-picker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.96);
}

.language-picker label {
  font-size: 0.8rem;
  color: var(--muted);
}

.language-picker select {
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--text);
  outline: none;
}

.hero {
  padding: 42px 0 70px;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(212, 229, 239, 0.95);
  background:
    radial-gradient(circle at 8% 12%, rgba(240, 165, 99, 0.2) 0%, rgba(240, 165, 99, 0) 48%),
    radial-gradient(circle at 91% 10%, rgba(45, 140, 172, 0.2) 0%, rgba(45, 140, 172, 0) 42%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 251, 255, 0.94) 56%, rgba(255, 252, 247, 0.95) 100%);
  box-shadow: var(--shadow-xl);
  padding: clamp(20px, 4vw, 38px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(16px, 4vw, 42px);
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary-deep);
  background: rgba(45, 140, 172, 0.14);
  border: 1px solid rgba(45, 140, 172, 0.22);
  border-radius: 999px;
  padding: 8px 13px;
}

.hero h1 {
  margin: 14px 0 12px;
  font-family: "Fraunces", "Iowan Old Style", serif;
  font-size: clamp(2.08rem, 4.2vw, 3.4rem);
  line-height: 1.07;
  letter-spacing: -0.02em;
}

.hero p {
  margin: 0;
  color: var(--muted);
  max-width: 64ch;
  font-size: 1.03rem;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  padding: 12px 20px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(128deg, #23748f, #2d8cac 55%, #4ea2be);
  box-shadow: 0 16px 34px rgba(34, 109, 135, 0.34);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line-strong);
  color: var(--text);
}

.feature-pills {
  margin-top: 20px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.feature-pills li {
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #d5e6ef;
  border-radius: 999px;
  padding: 7px 12px;
}

.hero-stats {
  margin-top: 18px;
  max-width: 620px;
}

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

.stat {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #d8e8f1;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 9px 22px rgba(13, 35, 49, 0.08);
}

.stat strong {
  display: block;
  font-size: 1.18rem;
  color: var(--primary-deep);
}

.stat span {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-visual {
  margin: 0;
  position: relative;
  justify-self: center;
  width: min(100%, 430px);
}

.hero-main-image {
  width: 100%;
  border-radius: 28px;
  border: 1px solid #d8e9f2;
  box-shadow:
    0 34px 70px rgba(22, 45, 58, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-float-image {
  position: absolute;
  right: -40px;
  bottom: -26px;
  width: min(48%, 200px);
  border-radius: 22px;
  border: 1px solid #d6e6f0;
  background: #fff;
  box-shadow: 0 20px 40px rgba(22, 45, 58, 0.2);
}

.hero-visual figcaption {
  margin-top: 12px;
  text-align: center;
  color: #4b6373;
  font-size: 0.84rem;
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-glow-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
}

.hero-glow-orb.one {
  width: 300px;
  height: 300px;
  left: -90px;
  top: -140px;
  background: radial-gradient(circle, rgba(45, 140, 172, 0.24) 0%, rgba(45, 140, 172, 0) 70%);
}

.hero-glow-orb.two {
  width: 280px;
  height: 280px;
  right: -80px;
  bottom: -130px;
  background: radial-gradient(circle, rgba(240, 165, 99, 0.22) 0%, rgba(240, 165, 99, 0) 72%);
}

.hero-glow-orb.three {
  width: 170px;
  height: 170px;
  right: 30%;
  top: -72px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0) 75%);
}

.section {
  padding: 64px 0;
}

.section-surface .container {
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 2%, rgba(240, 165, 99, 0.13) 0%, rgba(240, 165, 99, 0) 44%),
    radial-gradient(circle at 88% 0%, rgba(45, 140, 172, 0.12) 0%, rgba(45, 140, 172, 0) 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 255, 0.9));
  box-shadow: var(--shadow-lg);
  padding: clamp(18px, 4vw, 34px);
}

.section h2 {
  margin: 0;
  font-family: "Fraunces", "Iowan Old Style", serif;
  font-size: clamp(1.64rem, 3vw, 2.32rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
}

.section-intro {
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 72ch;
}

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

.gallery-card {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #d6e7f0;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(247, 251, 255, 0.91));
  box-shadow: 0 14px 30px rgba(17, 38, 52, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gallery-card:hover,
.gallery-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(17, 38, 52, 0.14);
}

.gallery-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid #deebf3;
}

.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-copy {
  padding: 16px;
}

.gallery-copy h3 {
  margin: 0;
  font-size: 1.12rem;
  font-family: "Fraunces", "Iowan Old Style", serif;
}

.gallery-copy p {
  margin: 8px 0 0;
  color: #526778;
  font-size: 0.94rem;
}

.gallery-points {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.gallery-points li {
  position: relative;
  padding-left: 15px;
  color: #425869;
  font-size: 0.84rem;
}

.gallery-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(125deg, var(--primary), var(--secondary));
}

.feature-key-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.feature-key-item {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #d9e8f1;
  border-left: 4px solid var(--primary);
  border-radius: 15px;
  padding: 12px;
  box-shadow: var(--shadow-md);
}

.feature-key-item h3 {
  margin: 0;
  font-size: 1rem;
}

.feature-key-item p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.features-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d8e8f1;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(21, 34, 45, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(21, 34, 45, 0.11);
}

.feature-card h3 {
  margin: 2px 0 8px;
  font-size: 1.08rem;
  font-family: "Fraunces", "Iowan Old Style", serif;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.feature-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.reviews-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 252, 255, 0.9));
  border: 1px solid #d9e8f1;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 11px 23px rgba(21, 34, 45, 0.07);
}

.review-stars {
  color: #d08634;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.review-card p {
  margin: 10px 0 12px;
}

.review-meta {
  color: var(--muted);
  font-size: 0.86rem;
}

.disclaimer {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.85rem;
}

.contact-layout {
  margin-top: 24px;
  max-width: 780px;
}

.contact-card,
.privacy-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 253, 255, 0.92));
  border: 1px solid #d9e8f1;
  border-radius: 20px;
  padding: clamp(16px, 2.8vw, 24px);
  box-shadow: 0 14px 30px rgba(21, 34, 45, 0.1);
}

form {
  display: grid;
  gap: 12px;
}

label {
  font-size: 0.88rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid #ccdde8;
  border-radius: 11px;
  padding: 10px 12px;
  background: #fcfeff;
  font: inherit;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #73afc5;
  box-shadow: 0 0 0 4px rgba(45, 140, 172, 0.15);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--muted);
}

.checkbox-row input {
  margin-top: 3px;
  width: auto;
}

.form-status {
  font-size: 0.88rem;
  color: var(--primary);
  min-height: 1.2em;
}

.privacy-card h3 {
  margin: 18px 0 8px;
  font-size: 1.02rem;
  font-family: "Fraunces", "Iowan Old Style", serif;
}

.privacy-card p {
  margin: 0 0 10px;
  color: var(--muted);
}

.privacy-lead {
  margin-top: 10px;
}

.privacy-list {
  margin: 0 0 8px;
  padding-left: 18px;
  color: var(--muted);
}

.site-footer {
  padding: 28px 0 36px;
  border-top: 1px solid rgba(212, 225, 234, 0.95);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 0.87rem;
}

.blog-layout {
  max-width: 1080px;
  position: relative;
}

.blog-hero {
  border: 1px solid rgba(207, 223, 234, 0.95);
  border-radius: 24px;
  background:
    radial-gradient(circle at 6% 6%, rgba(45, 140, 172, 0.13) 0%, rgba(45, 140, 172, 0) 48%),
    radial-gradient(circle at 96% 10%, rgba(240, 165, 99, 0.12) 0%, rgba(240, 165, 99, 0) 48%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(246, 251, 255, 0.9));
  box-shadow: 0 20px 46px rgba(13, 30, 45, 0.1);
  padding: clamp(18px, 3.2vw, 30px);
  margin-bottom: 18px;
}

.blog-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.blog-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(211, 226, 236, 0.96);
  border-radius: 20px;
  padding: 16px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 255, 0.92)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(13, 30, 45, 0.09);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 320px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-card::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(45, 140, 172, 0.72), rgba(240, 165, 99, 0.66));
}

.blog-card:hover,
.blog-card:focus-within {
  transform: translateY(-3px);
  border-color: #b9d2e2;
  box-shadow: 0 18px 34px rgba(13, 30, 45, 0.14);
}

.blog-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.blog-card h2 {
  margin: 0;
  font-family: "Fraunces", "Iowan Old Style", serif;
  font-size: 1.1rem;
  line-height: 1.34;
}

.blog-card h2 a {
  text-decoration: none;
  color: #11283a;
}

.blog-card-meta {
  margin: 0;
  color: #5e7586;
  font-size: 0.79rem;
}

.blog-card-readtime {
  flex-shrink: 0;
  font-size: 0.74rem;
  color: #216f88;
  border-radius: 999px;
  border: 1px solid rgba(45, 140, 172, 0.26);
  background: rgba(45, 140, 172, 0.1);
  padding: 4px 9px;
}

.blog-card-category {
  align-self: flex-start;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #39576b;
  border: 1px solid #d4e3ed;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 4px 10px;
}

.blog-card-excerpt {
  margin: 0;
  color: #486071;
  line-height: 1.5;
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.blog-readmore {
  margin-top: auto;
  align-self: flex-start;
}

.blog-breadcrumb {
  margin: 0 0 10px;
  font-size: 0.86rem;
  color: #627786;
}

.blog-breadcrumb a {
  color: inherit;
}

.blog-tags {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.blog-tags span {
  font-size: 0.74rem;
  border-radius: 999px;
  border: 1px solid #d5e4ed;
  background: rgba(255, 255, 255, 0.95);
  color: #4d6576;
  padding: 5px 9px;
}

.blog-empty-card {
  grid-column: 1 / -1;
  border: 1px dashed #bfd5e3;
  border-radius: 20px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 26px rgba(13, 30, 45, 0.07);
  text-align: left;
}

.blog-empty-card h2 {
  margin: 0 0 8px;
}

.blog-empty-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.blog-article {
  max-width: 900px;
  border: 1px solid rgba(209, 223, 234, 0.95);
  border-radius: 24px;
  background:
    radial-gradient(circle at 98% 0%, rgba(45, 140, 172, 0.08) 0%, rgba(45, 140, 172, 0) 40%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.93));
  box-shadow: 0 20px 44px rgba(13, 30, 45, 0.1);
  padding: clamp(18px, 3vw, 32px);
}

.blog-article h1 {
  margin: 0;
  font-family: "Fraunces", "Iowan Old Style", serif;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.18;
}

.blog-article-header {
  margin-bottom: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(212, 225, 234, 0.9);
}

.blog-article-header .blog-card-category {
  display: inline-flex;
  margin-bottom: 12px;
}

.blog-meta-row {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-meta-line {
  margin: 0;
  color: #557082;
  font-size: 0.88rem;
  border: 1px solid #d4e3ed;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 10px;
}

.blog-excerpt {
  margin: 10px 0 0;
  color: #42596c;
  font-size: 1.03rem;
  line-height: 1.6;
}

.blog-section-block {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(215, 227, 236, 0.84);
}

.blog-section-block h2 {
  margin: 0 0 8px;
  font-family: "Fraunces", "Iowan Old Style", serif;
  font-size: 1.21rem;
  line-height: 1.28;
}

.blog-section-block p {
  margin: 0 0 10px;
  color: #2f4352;
  line-height: 1.67;
}

.blog-section-block ul {
  margin: 0;
  padding-left: 18px;
  color: #2f4352;
  line-height: 1.6;
}

.blog-faq {
  margin-top: 24px;
}

.blog-faq h2 {
  margin: 0 0 10px;
  font-size: 1.26rem;
}

.blog-faq details {
  border: 1px solid #d3e2eb;
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.92);
  margin-bottom: 8px;
}

.blog-faq summary {
  cursor: pointer;
  font-weight: 600;
}

.blog-faq details p {
  margin: 8px 0 0;
  color: #3d5363;
}

.blog-cta-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-visual {
    width: min(100%, 380px);
  }

  .hero-float-image {
    width: min(44%, 188px);
    right: -20px;
    bottom: -20px;
  }

  .feature-key-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid,
  .reviews-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--max-width), calc(100% - 1.4rem));
  }

  .header-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }

  .main-nav {
    gap: 12px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-shell {
    border-radius: 24px;
    padding: 18px;
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    width: 100%;
  }

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

  .hero-float-image {
    display: none;
  }

  .section {
    padding: 50px 0;
  }

  .section-surface .container {
    border-radius: 22px;
    padding: 16px;
  }

  .feature-key-list,
  .features-grid,
  .gallery-grid,
  .reviews-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-card {
    min-height: auto;
  }

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

  .blog-cta-row .button {
    width: 100%;
  }

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