/* Vector Dockcore — vibrant creative theme */
:root {
  --ink: #0b2e2b;
  --ink-soft: #1a4a45;
  --paper: #f4fffc;
  --coral: #ff5a5f;
  --coral-deep: #e63b42;
  --teal: #00c2a8;
  --teal-deep: #009e88;
  --sun: #ffe66d;
  --line: rgba(11, 46, 43, 0.12);
  --shadow: 0 18px 50px rgba(11, 46, 43, 0.12);
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --max: 1120px;
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(255, 90, 95, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 5%, rgba(0, 194, 168, 0.2), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255, 230, 109, 0.22), transparent 55%),
    var(--paper);
  line-height: 1.65;
  min-height: 100vh;
}

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

a {
  color: var(--teal-deep);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--coral-deep);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(244, 255, 252, 0.88);
  border-bottom: 2px solid var(--line);
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, var(--coral), var(--sun) 55%, var(--teal));
  box-shadow: 0 6px 0 rgba(11, 46, 43, 0.15);
  position: relative;
  transform: rotate(-6deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  background: var(--ink);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--ink);
  border-radius: 0.6rem;
  padding: 0.45rem 0.55rem;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--ink);
  margin: 0.28rem 0;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.92rem;
}

.site-nav a:hover {
  color: var(--coral);
}

.site-nav .nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--sun);
}

.site-nav .nav-cta:hover {
  background: var(--coral);
  box-shadow: 4px 4px 0 var(--teal);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(var(--header-h) + 0.35rem);
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .nav-cta {
    text-align: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translate(-2px, -2px);
}

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 5px 5px 0 var(--ink);
}

.btn-primary:hover {
  background: var(--coral-deep);
  color: #fff;
  box-shadow: 7px 7px 0 var(--ink);
}

.btn-secondary {
  background: var(--sun);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--teal);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: 4px 4px 0 transparent;
}

.btn-ghost:hover {
  background: rgba(0, 194, 168, 0.12);
  box-shadow: 4px 4px 0 var(--ink);
}

.shape-blob {
  position: absolute;
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  pointer-events: none;
  z-index: 0;
  animation: floaty 9s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(4deg); }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pop {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.reveal {
  animation: rise-in 0.7s ease both;
}

.reveal-delay {
  animation: rise-in 0.7s ease 0.15s both;
}

.reveal-delay-2 {
  animation: rise-in 0.7s ease 0.3s both;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(11, 46, 43, 0.88) 0%, rgba(11, 46, 43, 0.45) 48%, rgba(255, 90, 95, 0.35) 100%);
}

.hero-content {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto 4.5rem;
  color: #fff;
  max-width: 38rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 0.75rem;
  text-shadow: 0 8px 0 rgba(0, 0, 0, 0.18);
}

.hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  opacity: 0.95;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero .btn-primary {
  box-shadow: 5px 5px 0 var(--sun);
}

.hero-deco {
  position: absolute;
  width: 7rem;
  height: 7rem;
  border: 3px solid var(--sun);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  right: 8%;
  top: 18%;
  opacity: 0.7;
  animation: floaty 7s ease-in-out infinite;
}

.hero-deco-2 {
  position: absolute;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--teal);
  border-radius: 1rem;
  left: 12%;
  top: 28%;
  transform: rotate(18deg);
  opacity: 0.85;
  animation: floaty 8s ease-in-out 0.5s infinite;
}

.section {
  padding: 4.5rem 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, rgba(0, 194, 168, 0.08), rgba(255, 230, 109, 0.12));
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  max-width: 18ch;
}

.section-lead {
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--coral-deep);
  margin-bottom: 0.6rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

.proof-item {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: 6px 6px 0 var(--teal);
  animation: pop 0.55s ease both;
}

.proof-item:nth-child(2) {
  box-shadow: 6px 6px 0 var(--coral);
  animation-delay: 0.08s;
}

.proof-item:nth-child(3) {
  box-shadow: 6px 6px 0 var(--sun);
  animation-delay: 0.16s;
}

.proof-num {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  margin: 0;
}

.proof-label {
  margin: 0.25rem 0 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

@media (max-width: 700px) {
  .proof-strip {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }
}

.benefit-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.benefit-main,
.benefit-side {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.benefit-main {
  background:
    linear-gradient(145deg, rgba(255, 90, 95, 0.1), transparent 50%),
    #fff;
  box-shadow: 8px 8px 0 var(--sun);
}

.benefit-side {
  box-shadow: 8px 8px 0 var(--teal);
}

.benefit-side + .benefit-side {
  box-shadow: 8px 8px 0 var(--coral);
}

.benefit-list {
  display: grid;
  gap: 1rem;
}

@media (max-width: 800px) {
  .benefit-mosaic {
    grid-template-columns: 1fr;
  }
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.35rem;
  margin-top: 2rem;
}

.course-tile {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 7px 7px 0 rgba(11, 46, 43, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.course-tile:hover {
  transform: translate(-3px, -3px);
  box-shadow: 10px 10px 0 var(--coral);
  color: inherit;
}

.course-tile img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.course-tile-body {
  padding: 1.15rem 1.25rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-tile h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.course-meta {
  margin-top: auto;
  padding-top: 0.85rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal-deep);
}

.quote-stack {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.quote {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  position: relative;
}

.quote:nth-child(odd) {
  box-shadow: 6px 6px 0 var(--sun);
  transform: rotate(-0.4deg);
}

.quote:nth-child(even) {
  box-shadow: 6px 6px 0 var(--teal);
  margin-left: clamp(0rem, 6vw, 3rem);
  transform: rotate(0.5deg);
}

.quote p {
  font-size: 1.05rem;
}

.quote footer {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.quote-stars {
  color: var(--coral);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.cta-band {
  margin: 2rem 0 4rem;
  border: 2px solid var(--ink);
  border-radius: calc(var(--radius) + 0.35rem);
  padding: 2.5rem 2rem;
  background: linear-gradient(120deg, var(--coral) 0%, #ff8a5b 40%, var(--sun) 100%);
  color: #fff;
  box-shadow: 10px 10px 0 var(--ink);
  text-align: center;
}

.cta-band h2 {
  color: #fff;
  max-width: none;
  margin-inline: auto;
}

.cta-band p {
  max-width: 36rem;
  margin-inline: auto;
}

.cta-band .btn-secondary {
  margin-top: 0.5rem;
}

.page-hero {
  padding: 3.5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  max-width: 16ch;
}

.page-hero-media {
  margin-top: 1.75rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 10px 10px 0 var(--teal);
  max-height: 340px;
}

.page-hero-media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
  align-items: stretch;
}

.price-plan {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-plan.featured {
  background: linear-gradient(160deg, rgba(0, 194, 168, 0.15), #fff 45%);
  box-shadow: 8px 8px 0 var(--coral);
  transform: translateY(-6px);
}

.price-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0;
}

.price-amount span {
  font-size: 0.95rem;
  font-weight: 600;
}

.price-plan ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.1rem;
  flex: 1;
}

.price-plan li {
  margin-bottom: 0.45rem;
}

.price-note {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.form-panel {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 8px 8px 0 var(--sun);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 194, 168, 0.35);
  border-color: var(--teal);
}

.field-error {
  color: var(--coral-deep);
  font-size: 0.85rem;
  font-weight: 600;
  min-height: 1.1em;
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: none;
}

.form-status.is-success {
  display: block;
  background: rgba(0, 194, 168, 0.15);
  border: 2px solid var(--teal);
}

.form-status.is-error {
  display: block;
  background: rgba(255, 90, 95, 0.12);
  border: 2px solid var(--coral);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 800px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.address-block {
  background: linear-gradient(160deg, rgba(255, 230, 109, 0.35), #fff);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 7px 7px 0 var(--coral);
}

.blog-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.blog-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.25rem;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 6px 6px 0 rgba(11, 46, 43, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--teal);
  color: inherit;
}

.blog-item img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}

.blog-item-body {
  padding: 1.1rem 1.2rem 1.2rem 0;
}

@media (max-width: 700px) {
  .blog-item {
    grid-template-columns: 1fr;
  }

  .blog-item-body {
    padding: 0 1.1rem 1.2rem;
  }
}

.article {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 3rem;
}

.article-hero img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--sun);
  margin: 1.5rem 0 2rem;
}

.article h2 {
  margin-top: 2rem;
  font-size: 1.55rem;
}

.module-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0;
}

.module {
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  background: #fff;
}

.module h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.instructor {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.25rem;
  align-items: center;
  margin: 1.5rem 0;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 6px 6px 0 var(--teal);
}

.instructor img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--coral);
}

.faq details {
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.75rem;
  background: #fff;
}

.faq summary {
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
}

.outcomes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.85rem;
  margin: 1.25rem 0 2rem;
}

.outcome {
  background: rgba(0, 194, 168, 0.1);
  border-left: 4px solid var(--teal);
  padding: 0.85rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.legal {
  max-width: 760px;
  margin: 0 auto 3rem;
}

.legal h2 {
  margin-top: 2rem;
  font-size: 1.4rem;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.92rem;
}

.cookie-table th,
.cookie-table td {
  border: 2px solid var(--line);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.cookie-table th {
  background: rgba(0, 194, 168, 0.12);
  font-family: var(--font-display);
}

.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1rem;
}

.error-page .code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 8rem);
  line-height: 1;
  background: linear-gradient(120deg, var(--coral), var(--sun), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 520px;
  margin-inline: auto;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  box-shadow: 8px 8px 0 var(--coral);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
  animation: rise-in 0.35s ease both;
}

.cookie-banner p {
  font-size: 0.92rem;
  margin-bottom: 0.9rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cookie-actions .btn {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

.inline-error {
  background: rgba(255, 90, 95, 0.12);
  border: 2px solid var(--coral);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--coral-deep);
  font-weight: 600;
  margin: 0.75rem 0;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-grid {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 1.75rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.6rem;
  color: #fff;
}

.footer-tag {
  font-size: 0.92rem;
  opacity: 0.85;
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--sun);
  margin: 0 0 0.65rem;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--teal);
}

.footer-contact p {
  font-size: 0.88rem;
  margin-bottom: 0.65rem;
}

.footer-bottom {
  width: min(100% - 2rem, var(--max));
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.88rem;
  opacity: 0.75;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 750px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.chip {
  display: inline-block;
  background: rgba(255, 230, 109, 0.55);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.case-study {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.25rem;
  box-shadow: 7px 7px 0 var(--sun);
}

.case-study + .case-study {
  box-shadow: 7px 7px 0 var(--teal);
}

.prose-wide {
  max-width: 640px;
}
