/* =====================================================
   VŨ TRỤ VĂN HỌC — HOME PAGE ADDITIONS
   Thêm nội dung phong phú cho trang chủ
   ===================================================== */

/* Shared label */
.home-section-label {
  text-align: center;
  font-size: 0.72rem;
  color: #7a6a55;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

/* ===== WORKS PREVIEW STRIP ===== */
.home-works-preview {
  width: 100%;
  max-width: 900px;
  margin: 3.5rem auto 0;
  padding: 0 1.5rem;
}

.home-works-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.home-work-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  transition: all 0.2s ease;
  cursor: default;
}

.home-work-pill:hover {
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  transform: translateY(-2px);
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.pill-title {
  font-size: 0.8rem;
  color: #d8cbb8;
  font-weight: 500;
}

.pill-author {
  font-size: 0.72rem;
  color: #7a6a55;
}

/* ===== QUOTES ===== */
.home-quotes {
  width: 100%;
  max-width: 1000px;
  margin: 4rem auto 0;
  padding: 0 1.5rem;
}

.home-quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.home-quote-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 14px;
  padding: 1.5rem 1.4rem 1.2rem;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.home-quote-card:hover {
  border-color: rgba(201, 169, 110, 0.28);
  transform: translateY(-3px);
}

.quote-mark {
  font-size: 3rem;
  line-height: 1;
  color: rgba(201, 169, 110, 0.2);
  font-family: 'Cormorant Garamond', serif;
  position: absolute;
  top: 0.6rem;
  left: 1rem;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: #d8cbb8;
  line-height: 1.65;
  font-style: italic;
  margin: 1.2rem 0 0.8rem;
}

.quote-source {
  font-size: 0.74rem;
  color: #7a6a55;
  letter-spacing: 0.03em;
}

.quote-source em {
  color: #c9a96e;
  font-style: normal;
}

/* ===== STATS ===== */
.home-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 800px;
  margin: 4rem auto 0;
  padding: 2rem 2rem;
  background: rgba(201, 169, 110, 0.05);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 16px;
}

.home-stat-item {
  flex: 1;
  text-align: center;
  padding: 0.5rem 1rem;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #c9a96e;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.75rem;
  color: #8a7a65;
  line-height: 1.45;
}

.home-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(201, 169, 110, 0.18);
  flex-shrink: 0;
}

/* ===== HOW IT WORKS ===== */
.home-how {
  width: 100%;
  max-width: 1000px;
  margin: 4rem auto 0;
  padding: 0 1.5rem;
}

.home-how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.how-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 1.3rem 1.2rem;
  transition: border-color 0.2s, transform 0.2s;
}

.how-step:hover {
  border-color: rgba(201, 169, 110, 0.25);
  transform: translateY(-3px);
}

.how-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: rgba(201, 169, 110, 0.4);
  line-height: 1;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.how-step-content h4 {
  font-size: 0.88rem;
  color: #d8cbb8;
  font-weight: 600;
  margin-bottom: 0.45rem;
  font-family: 'Be Vietnam Pro', sans-serif;
}

.how-step-content p {
  font-size: 0.78rem;
  color: #8a7a65;
  line-height: 1.55;
}

.how-step-arrow {
  font-size: 1.2rem;
  color: rgba(201, 169, 110, 0.3);
  align-self: center;
  flex-shrink: 0;
  padding-top: 0;
}

/* ===== FINAL CTA ===== */
.home-final-cta {
  text-align: center;
  margin: 4.5rem auto 3rem;
  padding: 0 1.5rem;
}

.home-final-cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: #8a7a65;
  margin-bottom: 1.5rem;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .home-quotes-grid {
    grid-template-columns: 1fr;
  }

  .home-how-steps {
    flex-direction: column;
    align-items: center;
  }

  .how-step {
    max-width: 100%;
    width: 100%;
  }

  .how-step-arrow {
    transform: rotate(90deg);
  }

  .home-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .home-stat-divider {
    display: none;
  }

  .home-stat-item {
    min-width: 40%;
  }

  .home-works-strip {
    gap: 0.45rem;
  }

  .pill-author {
    display: none;
  }
}