/* ============================================================
   MISTMIND STUDIO — styles3.css
   Zoned Color layout
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Instrument+Sans:wght@400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  /* Dark zone */
  --s3-dark:         #0e0d0a;
  --s3-dark-surface: #1a1916;
  --s3-dark-ink:     #f0ece4;
  --s3-dark-muted:   rgba(240, 236, 228, 0.58);
  --s3-dark-line:    rgba(240, 236, 228, 0.1);

  /* Light zone */
  --s3-light:        #f4f1eb;
  --s3-light-surface:#eae6de;
  --s3-light-ink:    #0e0d0a;
  --s3-light-muted:  #6a6259;
  --s3-light-line:   rgba(14, 13, 10, 0.12);
  --s3-light-line-strong: rgba(14, 13, 10, 0.22);

  /* Green zone */
  --s3-green:        #1c3326;
  --s3-green-surface:#243d2d;
  --s3-green-ink:    #f0ece4;
  --s3-green-muted:  rgba(240, 236, 228, 0.65);
  --s3-green-line:   rgba(240, 236, 228, 0.14);

  /* Accent */
  --s3-accent:       #b8872a;

  --s3-max:          1160px;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--s3-dark);
  color: var(--s3-dark-ink);
}

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

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

/* --- Layout wrapper --- */
.s3-wrap {
  width: min(calc(100% - 48px), var(--s3-max));
  margin: 0 auto;
}

/* --- Typography helpers --- */
.s3-label {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--s3-accent);
}

.s3-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
}

/* ============================================================
   HEADER
   ============================================================ */
.s3-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--s3-dark);
  border-bottom: 1px solid var(--s3-dark-line);
  height: 52px;
  display: flex;
  align-items: center;
}

.s3-header .s3-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--s3-max));
}

.s3-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}

.s3-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--s3-dark-ink);
  line-height: 1;
}

.s3-logo-sub {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--s3-dark-muted);
  line-height: 1;
}

.s3-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.s3-nav a {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--s3-dark-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.s3-nav a:hover {
  color: var(--s3-dark-ink);
}

/* ============================================================
   HERO
   ============================================================ */
.s3-hero {
  background: var(--s3-dark);
  padding: 60px 0 64px;
}

.s3-hero-inner {
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: 52px;
  align-items: start;
}

.s3-hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.s3-hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--s3-dark-ink);
}

.s3-hero-desc {
  font-size: 0.9rem;
  line-height: 1.76;
  color: var(--s3-dark-muted);
  max-width: 44ch;
}

.s3-hero-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.s3-text-link {
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: opacity 0.15s ease;
}

.s3-text-link:hover {
  opacity: 0.7;
}

.s3-text-link--cream {
  color: var(--s3-dark-ink);
}

.s3-text-link--muted {
  color: var(--s3-dark-muted);
}

/* Featured card */
.s3-featured-card {
  background: var(--s3-dark-surface);
  border: 1px solid rgba(240, 236, 228, 0.1);
  border-radius: 2px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.s3-featured-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.s3-badge {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--s3-accent);
}

.s3-featured-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--s3-dark-ink);
}

.s3-featured-excerpt {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--s3-dark-muted);
}

.s3-read-link {
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  color: var(--s3-dark-ink);
  transition: opacity 0.15s ease;
  align-self: flex-start;
  margin-top: 4px;
}

.s3-read-link:hover {
  opacity: 0.7;
}

/* ============================================================
   THINKING
   ============================================================ */
.s3-thinking {
  background: var(--s3-light);
  padding: 52px 0 56px;
  border-top: 2px solid var(--s3-light-ink);
}

.s3-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.s3-section-header-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.s3-section-count {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--s3-light-muted);
  letter-spacing: 0.04em;
}

.s3-section-count--link {
  text-decoration: none;
  color: var(--s3-light-muted);
  transition: color 0.2s ease;
}

.s3-section-count--link:hover {
  color: var(--s3-light-ink);
}

.s3-thinking .s3-section-title {
  color: var(--s3-light-ink);
}

/* Articles grid */
.s3-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.s3-article-card {
  border-top: 1px solid var(--s3-light-line-strong);
  padding: 24px 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.s3-article-card + .s3-article-card {
  border-left: 1px solid var(--s3-light-line-strong);
  padding-left: 24px;
}

.s3-article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.s3-article-type {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--s3-accent);
}

.s3-article-issue {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  color: var(--s3-light-muted);
}

.s3-article-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--s3-light-ink);
}

.s3-article-excerpt {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--s3-light-muted);
}

.s3-article-link {
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  color: var(--s3-light-ink);
  transition: opacity 0.15s ease;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 8px;
  padding-bottom: 24px;
}

.s3-article-link:hover {
  opacity: 0.6;
}

/* ============================================================
   ABOUT
   ============================================================ */
.s3-about {
  background: var(--s3-light);
  padding: 52px 0 56px;
  border-top: 1px solid var(--s3-light-line-strong);
}

.s3-about-inner {
  display: grid;
  grid-template-columns: 38fr 62fr;
  gap: 56px;
  align-items: start;
}

.s3-about-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.s3-about-left .s3-section-title {
  color: var(--s3-light-ink);
}

.s3-about-desc {
  font-size: 0.9rem;
  line-height: 1.76;
  color: var(--s3-light-muted);
}

.s3-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.s3-pillar {
  padding: 0 24px 0 0;
  border-right: 1px solid var(--s3-light-line-strong);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.s3-pillar:last-child {
  border-right: none;
}

.s3-pillar + .s3-pillar {
  padding-left: 24px;
}

.s3-pillar-label {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--s3-accent);
}

.s3-pillar-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--s3-light-ink);
}

.s3-pillar-desc {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--s3-light-muted);
}

/* ============================================================
   FOUNDER
   ============================================================ */
.s3-founder {
  background: var(--s3-green);
  padding: 60px 0 64px;
  border-top: 2px solid var(--s3-green-surface);
}

.s3-founder-inner {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  align-items: start;
}

.s3-founder-portrait {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  filter: grayscale(15%) contrast(1.05);
  flex-shrink: 0;
}

.s3-founder-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.s3-founder-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--s3-green-ink);
}

.s3-founder-desc {
  font-size: 0.9rem;
  line-height: 1.76;
  color: var(--s3-green-muted);
}

.s3-founder-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--s3-green-ink);
  border-left: 2px solid var(--s3-accent);
  padding-left: 18px;
  margin: 4px 0;
}

.s3-founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.s3-founder-tag {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--s3-green-muted);
  border: 1px solid var(--s3-green-line);
  padding: 4px 9px;
  border-radius: 2px;
}

/* ============================================================
   PRACTICE
   ============================================================ */
.s3-practice {
  background: var(--s3-light);
  padding: 52px 0 56px;
  border-top: 2px solid var(--s3-light-ink);
}

.s3-practice-intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.s3-practice-intro .s3-section-title {
  color: var(--s3-light-ink);
}

.s3-practice-overview {
  font-size: 0.9rem;
  line-height: 1.76;
  color: var(--s3-light-muted);
  max-width: 60ch;
}

.s3-practice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--s3-light-line-strong);
}

.s3-practice-item {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.s3-practice-item:nth-child(1) {
  border-right: 1px solid var(--s3-light-line-strong);
  border-bottom: 1px solid var(--s3-light-line-strong);
}

.s3-practice-item:nth-child(2) {
  border-bottom: 1px solid var(--s3-light-line-strong);
}

.s3-practice-item:nth-child(3) {
  border-right: 1px solid var(--s3-light-line-strong);
}

.s3-practice-num {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--s3-accent);
}

.s3-practice-name {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--s3-light-ink);
}

.s3-practice-desc {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--s3-light-muted);
}

/* ============================================================
   CONTACT
   ============================================================ */
.s3-contact {
  background: var(--s3-dark);
  padding: 60px 0 64px;
  border-top: 1px solid var(--s3-dark-line);
}

.s3-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.s3-contact-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.s3-contact-left .s3-section-title {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  color: var(--s3-dark-ink);
}

.s3-contact-desc {
  font-size: 0.9rem;
  line-height: 1.76;
  color: var(--s3-dark-muted);
}

.s3-contact-panel {
  background: var(--s3-dark-surface);
  border: 1px solid var(--s3-dark-line);
  border-radius: 2px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.s3-panel-heading {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--s3-dark-muted);
}

.s3-panel-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.s3-panel-bullets li {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--s3-dark-muted);
  display: flex;
  gap: 10px;
}

.s3-panel-bullets li::before {
  content: '—';
  color: var(--s3-accent);
  flex-shrink: 0;
}

.s3-email-link {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--s3-dark-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--s3-accent);
  padding-bottom: 1px;
  align-self: flex-start;
  transition: opacity 0.15s ease;
  margin-top: 4px;
}

.s3-email-link:hover {
  opacity: 0.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.s3-footer {
  background: var(--s3-dark);
  padding: 18px 0;
  border-top: 1px solid var(--s3-dark-line);
}

.s3-footer .s3-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.s3-footer-name {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--s3-dark-ink);
}

.s3-footer-tagline {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--s3-dark-muted);
}

/* ============================================================
   RESPONSIVE — 900px
   ============================================================ */
@media (max-width: 900px) {
  .s3-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .s3-about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .s3-founder-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .s3-founder-portrait {
    width: 64px;
    height: 64px;
  }

  .s3-contact-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .s3-articles-grid {
    grid-template-columns: 1fr;
  }

  .s3-article-card {
    padding: 20px 0 0 0;
    border-top: 1px solid var(--s3-light-line-strong);
    border-left: none;
  }

  .s3-article-card + .s3-article-card {
    border-left: none;
    padding-left: 0;
  }

  .s3-article-link {
    padding-bottom: 20px;
  }

  .s3-pillars {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .s3-pillar {
    padding: 0;
    border-right: none;
    border-bottom: 1px solid var(--s3-light-line-strong);
    padding-bottom: 24px;
  }

  .s3-pillar:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .s3-pillar + .s3-pillar {
    padding-left: 0;
  }

  .s3-practice-grid {
    grid-template-columns: 1fr;
  }

  .s3-practice-item:nth-child(1),
  .s3-practice-item:nth-child(2),
  .s3-practice-item:nth-child(3) {
    border-right: none;
    border-bottom: 1px solid var(--s3-light-line-strong);
  }

  .s3-practice-item:nth-child(4) {
    border-bottom: none;
  }
}

/* ============================================================
   RESPONSIVE — 600px
   ============================================================ */
@media (max-width: 600px) {
  .s3-header {
    height: auto;
    padding: 12px 0;
  }

  .s3-header .s3-wrap {
    flex-wrap: wrap;
    gap: 12px;
  }

  .s3-nav {
    gap: 16px;
  }

  .s3-hero {
    padding: 36px 0;
  }

  .s3-hero-h1 {
    font-size: 1.8rem;
  }

  .s3-thinking {
    padding: 36px 0;
  }

  .s3-about {
    padding: 36px 0;
  }

  .s3-founder {
    padding: 36px 0;
  }

  .s3-practice {
    padding: 36px 0;
  }

  .s3-contact {
    padding: 36px 0;
  }

  .s3-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* ============================================================
   ARTICLE PAGES
   ============================================================ */

.s3-article-page {
  background: var(--s3-light);
  border-top: 2px solid var(--s3-light-ink);
  padding: 56px 0 80px;
}

.s3-article-grid {
  display: grid;
  grid-template-columns: 34fr 66fr;
  gap: 56px;
  align-items: start;
}

/* Sidebar */
.s3-article-sidebar {
  position: sticky;
  top: 72px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.s3-article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--s3-light-muted);
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.15s;
}

.s3-article-back:hover {
  color: var(--s3-light-ink);
  text-decoration: none;
}

.s3-article-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--s3-light-ink);
}

.s3-article-subtitle {
  font-size: 0.88rem;
  line-height: 1.72;
  color: var(--s3-light-muted);
}

.s3-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.s3-article-meta span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--s3-light-muted);
  border: 1px solid var(--s3-light-line-strong);
  border-radius: 2px;
  padding: 4px 8px;
}

/* Article body */
.s3-article-body {
  border-left: 1px solid var(--s3-light-line-strong);
  padding-left: 48px;
}

.s3-article-body p {
  font-size: 0.9rem;
  line-height: 1.84;
  color: var(--s3-light-muted);
  margin-bottom: 18px;
}

.s3-article-body p:last-child {
  margin-bottom: 0;
}

.s3-article-lede {
  font-size: 1.02rem !important;
  line-height: 1.78 !important;
  color: var(--s3-light-ink) !important;
  margin-bottom: 28px !important;
}

.s3-article-body h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.14;
  color: var(--s3-light-ink);
  margin: 44px 0 16px;
}

.s3-article-body blockquote {
  margin: 32px 0;
  padding: 4px 0 4px 20px;
  border-left: 2px solid var(--s3-accent);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: var(--s3-light-ink);
}

.s3-article-body ul {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding-left: 18px;
}

.s3-article-body li {
  font-size: 0.9rem;
  line-height: 1.72;
  color: var(--s3-light-muted);
}

/* Article responsive */
@media (max-width: 900px) {
  .s3-article-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .s3-article-sidebar {
    position: static;
  }

  .s3-article-body {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--s3-light-line-strong);
    padding-top: 36px;
  }
}

@media (max-width: 600px) {
  .s3-article-page {
    padding: 36px 0 56px;
  }

  .s3-article-title {
    font-size: 1.4rem;
  }
}

/* ============================================================
   NOTES INDEX PAGE
   ============================================================ */

.s3-notes-index {
  background: var(--s3-light);
  border-top: 2px solid var(--s3-light-ink);
  padding: 56px 0 80px;
}

.s3-notes-index__header {
  max-width: 600px;
  margin-bottom: 52px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.s3-notes-index__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--s3-light-ink);
  margin: 0;
}

.s3-notes-index__desc {
  font-size: 0.9rem;
  line-height: 1.72;
  color: var(--s3-light-muted);
  margin: 0;
}

/* Notes list */
.s3-notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--s3-light-line-strong);
}

.s3-notes-entry {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--s3-light-line);
}

.s3-notes-entry__num {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--s3-light-muted);
  padding-top: 2px;
}

.s3-notes-entry__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.s3-notes-entry__meta {
  display: flex;
  gap: 8px;
  align-items: center;
}

.s3-notes-entry__type {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--s3-light-muted);
  border: 1px solid var(--s3-light-line-strong);
  border-radius: 2px;
  padding: 3px 7px;
}

.s3-notes-entry__tags {
  font-size: 0.72rem;
  color: var(--s3-light-muted);
}

.s3-notes-entry__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--s3-light-ink);
  margin: 0;
}

.s3-notes-entry__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}

.s3-notes-entry__title a:hover {
  color: var(--s3-accent);
}

.s3-notes-entry__excerpt {
  font-size: 0.88rem;
  line-height: 1.72;
  color: var(--s3-light-muted);
  margin: 0;
}

.s3-notes-entry__link {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--s3-light-muted);
  text-decoration: none;
  white-space: nowrap;
  padding-top: 2px;
  transition: color 0.15s;
}

.s3-notes-entry__link:hover {
  color: var(--s3-light-ink);
}

@media (max-width: 600px) {
  .s3-notes-index {
    padding: 36px 0 56px;
  }

  .s3-notes-entry {
    grid-template-columns: 32px 1fr;
    gap: 16px;
  }

  .s3-notes-entry__link {
    display: none;
  }
}
