/* TODO: 逐步迁移到Tailwind CSS 中 */

.hero-banner {
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
}

.hero-banner img {
  width: 100%;
  display: block;
  height: auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.35));
  color: #fff;
}

.hero-overlay h1 {
  text-align: center;
  margin: 0 0 8px;
  font-size: 3.3em;
}

.hero-overlay p {
  margin: 0;
  font-size: 18px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section-header h2 {
  margin: 0;
  font-size: 22px;
}

.section-link {
  color: #0073aa;
  text-decoration: none;
  font-weight: 600;
}

.section-link:hover {
  text-decoration: underline;
}
