/* ============================================================
   casestudy.css — Arc Dashboard Case Study
   Meera Iyer · Portfolio
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --bg: #fff;
  --bg2: #fff;
  --surface: #FFFFFF;
  --ink: #141210;
  --ink2: #33312f;
  --ink3: #7d7977;
  --accent: #2563EB;
  --border: rgba(20, 18, 16, .08);
  --sh-sm: 0 1px 3px rgba(20,18,16,.06), 0 4px 16px rgba(20,18,16,.04);
  --sh-md: 0 4px 24px rgba(20,18,16,.08), 0 1px 3px rgba(20,18,16,.04);
  --sh-lg: 0 12px 48px rgba(20,18,16,.12), 0 2px 8px rgba(20,18,16,.06);
  --r: 12px;
  --r2: 20px;
  --serif: 'Roboto', sans-serif;
  --sans: 'DM Sans', sans-serif;
  --nav-h: 68px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --content-w: 720px;
	--text-1 :  #000;
}

[data-theme="dark"] {
  --bg: #0E0D0C;
  --bg2: #161412;
  --surface: #1C1A18;
  --ink: #F0EDE8;
  --ink2: #8A8480;
  --ink3: #50504C;
  --border: rgba(240, 237, 232, .08);
	--text-1 :  #fff;
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  transition: background .4s, color .4s;
  /* cursor: none; */
}

a { text-decoration: none; color: inherit; }
/* ul { list-style: none; } */
/* button { cursor: pointer; border: none; background: none; font-family: var(--sans); } */

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--ink3); border-radius: 99px; }

/* ---------- Custom Cursor ---------- */
/* #cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease);
  mix-blend-mode: difference;
}
#cursor.hover { width: 36px; height: 36px; } */

/* @media (hover: none) {
  #cursor { display: none; }
  body { cursor: auto; }
} */

/* ---------- Progress Bar ---------- */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  z-index: 1000;
  width: 0%;
  transition: width .1s linear;
}

/* ---------- Navbar ---------- */
/* nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 500;
  transition: background .4s, box-shadow .4s;
}
nav.scrolled {
  background: rgba(248, 247, 244, .9);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
[data-theme="dark"] nav.scrolled { background: rgba(14, 13, 12, .9); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); }
.nav-logo span { color: var(--accent); }

.nav-back {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--ink2);
  transition: color .2s;
}
.nav-back:hover { color: var(--ink); }
.nav-back:hover svg { transform: translateX(-3px); }
.nav-back svg { width: 16px; height: 16px; transition: transform .2s; }

.nav-right { display: flex; align-items: center; gap: 8px; } */

/* .icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink2);
  transition: background .2s, color .2s;
}
.icon-btn:hover { background: var(--border); color: var(--ink); }
.icon-btn svg { width: 16px; height: 16px; }

.skim-btn {
  font-size: .75rem;
  font-weight: 500;
  color: var(--ink2);
  padding: 7px 14px;
  border-radius: 99px;
  border: 1px solid var(--border);
  transition: all .2s;
}
.skim-btn.active,
.skim-btn:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); } */

/* ---------- Cover ---------- */
.cs-cover {
  /* min-height: 88vh; */
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0F1929 0%, #0A0E1A 100%);
	padding:50px;
}


/* Image styling */
.cover-image img {
  max-width: 500px;
  width: 100%;
  height: auto;
  object-fit: contain;
	border-radius:10px;
}

.cover-bg { position: absolute; 
		   /* inset: 0;  */
		  }
.cover-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 75% 45%, rgba(37,99,235,.1) 0%, transparent 60%);
}
.cover-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 40% 50% at 20% 70%, rgba(37,99,235,.05) 0%, transparent 60%);
}

/* Dashboard mockup */
.cover-mockup {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-48%);
  width: 420px;
  z-index: 1;
  animation: floatSlow 7s ease-in-out infinite;
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(-48%); }
  50%       { transform: translateY(calc(-48% - 10px)); }
}

.dash-frame {
  background: #111827;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.05);
}
.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.dash-title { font-size: 9px; font-weight: 600; color: rgba(255,255,255,.7); letter-spacing: .08em; font-family: var(--sans); }
.dash-dots { display: flex; gap: 4px; }
.dash-dot { width: 6px; height: 6px; border-radius: 50%; }

.dash-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 12px; }
.dm { background: rgba(255,255,255,.04); border-radius: 8px; padding: 10px; border: 1px solid rgba(255,255,255,.06); }
.dm-val { font-size: 14px; font-weight: 600; color: #fff; font-family: var(--sans); margin-bottom: 2px; }
.dm-lbl { font-size: 7px; color: rgba(255,255,255,.3); font-family: var(--sans); }
.dm-change { font-size: 7px; color: #4ADE80; margin-top: 2px; font-family: var(--sans); }

.dash-chart { background: rgba(255,255,255,.04); border-radius: 8px; padding: 10px; border: 1px solid rgba(255,255,255,.06); margin-bottom: 8px; }
.chart-label { font-size: 7px; color: rgba(255,255,255,.3); margin-bottom: 8px; font-family: var(--sans); }
.chart-bars { display: flex; align-items: flex-end; gap: 4px; height: 48px; }
.bar { flex: 1; border-radius: 3px 3px 0 0; background: rgba(37,99,235,.5); transition: background .2s; }
.bar.active { background: #2563EB; }

.dash-table { background: rgba(255,255,255,.04); border-radius: 8px; padding: 10px; border: 1px solid rgba(255,255,255,.06); }
.dt-row { display: flex; align-items: center; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.dt-row:last-child { border-bottom: none; }
.dt-name { font-size: 8px; color: rgba(255,255,255,.5); font-family: var(--sans); }
.dt-val  { font-size: 8px; color: rgba(255,255,255,.8); font-weight: 500; font-family: var(--sans); }
.dt-badge { font-size: 6px; padding: 2px 6px; border-radius: 99px; font-family: var(--sans); }
.dt-badge.up   { background: rgba(74,222,128,.15); color: #4ADE80; }
.dt-badge.down { background: rgba(248,113,113,.15); color: #F87171; }

.cover-content {
  position: relative;
  z-index: 2;
  padding: 0 0px 72px;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}
.cover-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
/* .cover-tag {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.12);
  padding: 5px 12px;
  border-radius: 99px;

} */
.cover-read { font-size: .72rem; color: rgba(255,255,255,.35); display: flex; align-items: center; gap: 5px; }
.cover-read svg { width: 12px; height: 12px; }

.cover-h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  color: #F0EDE8;
  line-height: 1.06;
  letter-spacing: -.02em;
  margin-bottom: 16px;
  max-width: 600px;
}
.cover-h1 em { font-style: italic; color: rgba(240,237,232,.45); }

.cover-sub {
  font-size: 1rem;
  color: rgba(240,237,232,.45);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}

.cover-outcomes { display: flex; gap: 32px; flex-wrap: wrap; }
.outcome { border-left: 2px solid rgba(37,99,235,.5); padding-left: 14px; }
.outcome-num { font-family: var(--serif); font-size: 1.6rem; color: #60A5FA; line-height: 1; }
.outcome-lbl { font-size: .72rem; color: rgba(240,237,232,.4); margin-top: 3px; }

/* ---------- Article Layout ---------- */
.article-wrap {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

/* ---------- Side Nav ---------- */
.side-nav {
  padding-top: 60px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  align-self: start;
  height: calc(100vh - var(--nav-h) - 48px);
  overflow-y: auto;
  overflow-x: hidden;
}

.side-nav-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.side-nav-title {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink3);
}
.side-nav-line { flex: 1; height: 1px; background: var(--border); }

.side-links {
  display: flex;
  flex-direction: column;
  gap: 1px;
  position: relative;
}
.side-links::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.side-link {
  font-size: 15px;
  color: var(--ink3);
  padding: 7px 14px;
  border-left: 1px solid transparent;
  transition: color .25s var(--ease), border-color .25s var(--ease), padding-left .25s var(--ease);
  cursor: pointer;
  line-height: 1.35;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  background: none;
  border-radius: 0;
}
.side-link::after {
  content: '';
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0;
  background: var(--accent);
  transition: height .25s var(--ease);
  border-radius: 1px;
}
.side-link:hover              { color: var(--ink); padding-left: 18px; }
.side-link:hover::after       { height: 60%; }
.side-link.active             { color: var(--ink); padding-left: 18px; font-weight: 500; }
.side-link.active::after      { height: 100%; background: var(--accent); }

.side-link-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink3);
  flex-shrink: 0;
  transition: background .25s, transform .25s var(--ease);
  display: none;
}
.side-link.active .side-link-dot,
.side-link:hover  .side-link-dot { background: var(--accent); transform: scale(1.4); }

/* ---------- Article Body ---------- */
.article-body {
  padding: 60px 0 80px 48px;
  border-left: 1px solid var(--border);
  min-width: 0;
}

/* ---------- Overview Card ---------- */
/* .overview-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 28px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  box-shadow: var(--sh-sm); */
}
.ov-label { font-size: .65rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: var(--ink3); margin-bottom: 6px; }
.ov-val   { font-size: .9rem; font-weight: 500; color: var(--ink); line-height: 1.3; }

/* ---------- Sections ---------- */
.cs-section {
	/* margin-bottom: 64px;  */
	scroll-margin-top: calc(var(--nav-h) + 32px);
}

.cs-section-label {
  font-size: 1.75rem;
  font-weight: 500;
  /* letter-spacing: .2em; */
  /* text-transform: uppercase; */
  color: var(--text-1);
  margin-bottom: 10px;
}

.cs-h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.cs-h2 em { font-style: italic; color: var(--ink2); }

.cs-h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  margin: 28px 0 12px;
  line-height: 1.3;
}

.cs-p {
  font-size: .95rem;
  color: var(--ink2);
  line-height: 1.85;
  margin-bottom: 7px;
  font-weight: 300;
  /* max-width: var(--content-w); */
}
.cs-p strong { font-weight: 500; color: var(--ink); }
body.skim-mode .cs-p.detail { display: none; }

.cs-quote {
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  margin: 32px 0;
  background: var(--bg2);
  border-radius: 0 var(--r) var(--r) 0;
}
.des-brief{
	font-size:17px;
}
#overview h4{
	font-size:17px;
}
#overview p{
	font-size: 18px;
    color: var(--ink2);
    line-height: 1.85;
    margin-bottom: 7px;
    font-weight: 300;
}
#Approach p{
	font-size: 16px;
    color: var(--ink2);
    line-height: 1.85;
    margin-bottom: 7px;
    font-weight: 300;
}
#challenge p{
	font-size: .95rem;
    color: var(--ink2);
    line-height: 1.85;
    margin-bottom: 7px;
    font-weight: 300;
}
#Workshop p{
	font-size: 16px;
    font-weight: 300;
    color: var(--ink2);
}

.back-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px; /* space between arrow & text */
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.12);
  padding: 5px 12px;
  border-radius: 99px;
  transition: all 0.3s ease;
	background-color:#fff;
	color:#000;
}

.back-home-btn i {
  font-size: 16px;
}

.back-home-btn:hover {
  color: #fff;
	background-color:#000;
  border-color: #fff;
}
.cover-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

/* LEFT */
.cover-content {
  flex: 1;
  z-index: 2;
}

/* RIGHT IMAGE */
.cover-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.cover-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}
.cs-quote p    { font-family: var(--serif); font-size: 1.2rem; font-style: italic; color: var(--ink); line-height: 1.5; margin: 0; }
.cs-quote cite { font-size: .75rem; color: var(--ink3); display: block; margin-top: 10px; font-style: normal; }

.cs-insight {
  background: linear-gradient(135deg, rgba(37,99,235,.06), rgba(37,99,235,.02));
  border: 1px solid rgba(37,99,235,.15);
  border-radius: var(--r2);
  padding: 24px 28px;
  margin: 28px 0;
}
.cs-insight-label { font-size: .65rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.cs-insight p     { font-size: .9rem; color: var(--ink); line-height: 1.7; margin: 0; }

.cs-list { margin: 12px 0 20px; display: flex; flex-direction: column; gap: 10px; max-width: var(--content-w); }
.cs-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--ink2);
  line-height: 1.6;
}
.cs-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ---------- Metrics ---------- */
.metrics-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0; }
.metric-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 24px;
  text-align: center;
  box-shadow: var(--sh-sm);
  transition: transform .25s var(--ease);
}
.metric-card:hover { transform: translateY(-4px); }
.metric-num { font-family: var(--serif); font-size: 2.4rem; font-weight: 400; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.metric-lbl { font-size: .75rem; color: var(--ink3); line-height: 1.4; }

/* ---------- Images ---------- */
.cs-img-full { width: 100%; border-radius: var(--r2); overflow: hidden; margin: 32px 0; box-shadow: var(--sh-md); }
.cs-img-half { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
.cs-img-half > * { border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-sm); }

.img-placeholder { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.img-placeholder.tall { aspect-ratio: 4/3; }
.img-caption { font-size: .72rem; color: var(--ink3); text-align: center; margin-top: -20px; margin-bottom: 24px; }

/* ---------- Process Steps ---------- */
.process-steps { display: flex; flex-direction: column; gap: 0; margin: 24px 0 32px; max-width: var(--content-w); }
.process-step  { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.process-step:last-child { border-bottom: none; }

.ps-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: .9rem;
  color: var(--ink2);
  flex-shrink: 0;
  margin-top: 2px;
  transition: all .2s;
}
.process-step:hover .ps-num { background: var(--accent); border-color: var(--accent); color: #fff; }
.ps-title { font-size: .9rem; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
.ps-desc  { font-size: .82rem; color: var(--ink2); line-height: 1.6; }

/* ---------- Placeholder Gradients ---------- */
.ph-g1      { background: linear-gradient(135deg, #C9E0D0 0%, #7DB89A 100%); }
.ph-g2      { background: linear-gradient(135deg, #C4D4E8 0%, #7A9EC8 100%); }
.ph-g3      { background: linear-gradient(135deg, #E8D0C4 0%, #C89080 100%); }
.ph-g-dark  { background: linear-gradient(160deg, #0F1929 0%, #0A0E1A 100%); }

/* ---------- Related ---------- */
.related       { margin-top: 80px; padding-top: 48px; border-top: 1px solid var(--border); }
.related-title { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); margin-bottom: 32px; }
.related-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.rel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s;
  display: block;
}
.rel-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.rel-img  { aspect-ratio: 16/9; }
.rel-body { padding: 18px; }
.rel-cat  { font-size: .65rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.rel-title { font-family: var(--serif); font-size: 1rem; color: var(--ink); line-height: 1.25; margin-bottom: 8px; }
.rel-arrow { display: inline-flex; align-items: center; gap: 5px; font-size: .75rem; color: var(--ink2); transition: gap .2s, color .2s; }
.rel-card:hover .rel-arrow { gap: 9px; color: var(--accent); }

/* ---------- Scroll Reveal ---------- */
.rev { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.rev.in { opacity: 1; transform: none; }
.rev-d1 { transition-delay: .08s; }
.rev-d2 { transition-delay: .16s; }
.rev-d3 { transition-delay: .24s; }


/* casestudy */

.section-title {
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.subsection-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.content-text {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 18px;
}
.objective-list{
	font-size: 16px;
    font-weight: 300;
    color: var(--ink2);
}
.objective-list p{
	font-size: 18px;
    font-weight: 300;
    color: var(--ink2);
}
.content-text{
  font-size: 16px;
  font-weight: 300;
  color: var(--ink2);
}
.p2{
	font-size: 16px;
    font-weight: 300;
    color: var(--ink2);
}
.content-text1{
  font-size: 24px;
  font-weight: 300;

line-height: 1.75;
}
.intro{
  /* background-color:#f7f7fc; */
  padding: 5rem 0;
}
.case-card-title {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--fg);
}
.workshop-title{
	font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 1.75rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 20px;
    letter-spacing: -.01em;
}
.workshop-title em {
    font-style: italic;
    color: var(--ink2);
}
.objective-title{
	font-size:17px;
}
.workshop-section{
	padding-top:40px;
	padding-bottom:40px;
}
.banner-section{
	padding-top:40px;
	padding-bottom:40px;
}
 body {
        /* background-color: #f8f9fa; */
        /* padding: 50px 0; */
    }

    .pa-card {
        border: none;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        border-radius: 12px;
        padding: 22px 22px 2px 22px;
        height: 100%;
    }

    .pa-card-header {
        display: flex;
        align-items: center;
        justify-content: center;
/*         margin-bottom: 20px; */
    }

    .pa-icon-circle {
        width: 25px;
        height: 25px;
        border-radius: 50%;
        border: 2px solid #000;
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        margin-right: 15px;
    }

    .pa-card-title {
        color: #000;
        font-weight: 700;
        margin: 0;
        font-size: 18px;
    }

    .pa-card ul {
        list-style-type: none;
        padding: 0;
        margin-top: 25px;
    }

    .pa-card li {
        margin-bottom: 20px;
        line-height: 1.6;
        color: var(--ink2);
        padding-left: 20px;
        position: relative;
    }

    /* Custom Bullet Points */
    .pa-card li::before {
        content: "•";
        color: var(--ink2);
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
    }
.ap-body {
        /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background-color: #ffffff; */
        padding: 50px 0;
    }

    .ap-section-title {
        font-weight: 400;
        font-size: 28px;
/*         margin-bottom: 50px; */
        color: var(--text-dark);
    }

    /* Circular Image Styling */
    .ap-step-img-container {
        width: 180px;
        height: 180px;
        margin: 0 auto 20px;
        overflow: hidden;
        border-radius: 50%;
    }

    .ap-step-img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Pill Badge Styling */
    .ap-step-badge {
        display: inline-block;
        border: 2px solid #7A746D; /* Light pink border */
        color: var(--primary-pink);
        font-weight: bold;
        padding: 4px 12px;
        border-radius: 50px;
        margin-bottom: 20px;
        text-transform: capitalize;
    }

    /* Text Styling */
    .ap-step-title {
        font-weight: 800;
        font-size: 1.1rem;
        margin-bottom: 15px;
        color: var(--text-dark);
    }

    .ap-step-description {
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 10px;
    }

    .ap-step-description strong {
        color: #333;
    }
@media (prefers-reduced-motion: reduce) {
  .rev { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .article-wrap       { grid-template-columns: 1fr; padding: 0 24px; }
  .side-nav           { display: none; }
  .article-body       { padding: 40px 0; border-left: none; }
  .overview-card      { grid-template-columns: 1fr 1fr; }
  .metrics-row        { grid-template-columns: 1fr 1fr; }
  .cs-img-half        { grid-template-columns: 1fr; }
  .related-grid       { grid-template-columns: 1fr; }
  .cover-content      { padding: 0 24px 56px; }
  .cover-mockup       { display: none; }
}

@media (max-width: 600px) {
  .overview-card,
  .metrics-row { grid-template-columns: 1fr; }
  .cover-h1    { font-size: 2.2rem; }

	 .cover-content      { padding: 0 0px 0px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(240, 237, 232, .35);
  padding: 32px 0;
  /* margin-top: 80px; */
}
.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: #F0EDE8;
}
.footer-logo span { color: #2563EB; }
.footer-copy { font-size: .75rem; }
.footer-back {
  font-size: .78rem;
  color: rgba(240, 237, 232, .4);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.footer-back:hover { color: rgba(240, 237, 232, .8); 
	}



@media (max-width: 556px) {
	.cs-cover{
		padding: 30px;
	}
}
/* ---------- RESPONSIVE ---------- */

/* Tablet */
@media (max-width: 1024px) {
  .cover-inner {
    flex-direction: column;
    text-align: center;
  }

  .cover-image {
    justify-content: center;
  }

  .cover-image img {
    max-width: 400px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .cover-image img {
    max-width: 100%;
  }

  .cover-h1 {
    font-size: 2rem;
  }
	.cover-inner{
		gap:20px;
	}
}

@media (max-width: 374px) {
	 .cover-h1 {
    font-size: 1.552rem;
  }
}
.cs-section li{
	font-size: 18px;
    font-weight: 300;
    color: var(--ink2);
}
.workshop-bg li{
	font-size: 18px;
    font-weight: 300;
    color: var(--ink2);
}
.p1{
	font-size: 16px;
    font-weight: 300;
    color: var(--ink2);
}
#overview p{
	font-size: 18px;
    font-weight: 300;
    color:var(--ink2);
}
#overview li{
	font-size: 18px;
    font-weight: 300;
    color: var(--ink2);
}
#approach p{
	font-size: 16px;
    font-weight: 300;
    color: var(--ink2);
}
.comman li{
	font-size: 18px;
    font-weight: 300;
    color: var(--ink2);
}
.comman p{
	font-size: 16px;
    font-weight: 300;
    color: var(--ink2);
}
#Discover h3{
	margin-bottom:24px;
}
#Define h3{
	margin-bottom:24px;
}
.comman h3{
	margin-bottom:24px;
	padding-top:60px
}

