/* SquidStudios — blog styles */

.post-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin: 28px 0 60px;
}

.post-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.post-thumb {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--sky);
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-meta time {
  display: inline-block;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.post-tags {
  display: inline-flex; flex-wrap: wrap; gap: 6px;
  margin-left: 10px;
}

.post-meta h2 {
  margin-top: 8px;
  color: var(--navy);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.post-meta h2 a { color: inherit; }
.post-meta h2 a:hover { color: var(--teal-dark); }

.post-meta p {
  margin-top: 10px;
  color: var(--navy-soft);
  font-size: 16px;
  line-height: 1.5;
}

.read-more {
  display: inline-block;
  margin-top: 12px;
  color: var(--teal-dark);
  font-weight: 800;
}

/* ---------- Single post ---------- */
.post {
  max-width: 760px;
  margin: 24px auto 64px;
  padding: 0 4px;
}

.post-breadcrumb {
  font-size: 14px;
  font-weight: 800;
  color: var(--teal-dark);
  margin-bottom: 12px;
}

.post-header h1 {
  color: var(--navy);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
}

.post-meta-row {
  margin-top: 10px;
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.post-hero {
  width: 100%;
  height: auto;
  margin-top: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.post-body {
  margin-top: 28px;
  color: var(--navy-soft);
  font-size: 18px;
  line-height: 1.65;
}

.post-body h2 {
  margin-top: 30px;
  color: var(--navy);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
}

.post-body h3 {
  margin-top: 22px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
}

.post-body p { margin-top: 14px; }
.post-body ul, .post-body ol { margin: 14px 0 0 22px; }
.post-body li { margin-top: 6px; }
.post-body a { color: var(--teal-dark); font-weight: 800; }
.post-body a:hover { color: var(--teal); }

.post-footer {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 14px;
}

@media (max-width: 720px) {
  .post-card { grid-template-columns: 1fr; }
}
