#title-block-header { display: none; }

.hero {
  position: relative;
  max-width: 480px;
  margin: 1.5em auto 2.5em auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.hero img {
  width: 100%;
  display: block;
}

.hero-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3em 1em 1em;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 6px;
}

.link-grid .card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.link-grid .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.link-grid .card-body {
  padding: 1.5rem 1rem;
  border-radius: 12px;
}

.link-logo {
  height: 70px;
  max-width: 100%;
  object-fit: contain;
}

.link-logo.link-logo-fill {
  width: 90%;
  height: auto;
  max-height: 140px;
  object-fit: contain;
}
