/* Home hero */
.hero-section {
  position: relative;
  min-height: 300px;
  background-image: url("./assets/hero.jpg");
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* Information */
.info-card {
  background: #f8f9fa;
  border-left: 4px solid #0078d4;
  border-top: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  border-radius: 0 4px 4px 0;
  padding: 24px;
}

.info-list {
  list-style: none;
  font-size: 15px;
  line-height: 2.2;
  color: #333333;
}

.info-list li {
  position: relative;
  padding-left: 1.1em;
  margin-bottom: 6px;
}

.info-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.info-link {
  color: #1a0dab;
  text-decoration: underline;
}

@media (max-width: 860px) {
  .hero-section {
    min-height: 240px;
    background-position: center center;
  }

  .info-card {
    padding: 20px;
  }

  .info-list {
    font-size: 14px;
    line-height: 2;
  }
}
