.home-service-strip {
  position: relative;
  z-index: 1;
  padding: 20px 0;
  background: linear-gradient(102deg, #040706, #13110c 48%, #090909);
  color: #fff;
}

.campaign-brand--image {
  display: block;
  width: min(760px, calc(100% - 235px));
}

.campaign-brand--image img {
  display: block;
  width: 100%;
  max-height: 132px;
  object-fit: contain;
}

.campaign-header .site-nav {
  align-items: stretch;
}

.campaign-dropdown {
  position: relative;
  z-index: 3;
}

.campaign-dropdown summary {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  padding: 12px 0;
  color: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.campaign-dropdown summary::-webkit-details-marker {
  display: none;
}

.campaign-dropdown__arrow {
  color: #17140a;
  font-size: .75rem;
  transition: transform .2s ease;
}

.campaign-dropdown[open] .campaign-dropdown__arrow {
  transform: rotate(180deg);
}

.campaign-dropdown__menu {
  position: absolute;
  top: calc(100% - 4px);
  left: -16px;
  display: none;
  min-width: 166px;
  padding: 7px 0;
  overflow: hidden;
  border-top: 3px solid #c41017;
  background: #fff;
  box-shadow: 0 12px 20px rgba(0, 0, 0, .22);
}

.campaign-dropdown[open] .campaign-dropdown__menu,
.campaign-dropdown:hover .campaign-dropdown__menu {
  display: grid;
}

.campaign-dropdown__menu a {
  padding: 11px 18px !important;
  color: #2b2a27 !important;
  font-size: .9rem !important;
  line-height: 1.2;
  white-space: nowrap;
}

.campaign-dropdown__menu a::after {
  display: none;
}

.campaign-dropdown__menu a:hover,
.campaign-dropdown__menu a:focus-visible {
  background: #f7e58a;
  outline: 0;
}

.home-service-strip__inner {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  align-items: center;
}

.home-service-strip__intro p,
.home-section-heading p,
.home-analysis__heading > div > p {
  margin: 0 0 5px;
  color: #d7a847;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.home-service-strip__intro h2 {
  margin: 0;
  color: #f6d477;
  font-size: 1.22rem;
}

.home-service-strip__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.home-service-strip__items article {
  position: relative;
  min-height: 72px;
  padding: 5px 18px 5px 58px;
  border-left: 1px solid rgba(224, 185, 95, .22);
}

.home-service-strip__items span {
  position: absolute;
  top: 8px;
  left: 17px;
  color: #e5b554;
  font-size: .83rem;
  font-weight: 900;
}

.home-service-strip__items h3 {
  margin: 2px 0 4px;
  color: #f4ce7c;
  font-size: .94rem;
}

.home-service-strip__items p {
  margin: 0;
  color: #beb9ac;
  font-size: .73rem;
  line-height: 1.4;
}

.home-promotions {
  padding: 64px 0 74px;
  background: #fff;
}

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

.home-section-heading h2 {
  margin: 0;
  color: #231806;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.home-promotion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.home-promotion-card {
  position: relative;
  display: block;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid #d5b76e;
  border-radius: 10px;
  background: #1f1606;
  color: #fff;
  box-shadow: 0 12px 25px rgba(46, 35, 13, .15);
  isolation: isolate;
}

.home-promotion-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.home-promotion-card__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 4, 2, .9), rgba(5, 4, 2, .33) 75%, rgba(5, 4, 2, .12));
}

.home-promotion-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 27px 25px;
}

.home-promotion-card__content small {
  color: #ffe29a;
  font-size: .64rem;
  letter-spacing: .12em;
  font-weight: 800;
}

.home-promotion-card__content b {
  max-width: 76%;
  margin-top: 10px;
  color: #fff6d6;
  font-size: 1.55rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .6);
}

.home-promotion-card__content em {
  max-width: 76%;
  margin-top: 7px;
  color: #e9e3d2;
  font-size: .77rem;
  font-style: normal;
  line-height: 1.55;
}

.home-promotion-card__content strong {
  margin-top: auto;
  color: #ffd36c;
  font-size: .78rem;
}

.home-promotion-card__content i,
.sports-insight-card i {
  margin-left: 4px;
  font-style: normal;
}

.home-promotion-card__number {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 17px;
  color: rgba(255, 234, 179, .8);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: .05em;
}

.home-promotion-card:hover img,
.home-promotion-card:focus-visible img {
  transform: scale(1.06);
}

.home-promotion-card:focus-visible {
  outline: 3px solid #c48b22;
  outline-offset: 3px;
}

.home-analysis {
  padding: 77px 0 96px;
  background: radial-gradient(circle at 80% 5%, rgba(228, 171, 45, .24), transparent 27%), linear-gradient(135deg, #061938, #0d3365);
  color: #fff;
}

.home-analysis__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.home-analysis__heading h2 {
  margin: 0;
  color: #fff5cc;
  font-size: clamp(1.8rem, 3.4vw, 2.75rem);
}

.home-analysis__heading > p {
  max-width: 500px;
  margin: 0;
  color: #cbd8eb;
  font-size: .84rem;
  line-height: 1.7;
}

.sports-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sports-insight-card {
  position: relative;
  display: flex;
  min-height: 242px;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 28px 25px;
  overflow: hidden;
  border: 1px solid rgba(243, 205, 112, .52);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(8, 18, 39, .91), rgba(18, 59, 106, .76));
  color: #fff;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.sports-insight-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -67px;
  width: 185px;
  height: 185px;
  border: 1px solid rgba(255, 215, 126, .3);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(255, 215, 126, .05), 0 0 0 48px rgba(255, 215, 126, .035);
}

.sports-insight-card__index {
  color: #e9bd64;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .15em;
}

.sports-insight-card__category {
  margin-top: 22px;
  color: #9fcaed;
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.sports-insight-card b {
  position: relative;
  z-index: 1;
  margin-top: 7px;
  color: #fff3c5;
  font-size: 1.35rem;
}

.sports-insight-card em {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  color: #d7e1ee;
  font-size: .82rem;
  font-style: normal;
  line-height: 1.63;
}

.sports-insight-card strong {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: #f1ca72;
  font-size: .79rem;
}

.sports-insight-card:hover,
.sports-insight-card:focus-visible {
  transform: translateY(-4px);
  border-color: #f6d47b;
  background: linear-gradient(145deg, rgba(13, 31, 62, .98), rgba(25, 75, 129, .9));
}

.sports-insight-card:focus-visible {
  outline: 3px solid #fff1b2;
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .campaign-brand--image { width: min(570px, calc(100% - 180px)); }
  .campaign-dropdown summary { padding: 10px 0; }
  .home-service-strip__inner { grid-template-columns: 1fr; gap: 13px; }
  .home-service-strip__intro { text-align: center; }
  .home-promotion-grid,
  .sports-insight-grid { grid-template-columns: 1fr; }
  .home-promotion-card { min-height: 210px; }
  .home-analysis__heading { display: block; }
  .home-analysis__heading > p { margin-top: 13px; }
}

@media (max-width: 620px) {
  .campaign-brand--image { width: min(88vw, 490px); }
  .campaign-brand--image img { max-height: 96px; }
  .campaign-dropdown summary { padding: 10px 0; font-size: .9rem; }
  .campaign-dropdown__menu { position: static; width: 100%; margin-top: 2px; }
  .home-service-strip { padding: 18px 0; }
  .home-service-strip__items { grid-template-columns: 1fr 1fr; }
  .home-service-strip__items article { min-height: 65px; padding: 8px 10px 8px 43px; }
  .home-service-strip__items article:nth-child(odd) { border-left: 0; }
  .home-service-strip__items span { left: 10px; }
  .home-service-strip__items h3 { font-size: .78rem; }
  .home-service-strip__items p { font-size: .63rem; }
  .home-promotions { padding: 45px 0 53px; }
  .home-promotion-card { min-height: 185px; }
  .home-promotion-card__content { padding: 22px; }
  .home-promotion-card__content b { font-size: 1.33rem; }
  .home-analysis { padding: 55px 0 67px; }
  .sports-insight-card { min-height: 205px; padding: 25px 22px; }
}

.campaign-footer__action--image {
  min-width: 112px;
}

.campaign-footer__action--image img {
  display: block;
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .38));
  transition: transform .2s ease;
}

.campaign-footer__action--image:hover img,
.campaign-footer__action--image:focus-visible img {
  transform: translateY(-3px) scale(1.04);
}

.campaign-footer__action--image:focus-visible {
  outline: 2px solid #ffe384;
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .campaign-footer__action--image { min-width: 88px; }
  .campaign-footer__action--image img { width: 76px; height: 76px; }
}

@media (max-width: 620px) {
  .campaign-footer__action--image img { width: 60px; height: 60px; }
}
