.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: var(--space-8);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.hero-aside {
  align-self: stretch;
}

.breadcrumb {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.breadcrumb li::after {
  content: "/";
  margin-left: 0.25rem;
  color: var(--gray-400);
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb a {
  color: var(--color-text-muted);
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.align-start {
  align-items: flex-start;
}

.schedule-types .card-body ul {
  margin-top: var(--space-3);
}

.schedule-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.schedule-table {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: var(--font-size-sm);
}

.schedule-table th,
.schedule-table td {
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: top;
}

.schedule-table thead {
  background-color: var(--gray-100);
}

.schedule-table thead th {
  font-weight: 600;
}

.schedule-table tbody tr:nth-child(even) {
  background-color: var(--gray-50);
}

.plan-steps {
  counter-reset: plan-step;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.plan-steps li {
  position: relative;
  padding-left: 2.5rem;
}

.plan-steps li::before {
  counter-increment: plan-step;
  content: counter(plan-step);
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background-color: var(--color-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  box-shadow: var(--shadow-sm);
}

.plan-steps h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-1);
}

.faq-section {
  max-width: 960px;
}

.faq-grid {
  gap: var(--space-4);
}

.faq-item h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

@media (max-width: 768px) {
  .hero {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .schedule-table th,
  .schedule-table td {
    padding: 0.6rem 0.6rem;
  }
}
