.home {
  padding-bottom: 8px;
}

.section {
  margin-top: 28px;
}

.categories__label {
  margin-bottom: 16px;
}

.categories__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.blog-head {
  margin-bottom: 18px;
}

.blog-head__nav {
  display: flex;
  gap: 8px;
}

.blog-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.blog-carousel::-webkit-scrollbar {
  display: none;
}

.post-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  min-width: 0;
}

.post-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 642 / 128;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    linear-gradient(115deg, var(--art-a, #2a1840), var(--art-b, #0b1630)),
    var(--bg);
}

.post-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(3 6 14 / 0.1), rgb(3 6 14 / 0.55));
}

.post-card__overlay {
  position: relative;
  z-index: 1;
  padding-inline: 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 6.5vw, 30px);
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.92);
  text-shadow: 0 2px 18px rgb(0 0 0 / 0.6);
  -webkit-text-stroke: 1px rgb(255 255 255 / 0.25);
}

.post-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.post-card__title {
  font-size: 16px;
  font-weight: 700;
}

.post-card__date {
  flex: none;
  font-size: 12.5px;
  color: var(--muted-dim);
}

.blog-cta {
  margin-top: 22px;
  background: var(--teal);
  box-shadow: 0 12px 30px -16px hsl(181 52% 50% / 0.55);
}

.blog-cta:hover {
  background: var(--teal-strong);
  filter: none;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgb(255 255 255 / 0.018);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.18s, background 0.18s;
}

.faq-item[open] {
  background: rgb(255 255 255 / 0.035);
  border-color: hsl(180 100% 67% / 0.28);
}

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 14.5px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  flex: 1;
}

.faq-item summary svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--primary);
  transition: transform 0.2s ease;
}

.faq-item[open] summary svg {
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
