/* =========================================================
   HOME PAGE CONTAINER
========================================================= */

.home {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* =========================================================
   HOME HERO
========================================================= */

.home-hero {
  text-align: center;
  padding: 30px 0 10px;
}

.home-title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.home-subtitle {
  font-size: 16px;
  color: #4b5563;
  max-width: 720px;
  margin: 10px auto 0;
  line-height: 1.6;
}

/* Mobile adjustment */
@media (max-width: 700px) {
  .home-title {
    font-size: 30px;
  }
}

/* =========================================================
   HOME ACTIONS (QUICK ACTION CARDS)
========================================================= */

.home-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Action card */
.home-action {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: 0.2s;
}

.home-action:hover {
  transform: translateY(-3px);
}

.home-action h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.home-action p {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
}

/* Mobile stacking */
@media (max-width: 700px) {
  .home-actions {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   HOME FEATURED SECTION
========================================================= */

.home-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Mobile stacking */
@media (max-width: 700px) {
  .home-featured {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   FLYSUB HOME BLOCK
========================================================= */

.flysub-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.flysub-home h1 {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
}

.flysub-home p {
  max-width: 600px;
  text-align: center;
  color: #6b7280;
  line-height: 1.6;
}

.flysub-home button {
  padding: 14px 20px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}