/* ===================================================
   CASE STUDY PAGE — case-study.css
   Modern, minimal, typography-forward
   =================================================== */

/* ─── RESET & BODY ─── */
.cs-page {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
}

/* ─── NAVIGATION ─── */
.cs-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}

.cs-nav.scrolled {
  background: var(--nav-bg);
  border-color: var(--border);
}

[data-theme="dark"] .cs-nav.scrolled {
  background: rgba(10,10,12,0.92);
}

.cs-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 60px;
  gap: 1.5rem;
}

.cs-nav__back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s, gap 0.2s;
  flex-shrink: 0;
}

.cs-nav__back:hover {
  color: var(--text);
  gap: 0.7rem;
}

.cs-nav__title {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}

.cs-nav__title.visible {
  opacity: 1;
  transform: translateY(0);
}

.cs-nav__right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Theme toggle */
.cs-theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
}

.cs-theme-toggle:hover {
  background: var(--bg-card);
  color: var(--text);
}

[data-theme="light"] .icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }

/* Reading progress bar */
.cs-nav__progress {
  height: 2px;
  background: transparent;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  transition: width 0.1s linear;
}

/* ─── MAIN LAYOUT ─── */
.cs-main {
  padding-top: 60px;
}

/* ─── HERO ─── */
.cs-hero {
  padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 8vw, 16rem);
  max-width: 900px;
  margin: 0 auto;
}

.cs-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.cs-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: transparent;
}

.cs-hero__title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.cs-hero__title em {
  font-style: italic;
  color: var(--text-muted);
}

.cs-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 3rem;
  font-weight: 300;
}

/* Stats row */
.cs-hero__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.cs-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0 2.5rem 0 0;
}

.cs-stat:first-child {
  padding-left: 0;
}

.cs-stat__value {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  font-family: 'Instrument Serif', serif;
}

.cs-stat__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-subtle);
  font-weight: 500;
}

.cs-stat__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 2.5rem;
  flex-shrink: 0;
}

/* ─── COVER IMAGE ─── */
.cs-cover {
  padding: 0 clamp(1rem, 4vw, 6rem);
  margin-bottom: 0;
}

.cs-cover__img {
  width: 100%;
  height: clamp(280px, 50vw, 600px);
  object-fit: cover;
  display: block;
}

/* ─── BODY CONTENT ─── */
.cs-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

/* ─── SECTION ─── */
.cs-section {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.cs-section:last-of-type {
  border-bottom: none;
}

.cs-section__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  padding-top: 0.35rem;
  white-space: nowrap;
}

.cs-section__heading {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.cs-subheading {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin: 2.5rem 0 1.2rem;
}

/* ─── PROSE ─── */
.cs-prose {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-weight: 400;
}

/* ─── CALLOUT ─── */
.cs-callout {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-left: 3px solid #6366f1;
  padding: 1.2rem 1.5rem;
  background: rgba(99,102,241,0.05);
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
}

.cs-callout__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.cs-callout p {
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

/* ─── METHODS ─── */
.cs-methods {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 2rem 0;
}

.cs-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.cs-method__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-method strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.cs-method p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ─── INSIGHTS ─── */
.cs-insights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.cs-insight {
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.2rem;
  border-radius: 8px;
  background: var(--bg-card);
  transition: background 0.2s;
}

.cs-insight:hover {
  background: var(--bg-card);
}

.cs-insight__num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #6366f1;
  flex-shrink: 0;
}

.cs-insight p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ─── PERSONAS ─── */
.cs-personas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.cs-persona {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
}

.cs-persona__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #6366f1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.cs-persona__name {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.cs-persona__role {
  font-size: 0.78rem;
  color: var(--text-subtle);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.cs-persona__quote {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-muted);
  margin: 0.8rem 0 0;
  line-height: 1.6;
  border-left: 2px solid var(--border);
  padding-left: 0.8rem;
}

/* ─── PRINCIPLES ─── */
.cs-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 1.5rem 0;
}

.cs-principle {
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s, transform 0.2s;
}

.cs-principle:hover {
  border-color: #6366f1;
  transform: translateY(-2px);
}

.cs-principle__icon {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.cs-principle strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.cs-principle p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ─── FULL WIDTH IMAGE ─── */
.cs-full-image {
  margin: 4rem 0;
  padding: 0;
}

.cs-full-image img {
  width: 100%;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

.cs-image-caption {
  font-size: 0.78rem;
  color: var(--text-subtle);
  text-align: center;
  margin: 1rem 0 0;
  letter-spacing: 0.02em;
  line-height: 1.5;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

/* ─── 2-COL IMAGE GRID ─── */
.cs-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.cs-grid-item img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.cs-grid-item .cs-image-caption {
  text-align: left;
  padding: 0;
}

/* ─── COLOR PALETTE ─── */
.cs-palette {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.cs-swatch {
  flex: 1;
  min-width: 100px;
  padding: 1.2rem 1rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #fff;
}

.cs-swatch span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.cs-swatch code {
  font-size: 0.68rem;
  opacity: 0.7;
  font-family: 'SF Mono', 'Fira Code', monospace;
}

/* ─── WALKTHROUGH ─── */
.cs-walkthrough {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 2rem 0 4rem;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.cs-walkthrough__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.cs-walkthrough__item:last-child {
  border-bottom: none;
}

.cs-walkthrough__item--reverse {
  direction: rtl;
}

.cs-walkthrough__item--reverse > * {
  direction: ltr;
}

.cs-walkthrough__image img {
  width: 100%;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
}

.cs-walkthrough__copy .cs-section__label {
  display: block;
  margin-bottom: 0.8rem;
}

.cs-walkthrough__copy h3 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}

.cs-walkthrough__copy p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.cs-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cs-bullet-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}

.cs-bullet-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #6366f1;
  font-weight: 600;
}

/* ─── METRICS ─── */
.cs-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin: 3rem 0;
}

.cs-metric {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}

.cs-metric:last-child {
  border-right: none;
}

.cs-metric:hover {
  background: var(--bg-card);
}

.cs-metric__value {
  font-family: 'Instrument Serif', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}

.cs-metric__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.cs-metric__note {
  font-size: 0.72rem;
  color: var(--text-subtle);
  margin-top: 0.2rem;
}

/* ─── REFLECTIONS ─── */
.cs-reflections {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.cs-reflection {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.cs-reflection__icon {
  font-size: 1.1rem;
  color: var(--text-subtle);
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  margin-top: 0.15rem;
}

.cs-reflection strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.cs-reflection p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ─── NEXT PROJECT ─── */
.cs-next {
  padding: 5rem 0 4rem;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

.cs-next__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 1rem;
}

.cs-next__link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: gap 0.3s, color 0.2s;
}

.cs-next__link:hover {
  gap: 1.5rem;
  color: #6366f1;
}

/* ─── FOOTER ─── */
.cs-footer {
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-subtle);
}

.cs-footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.cs-footer a:hover {
  color: var(--text);
}

/* ─── FADE-UP ANIMATION ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ─── DARK THEME OVERRIDES ─── */
/* Main dark theme variables come from style.css [data-theme="dark"]  */
/* These supplement case-study specific elements */
[data-theme="dark"] .cs-nav.scrolled {
  background: rgba(12, 12, 12, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .cs-insight,
[data-theme="dark"] .cs-persona,
[data-theme="dark"] .cs-principle {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.07);
}

[data-theme="dark"] .cs-principle:hover {
  border-color: #6366f1;
}

[data-theme="dark"] .cs-callout {
  background: rgba(99, 102, 241, 0.08);
}

[data-theme="dark"] .cs-metrics {
  border-color: rgba(255, 255, 255, 0.07);
}

[data-theme="dark"] .cs-metric {
  border-color: rgba(255, 255, 255, 0.07);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .cs-section {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 3rem 0;
  }

  .cs-section__label {
    padding-top: 0;
  }

  .cs-persona { gap: 0.8rem; }

  .cs-personas {
    grid-template-columns: 1fr;
  }

  .cs-principles {
    grid-template-columns: 1fr;
  }

  .cs-grid-2 {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .cs-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .cs-metric {
    border-bottom: 1px solid var(--border);
  }

  .cs-metric:nth-child(2n) {
    border-right: none;
  }

  .cs-walkthrough__item,
  .cs-walkthrough__item--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }

  .cs-walkthrough__image img {
    aspect-ratio: 16/9;
  }

  .cs-hero__stats {
    gap: 1.5rem;
  }

  .cs-stat {
    padding: 0;
  }

  .cs-stat__divider {
    display: none;
  }

  .cs-palette {
    flex-direction: column;
  }

  .cs-swatch {
    min-width: unset;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cs-walkthrough {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .cs-metrics {
    grid-template-columns: 1fr;
  }

  .cs-metric {
    border-right: none;
  }

  .cs-nav__title {
    display: none;
  }
}

/* ─── CASE STUDY PROCESS TIMELINE VISUALIZER ─── */
.cs-timeline-visualizer {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.cs-timeline-visualizer::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}

.cs-timeline-step {
  position: relative;
}

.cs-timeline-step::before {
  content: '';
  position: absolute;
  left: -23px;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--testimonial-green);
  box-shadow: 0 0 0 4px var(--bg);
  z-index: 2;
  transition: transform 0.3s var(--ease);
}

.cs-timeline-step:hover::before {
  transform: scale(1.3);
  background: var(--testimonial-green);
}

.cs-timeline-step__header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.cs-timeline-step__time {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--testimonial-green);
  font-weight: 500;
}

.cs-timeline-step__title {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.cs-timeline-step__desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

[data-theme="dark"] .cs-timeline-visualizer::before {
  background: rgba(255, 255, 255, 0.1);
}

/* ─── BEHANCE LINK CARD SECTION ─── */
.cs-behance-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.75rem 2rem;
  border-radius: 16px;
  margin: 0;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.cs-behance-card:hover {
  border-color: #0057ff;
  box-shadow: 0 12px 30px rgba(0, 87, 255, 0.06);
  transform: translateY(-2px);
}

.cs-behance-card__content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
}

.cs-behance-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(0, 87, 255, 0.08);
  border-radius: 12px;
  color: #0057ff;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.cs-behance-card:hover .cs-behance-card__icon-wrap {
  transform: scale(1.08) rotate(-5deg);
}

.cs-behance-card__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cs-behance-card__title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.cs-behance-card__desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.45;
}

.cs-behance-card__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 20px;
  background: #0057ff;
  color: #ffffff !important;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(0, 87, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
}

.cs-behance-card__button:hover {
  background: #0046cc;
  box-shadow: 0 6px 16px rgba(0, 87, 255, 0.3);
  transform: translateY(-1px);
}

.cs-behance-card__button svg.arrow {
  transition: transform 0.2s;
}

.cs-behance-card__button:hover svg.arrow {
  transform: translate(2px, -2px);
}

/* Responsive */
@media (max-width: 768px) {
  .cs-behance-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.25rem;
  }
  .cs-behance-card__button {
    width: 100%;
    justify-content: center;
  }
}

