@import url('../../../../css/variable.css');

body.post-two-page {
  background: var(--bg-white);
}

.post2-lead {
  margin: 6px 0 24px;
  padding-left: 30px;
  position: relative;
}

.post2-lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 2px;
  height: calc(100% - 6px);
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.7), rgba(17, 17, 17, 0.1));
}

#post2LeadText {
  margin: 0;
  max-width: 56ch;
  font-family: var(--font-serif);
  font-size: clamp(1.32rem, 2.3vw, 1.86rem);
  line-height: 1.3;
  color: var(--text-primary);
}

.post2-sections {
  display: grid;
  gap: 20px;
  margin-top: 10px;
}

.post2-section h2 {
  margin: 0 0 10px;
  font-family: var(--font-syne);
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.post2-section p {
  margin: 0 0 10px;
  max-width: 72ch;
  font-family: var(--font-sans);
  line-height: 1.84;
  color: var(--text-secondary);
}

.post2-section h3 {
  margin: 10px 0 6px;
  font-family: var(--font-syne);
  font-size: 0.98rem;
  color: var(--text-primary);
}

.post2-section ul {
  margin: 0 0 8px 18px;
  padding: 0;
}

.post2-section li {
  margin: 0 0 4px;
  font-family: var(--font-sans);
  line-height: 1.75;
  color: var(--text-secondary);
}

.post2-gallery {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.post2-shot {
  margin: 0;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(0, 0, 0, 0.015);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.post2-shot:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.08);
}

.post2-shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.post2-shot figcaption {
  margin: 0;
  padding: 11px 12px 13px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .post2-lead {
    padding-left: 22px;
  }

  .post2-gallery {
    grid-template-columns: 1fr;
  }
}
