/* ===================================
   Homepage (index.html)
   =================================== */

.hero-section {
  text-align: center;
  margin-bottom: 24px;
}

.hero-divider {
  width: 112px;
  height: 2px;
  background-color: #444444;
  margin: 18px auto 0;
}

.topic-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  margin: 36px auto 54px;
  flex-wrap: wrap;
}

.topic-icon-item {
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.topic-icon-item:hover {
  text-decoration: none;
  color: #965a00;
}

.topic-icon-item img {
  display: none;
}

.topic-icon-item h3 {
  font-family: 'Bad Script', 'Grand Hotel', cursive;
  font-size: 46px;
  line-height: 1.2;
  font-weight: 400;
  color: inherit;
  margin: 0;
}

.topic-separator {
  font-family: 'Bad Script', 'Grand Hotel', cursive;
  font-size: 28px;
  line-height: 1;
  color: #444444;
}

.hero-photo {
  margin: 0 0 0;
}

.hero-photo figure {
  margin: 0;
  text-align: center;
}

.hero-photo img {
  width: 100%;
  max-width: 940px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

.hero-photo figcaption {
  margin-top: 6px;
  font-style: italic;
  color: #666;
  font-size: 0.88em;
}

.credentials-section {
  margin: 40px 0;
}

.credential-group {
  margin-bottom: 25px;
}

.credential-group ul {
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
}

.credential-group li {
  padding: 3px 0;
}

@media (max-width: 768px) {
  .topic-icons {
    flex-direction: column;
    gap: 14px;
    align-items: center;
    margin: 24px auto 34px;
  }

  .topic-icon-item {
    margin: 0;
  }

  .topic-icon-item h3 {
    font-size: 34px;
  }

  .topic-separator {
    display: none;
  }
}
