.about-page {
  display: block;
  width: 100%;
  font-family: 'Oswald', sans-serif;
}

.about-page h2 {
  color: var(--accent);
  font-size: 2em;
  margin: 0 0 10px;
  text-align: center;
}

.about-page h2:first-child {
  font-size: 2.3em;
  margin-bottom: 0.5em;
  color: #FFD447;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 8px auto 24px;
  border-radius: 2px;
}

.welcome-wrapper {
  max-width: 950px;
  margin: 38px auto 26px;
  text-align: center;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 140px 1fr 140px;
  align-items: center;
  gap: 24px;
}

.welcome-grid img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  display: block;
}

.welcome-grid p {
  color: #fff;
  font-size: 1.07em;
  font-weight: 400;
  line-height: 1.4em;
  margin: 0;
}

.card-grid {
  max-width: 950px;
  margin: 60px auto;
  text-align: center;
}

.card-grid-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  justify-items: center;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-image {
  width: 180px;
  height: 180px;
  border: 2px solid var(--accent);
  border-radius: 8px 8px 0 0;
  border-bottom: none;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.card-caption {
  width: 180px;
  border: 2px solid var(--accent);
  border-top: none;
  border-radius: 0 0 8px 8px;
  background: #e0e0e0;
  padding: 6px 8px;
  color: #000;
  font-size: 1.05em;
}

.card.partner .card-image,
.card.partner .card-caption {
  width: 140px;
  height: auto;
}

.card.partner .card-image {
  height: 140px;
}

@media (max-width: 700px) {
  .about-page img[alt*="Goblin"] {
    display: none !important;
  }

  .about-page > div:first-child > div {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
}
