.presenter-ribbon {
  background: #080c33;
  border-bottom: 1px solid rgba(218, 184, 95, 0.38);
}

.presenter-ribbon__link {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.4rem);
  padding: 1rem 0;
  color: var(--landing-gold);
  text-decoration: none;
}

.presenter-ribbon__link img {
  display: block;
  width: clamp(210px, 31vw, 420px);
  height: 76px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.presenter-ribbon__link span {
  font-family: "Modesto Text", Georgia, serif;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
}

.presenter-ribbon__link:hover,
.presenter-ribbon__link:focus {
  color: #fff5df;
}

.presenter-ribbon__link:hover img,
.presenter-ribbon__link:focus img {
  transform: translateY(-1px);
}

.presented-by {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  max-width: 940px;
  margin: 0 auto clamp(4.5rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
  text-align: center;
  border-bottom: 1px solid rgba(218, 184, 95, 0.22);
}

.presented-by h2 {
  margin: 0 0 1.6rem;
  color: var(--landing-gold);
  font-family: "Modesto Text", Georgia, serif;
  font-size: clamp(1.65rem, 2.8vw, 2.85rem);
  font-weight: 700;
  line-height: 1.1;
}

.presented-by__logo {
  width: 100%;
  min-width: 0;
  max-width: 600px;
  box-sizing: border-box;
  min-height: 180px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border: 1px solid rgba(218, 184, 95, 0.4);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(8, 34, 78, 0.72), rgba(7, 13, 42, 0.8));
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.presented-by__logo img {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 480px;
  height: 130px;
  object-fit: contain;
}

.presented-by__logo:hover,
.presented-by__logo:focus {
  border-color: var(--landing-gold);
  transform: translateY(-2px);
  background: rgba(8, 34, 78, 0.9);
}

.partner-heading {
  margin-bottom: clamp(2.4rem, 5vw, 4.4rem);
}

.partner-logo {
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.partner-logo:hover,
.partner-logo:focus {
  border-color: var(--landing-gold);
  transform: translateY(-2px);
  background: rgba(8, 34, 78, 0.78);
}

@media (max-width: 767px) {
  .presenter-ribbon__link {
    min-height: 118px;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.85rem 0;
  }

  .presenter-ribbon__link img {
    width: min(82vw, 320px);
    height: 68px;
  }

  .presenter-ribbon__link span {
    font-size: 1.25rem;
  }

  .presented-by {
    margin-bottom: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .presented-by__logo {
    min-height: 148px;
  }

  .presented-by__logo img {
    height: 104px;
  }
}
