/* Thinking / essay pages — two-column baseline (About | Article) */

.thinking-article-page {
  min-height: 100vh;
}

.think-article {
  padding: calc(60px + 3.5rem) 3rem 5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.think-breadcrumb {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

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

.think-breadcrumb a:hover {
  color: var(--accent);
}

.think-article-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
  max-width: 22ch;
  border-left: none;
  padding-left: 0;
}

/* Featured image: contained parallax block */
.think-featured {
  display: block;
  width: 50vw;
  margin: 0 auto 4rem;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border-radius: 0;
  background: none;
  border: none;
  position: relative;
}

.think-featured img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  object-fit: cover;
  display: block;
  will-change: transform;
}

@media (max-width: 900px) {
  .think-featured { width: 100%; }
}

.think-article-grid {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.think-about {
  padding: 1.25rem 1.35rem 1.5rem;
  background: rgba(232, 224, 255, 0.2);
  border: 1px solid rgba(196, 181, 253, 0.22);
  border-radius: 6px;
}

.think-body-col {
  padding-bottom: 0.5rem;
}

@media (min-width: 769px) {
  .think-body-col {
    padding-left: clamp(1.25rem, 2.5vw, 2.25rem);
    border-left: 1px solid rgba(196, 181, 253, 0.3);
  }
}

.think-col-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #3b2f6b;
}

.think-col-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.think-rule {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(212, 98, 42, 0.45) 0%,
    rgba(196, 181, 253, 0.35) 50%,
    rgba(10, 10, 10, 0.08) 100%
  );
  margin: 0 0 1.5rem 0;
}

.think-about-lede {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(10, 10, 10, 0.72);
  margin-bottom: 2rem;
}

.think-meta {
  margin: 0;
}

.think-meta-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px dashed rgba(10, 10, 10, 0.18);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.think-meta-row:first-of-type {
  border-top: 1px dashed rgba(10, 10, 10, 0.18);
}

.think-meta-row dt {
  font-weight: 700;
  color: var(--black);
}

.think-meta-row dd {
  margin: 0;
  text-align: right;
  font-weight: 500;
  color: rgba(10, 10, 10, 0.55);
}

.think-pill {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  border: 1px dashed rgba(99, 79, 168, 0.35);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2f2658;
  background: rgba(255, 255, 255, 0.65);
}

.think-pill--btn {
  cursor: pointer;
  font-family: inherit;
}

.think-pill--btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.think-snapshot {
  margin-bottom: 2.75rem;
  padding: 1.35rem 1.5rem 1.5rem;
  background: rgba(232, 224, 255, 0.28);
  border: 1px solid rgba(196, 181, 253, 0.28);
  border-radius: 6px;
}

.think-snapshot h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #3b2f6b;
}

.think-snapshot p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(10, 10, 10, 0.78);
}

.think-prose h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 2.5rem 0 1rem;
  color: #3b2f6b;
}

.think-prose p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(10, 10, 10, 0.78);
  margin-bottom: 1.25rem;
}

.think-prose p:last-child {
  margin-bottom: 0;
}

/* ── Read more (end of post) ── */
.think-read-more {
  margin-top: 4rem;
  padding-top: 2.5rem;
}

.think-read-more-rule {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(212, 98, 42, 0.35) 0%,
    rgba(196, 181, 253, 0.32) 50%,
    rgba(10, 10, 10, 0.06) 100%
  );
  margin: 0 0 1.75rem 0;
}

.think-read-more-heading {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3b2f6b;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.think-read-more-heading::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.think-read-more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
}

.think-read-card {
  display: flex;
  gap: 1.15rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 0.85rem;
  margin: -0.85rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.think-read-card:hover {
  background: rgba(232, 224, 255, 0.28);
}

.think-read-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Dark frame + inset thumb (reference: Nº with photo inside square) */
.think-read-card-visual {
  flex: 0 0 clamp(104px, 26vw, 136px);
  width: clamp(104px, 26vw, 136px);
  aspect-ratio: 1;
  background: var(--black);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.think-read-card-num {
  position: absolute;
  top: 0.45rem;
  left: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--white);
  text-transform: uppercase;
  z-index: 2;
}

.think-read-card-num--corner-bl {
  top: auto;
  left: 0.5rem;
  bottom: 0.45rem;
}

.think-read-card-visual img {
  position: absolute;
  bottom: 11%;
  left: 50%;
  transform: translateX(-50%);
  width: 64%;
  height: auto;
  max-height: 44%;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.think-read-card-visual--fill img {
  inset: 0;
  left: 0;
  bottom: 0;
  transform: none;
  width: 100%;
  height: 100%;
  max-height: none;
  border-radius: 0;
  opacity: 0.88;
  object-position: center 30%;
  box-shadow: none;
}

.think-read-card-copy {
  flex: 1;
  min-width: 0;
  padding-top: 0.1rem;
}

.think-read-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.98rem;
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  color: var(--black);
  transition: color 0.2s;
}

.think-read-card:hover .think-read-card-title {
  color: #3b2f6b;
}

.think-read-card-desc {
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.62);
  margin: 0;
}

@media (max-width: 768px) {
  .think-article {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .think-article-title {
    max-width: none;
  }

  .think-body-col {
    border-left: none;
    padding-left: 0;
  }

  .think-article-grid {
    grid-template-columns: 1fr;
  }

  .think-meta-row dd {
    text-align: left;
  }

  .think-meta-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .think-read-more-grid {
    grid-template-columns: 1fr;
  }
}
