:root {
  --lol-red: #e61923;
  --lol-red-dark: #c90f18;
  --lol-navy: #071826;
  --lol-ink: #131a23;
  --lol-muted: #66707c;
  --lol-line: #e5e8ec;
  --lol-soft: #f6f7f8;
  --lol-white: #fff;
  --lol-shadow: 0 14px 34px rgba(10, 24, 38, 0.1);
  --lol-radius: 7px;
  --lol-max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body.lol-homepage {
  margin: 0;
  background: var(--lol-white);
  color: var(--lol-ink);
  font-family: "Titillium Web", "Arial Narrow", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

.lol-homepage *,
.lol-homepage *::before,
.lol-homepage *::after {
  box-sizing: border-box;
}

.lol-homepage a {
  color: inherit;
  text-decoration: none;
}

.lol-homepage img {
  display: block;
  height: auto;
  max-width: 100%;
}

.lol-homepage button,
.lol-homepage input {
  font: inherit;
}

.lol-homepage svg {
  display: block;
  fill: none;
  height: 1.25em;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 1.25em;
}

.lol-container {
  margin-inline: auto;
  max-width: var(--lol-max);
  padding-inline: 24px;
  width: 100%;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  white-space: nowrap;
  width: 1px;
}

.screen-reader-text:focus {
  background: var(--lol-white);
  clip: auto !important;
  clip-path: none;
  color: var(--lol-ink);
  height: auto;
  left: 8px;
  padding: 12px 16px;
  top: 8px;
  width: auto;
  z-index: 10000;
}

.lol-utility {
  background: #f3f4f5;
  border-bottom: 1px solid #e9ebed;
  color: #454d57;
  font-family: Arial, sans-serif;
  font-size: 12px;
}

.lol-utility__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 30px;
}

.lol-utility p {
  margin: 0;
}

.lol-brand-row {
  background: var(--lol-white);
  box-shadow: 0 4px 16px rgba(7, 24, 38, 0.035);
}

.lol-brand-row__inner {
  align-items: center;
  display: flex;
  min-height: 80px;
}

.lol-brand {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

.lol-brand .custom-logo-link {
  display: block;
}

.lol-brand .custom-logo {
  max-height: 48px;
  width: auto;
}

.lol-homepage .lol-brand__name {
  color: var(--lol-red);
  display: block;
  font-size: clamp(26px, 3vw, 33px);
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 0.95;
  text-transform: uppercase;
}

.lol-brand__tagline,
.lol-footer__brand p {
  color: #505862;
  font-family: Arial, sans-serif;
  font-size: 11px;
  margin: 7px 0 0;
}

.lol-nav-row {
  background: var(--lol-white);
  border-bottom: 1px solid var(--lol-line);
  border-top: 1px solid var(--lol-line);
}

.lol-nav-row__inner {
  align-items: center;
  display: flex;
  min-height: 50px;
}

.lol-home-link {
  align-items: center;
  background: var(--lol-red);
  color: var(--lol-white) !important;
  display: flex;
  flex: 0 0 46px;
  height: 42px;
  justify-content: center;
  margin-right: 6px;
  transition: background-color 0.2s ease;
}

.lol-home-link:hover,
.lol-home-link:focus-visible {
  background: var(--lol-red-dark);
}

.lol-primary-nav {
  flex: 1;
  min-width: 0;
}

.lol-menu,
.lol-primary-nav .menu {
  align-items: stretch;
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lol-menu li,
.lol-primary-nav .menu li {
  margin: 0;
  position: relative;
}

.lol-menu > li > a,
.lol-primary-nav .menu > li > a {
  align-items: center;
  color: #28303a;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: 49px;
  padding: 0 13px;
  position: relative;
  white-space: nowrap;
}

.lol-menu > li > a::after,
.lol-primary-nav .menu > li > a::after {
  background: var(--lol-red);
  bottom: 0;
  content: "";
  height: 3px;
  left: 12px;
  opacity: 0;
  position: absolute;
  right: 12px;
  transform: scaleX(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lol-menu > li.current-menu-item > a::after,
.lol-menu > li > a:hover::after,
.lol-menu > li > a:focus-visible::after,
.lol-primary-nav .menu > li.current-menu-item > a::after,
.lol-primary-nav .menu > li > a:hover::after,
.lol-primary-nav .menu > li > a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.lol-primary-nav .sub-menu {
  background: var(--lol-white);
  box-shadow: var(--lol-shadow);
  display: none;
  left: 0;
  list-style: none;
  margin: 0;
  min-width: 210px;
  padding: 7px 0;
  position: absolute;
  top: 100%;
  z-index: 30;
}

.lol-primary-nav li:hover > .sub-menu,
.lol-primary-nav li:focus-within > .sub-menu {
  display: block;
}

.lol-primary-nav .sub-menu a {
  display: block;
  padding: 9px 15px;
}

.lol-search-toggle--desktop {
  align-items: center;
  background: transparent;
  border: 1px solid #dfe3e8;
  color: #8a919a;
  display: flex;
  flex: 0 0 225px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  height: 34px;
  justify-content: space-between;
  margin-left: 12px;
  padding: 0 0 0 12px;
}

.lol-search-toggle--desktop svg {
  background: var(--lol-red);
  color: var(--lol-white);
  height: 34px;
  padding: 9px;
  width: 36px;
}

.lol-icon-button,
.lol-menu-toggle,
.lol-search-toggle--mobile {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--lol-ink);
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.lol-menu-toggle {
  border-radius: 4px;
  color: var(--lol-ink) !important;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.lol-menu-toggle:hover,
.lol-menu-toggle:focus-visible,
.lol-menu-toggle[aria-expanded="true"] {
  background: var(--lol-soft);
  color: var(--lol-red) !important;
}

.lol-close-icon {
  display: none;
}

.lol-menu-toggle[aria-expanded="true"] .lol-menu-icon {
  display: none;
}

.lol-menu-toggle[aria-expanded="true"] .lol-close-icon {
  display: block;
}

.lol-search-panel {
  background: var(--lol-white);
  border-bottom: 1px solid var(--lol-line);
  box-shadow: 0 12px 25px rgba(10, 24, 38, 0.08);
  padding-block: 16px;
  position: absolute;
  width: 100%;
  z-index: 35;
}

.lol-search-panel[hidden] {
  display: none;
}

.lol-search-form {
  display: flex;
  margin-left: auto;
  max-width: 620px;
}

.lol-search-form input {
  border: 1px solid #cfd5dc;
  border-radius: 5px 0 0 5px;
  flex: 1;
  min-height: 46px;
  min-width: 0;
  padding: 0 15px;
}

.lol-search-form button {
  align-items: center;
  background: var(--lol-red);
  border: 0;
  border-radius: 0 5px 5px 0;
  color: var(--lol-white);
  display: flex;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
}

.lol-hero {
  background-color: var(--lol-navy);
  background-image: var(--lol-hero-image, linear-gradient(125deg, #183950, #071826));
  background-position: center;
  background-size: cover;
  color: var(--lol-white);
  min-height: 405px;
  position: relative;
}

.lol-hero__shade {
  background: linear-gradient(90deg, rgba(3, 17, 29, 0.97) 0%, rgba(3, 17, 29, 0.83) 47%, rgba(3, 17, 29, 0.62) 100%);
  inset: 0;
  position: absolute;
}

.lol-hero__inner {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.85fr);
  min-height: 405px;
  padding-block: 32px;
  position: relative;
}

.lol-eyebrow,
.lol-story-category,
.lol-card-category {
  background: var(--lol-red);
  border-radius: 3px;
  color: var(--lol-white) !important;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 7px 9px;
  text-transform: uppercase;
}

.lol-hero__copy h1 {
  color: var(--lol-white);
  font-size: clamp(38px, 3.75vw, 46px);
  font-weight: 900;
  letter-spacing: -1.4px;
  line-height: 1.01;
  margin: 18px 0 15px;
  max-width: 750px;
  text-wrap: balance;
}

.lol-hero__copy > p {
  font-family: Arial, sans-serif;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.45;
  margin: 0;
  max-width: 690px;
}

.lol-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 25px;
}

.lol-button {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 5px;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  gap: 12px;
  justify-content: center;
  min-height: 52px;
  padding: 11px 23px;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lol-button:hover,
.lol-button:focus-visible {
  transform: translateY(-2px);
}

.lol-button--primary {
  background: var(--lol-red);
  color: var(--lol-white) !important;
}

.lol-button--primary:hover,
.lol-button--primary:focus-visible {
  background: var(--lol-red-dark);
}

.lol-button--outline {
  border-color: var(--lol-white);
  color: var(--lol-white) !important;
}

.lol-button--outline:hover,
.lol-button--outline:focus-visible {
  background: var(--lol-white);
  color: var(--lol-navy) !important;
}

.lol-hero-stories {
  display: grid;
  gap: 8px;
}

.lol-hero-story {
  background: rgba(5, 21, 34, 0.89);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  display: grid;
  grid-template-columns: 118px 1fr;
  min-height: 104px;
  overflow: hidden;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lol-hero-story:hover,
.lol-hero-story:focus-within {
  background: rgba(10, 31, 48, 0.96);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateX(-3px);
}

.lol-hero-story__image {
  background: #17334b;
  display: block;
  min-height: 104px;
  overflow: hidden;
}

.lol-hero-story__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.lol-hero-story__content {
  min-width: 0;
  padding: 10px 12px;
}

.lol-story-category {
  background: #5a46dd;
  font-size: 8px;
  padding: 4px 6px;
}

.lol-hero-story h2 {
  color: var(--lol-white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.18;
  margin: 5px 0 7px;
}

.lol-hero-story h2 a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.lol-hero-story time {
  align-items: center;
  color: #d0d7df;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 10px;
  gap: 5px;
}

.lol-hero-story time svg {
  height: 12px;
  width: 12px;
}

.lol-values {
  background: var(--lol-white);
  border-bottom: 1px solid var(--lol-line);
}

.lol-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 24px;
}

.lol-value {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 56px 1fr;
  min-height: 84px;
  padding: 0 34px;
}

.lol-value + .lol-value {
  border-left: 1px solid #d8dde2;
}

.lol-value__icon {
  align-items: center;
  color: var(--lol-red);
  display: flex;
  justify-content: center;
}

.lol-value__icon svg {
  height: 47px;
  stroke-width: 1.7;
  width: 47px;
}

.lol-value h2 {
  color: var(--lol-ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 5px;
}

.lol-value p {
  color: var(--lol-muted);
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

.lol-section {
  padding-block: 34px;
}

.lol-section-heading {
  align-items: flex-end;
  border-bottom: 1px solid var(--lol-line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
}

.lol-section-heading h2 {
  color: var(--lol-ink);
  font-size: clamp(25px, 3vw, 31px);
  font-weight: 900;
  letter-spacing: -0.6px;
  line-height: 1;
  margin: 0;
  min-width: 0;
}

.lol-section-heading > a {
  align-items: center;
  color: var(--lol-red);
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  gap: 5px;
  white-space: nowrap;
}

.lol-link-label--mobile {
  display: none;
}

.lol-section-heading > a svg {
  height: 15px;
  width: 15px;
}

.lol-article-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lol-article-card {
  min-width: 0;
}

.lol-article-card__image {
  aspect-ratio: 16 / 9;
  background: #e7ebef;
  border-radius: var(--lol-radius);
  box-shadow: 0 4px 12px rgba(7, 24, 38, 0.06);
  display: block;
  height: auto;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.lol-article-card__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}

.lol-article-card:hover .lol-article-card__image img {
  transform: scale(1.035);
}

.lol-article-card:hover .lol-article-card__image,
.lol-article-card:focus-within .lol-article-card__image {
  box-shadow: 0 12px 26px rgba(7, 24, 38, 0.13);
  transform: translateY(-2px);
}

.lol-image-placeholder {
  align-items: center;
  color: #9aa3ad;
  display: flex;
  height: 100%;
  justify-content: center;
}

.lol-image-placeholder svg {
  height: 52px;
  width: 52px;
}

.lol-card-category {
  background: #5165ea;
  left: 11px;
  padding: 6px 8px;
  position: absolute;
  top: 11px;
}

.lol-article-card__body {
  padding-top: 12px;
}

.lol-article-card h3 {
  color: var(--lol-ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.18;
  margin: 0;
}

.lol-article-card h3 a:hover,
.lol-article-card h3 a:focus-visible {
  color: var(--lol-red);
}

.lol-article-card__body > p {
  color: var(--lol-muted);
  display: -webkit-box;
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.45;
  margin: 8px 0 10px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.lol-article-meta {
  align-items: center;
  color: #8a939d;
  display: flex;
  flex-wrap: wrap;
  font-family: Arial, sans-serif;
  font-size: 11px;
  gap: 12px;
}

.lol-article-meta span {
  align-items: center;
  display: inline-flex;
  gap: 5px;
}

.lol-article-meta svg {
  height: 13px;
  width: 13px;
}

.lol-categories {
  background: #fafbfc;
  border-top: 1px solid var(--lol-line);
  padding-top: 18px;
}

.lol-category-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.lol-category-card {
  background: var(--lol-white);
  border: 1px solid #e0e4e8;
  border-radius: var(--lol-radius);
  box-shadow: 0 2px 4px rgba(10, 24, 38, 0.03);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.lol-category-card:hover {
  box-shadow: var(--lol-shadow);
  transform: translateY(-3px);
}

.lol-category-card__image {
  background-color: #1c3c59;
  background-image: linear-gradient(135deg, #224f6d, #0d2034);
  background-position: center;
  background-size: cover;
  display: block;
  height: 112px;
}

.lol-category-card__body {
  display: flex;
  flex-direction: column;
  padding: 12px 12px 14px;
}

.lol-category-card h3 {
  color: var(--lol-ink);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
}

.lol-category-card p {
  color: var(--lol-muted);
  display: -webkit-box;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.45;
  margin: 8px 0 13px;
  min-height: 35px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.lol-category-card__link {
  align-items: center;
  background: var(--lol-red);
  border-radius: 4px;
  color: var(--lol-white) !important;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
  min-height: 38px;
  margin-top: auto;
  padding: 8px 13px;
}

.lol-category-card__link:hover,
.lol-category-card__link:focus-visible {
  background: var(--lol-red-dark);
}

.lol-category-card__link svg {
  height: 14px;
  width: 14px;
}

.lol-discover {
  background: linear-gradient(115deg, #d80815, var(--lol-red) 55%, #ba0713);
  color: var(--lol-white);
  overflow: hidden;
  position: relative;
}

.lol-discover::after {
  border: 45px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
  height: 300px;
  position: absolute;
  right: -90px;
  top: -155px;
  width: 520px;
}

.lol-discover__inner {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: 52px 1fr auto;
  min-height: 102px;
  padding-block: 20px;
  position: relative;
  z-index: 1;
}

.lol-discover__icon svg {
  height: 42px;
  width: 42px;
}

.lol-discover h2 {
  color: var(--lol-white);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 5px;
}

.lol-discover p {
  font-family: Arial, sans-serif;
  font-size: 13px;
  margin: 0;
}

.lol-button--light {
  background: var(--lol-white);
  color: var(--lol-red) !important;
  min-height: 45px;
  padding-block: 8px;
}

.lol-button--light:hover,
.lol-button--light:focus-visible {
  background: #fff3f3;
}

.lol-footer {
  background: #f5f7f9;
  border-top: 1px solid var(--lol-line);
}

.lol-footer__top {
  align-items: start;
  display: grid;
  gap: clamp(38px, 6vw, 86px);
  grid-template-columns: minmax(250px, 1.25fr) minmax(300px, 1.35fr) minmax(150px, 0.65fr);
  padding-block: 38px 34px;
}

.lol-footer .lol-brand__name {
  font-size: 22px;
  letter-spacing: -0.7px;
}

.lol-footer__summary {
  color: #67717c !important;
  font-size: 12px !important;
  line-height: 1.55;
  margin-top: 15px !important;
  max-width: 290px;
}

.lol-footer__column h2 {
  color: var(--lol-ink);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 1px 0 15px;
  text-transform: uppercase;
}

.lol-footer-menu {
  display: grid;
  gap: 10px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lol-footer-menu--sections {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lol-footer-menu a {
  color: #4f5964;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.35;
}

.lol-footer-menu a:hover,
.lol-footer-menu a:focus-visible {
  color: var(--lol-red);
}

.lol-footer__copyright {
  color: #7b848e;
  font-family: Arial, sans-serif;
  font-size: 10px;
  margin: 0;
}

.lol-footer__bottom {
  background: #eef1f4;
  border-top: 1px solid #e1e5e9;
}

.lol-footer__bottom-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 48px;
}

.lol-footer__top-link {
  align-items: center;
  color: #56616d;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  gap: 6px;
}

.lol-footer__top-link:hover,
.lol-footer__top-link:focus-visible {
  color: var(--lol-red);
}

.lol-footer__top-link svg {
  height: 14px;
  transform: rotate(-90deg);
  width: 14px;
}

.lol-mobile-bar {
  display: none;
}

.lol-homepage :focus-visible {
  outline: 3px solid #3b82f6;
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .lol-menu > li > a,
  .lol-primary-nav .menu > li > a {
    font-size: 12px;
    padding-inline: 9px;
  }

  .lol-search-toggle--desktop {
    flex-basis: 185px;
  }

  .lol-value {
    padding-inline: 23px;
  }
}

@media (max-width: 959px) {
  .lol-container {
    padding-inline: 20px;
  }

  .lol-utility {
    display: none;
  }

  .lol-brand-row {
    border-bottom: 1px solid var(--lol-line);
  }

  .lol-brand-row__inner {
    justify-content: space-between;
    min-height: 74px;
  }

  .lol-brand {
    align-items: center;
    left: 50%;
    max-width: calc(100% - 120px);
    position: absolute;
    transform: translateX(-50%);
  }

  .lol-brand__name {
    font-size: 25px;
    white-space: nowrap;
  }

  .lol-brand__tagline {
    font-size: 9px;
    margin-top: 4px;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .lol-icon-button,
  .lol-menu-toggle,
  .lol-search-toggle--mobile {
    display: flex;
  }

  .lol-search-toggle--mobile {
    background: var(--lol-red);
    border-radius: 4px;
    color: var(--lol-white);
  }

  .lol-nav-row {
    border: 0;
  }

  .lol-nav-row__inner {
    display: block;
    min-height: 0;
    padding: 0;
  }

  .lol-home-link,
  .lol-search-toggle--desktop {
    display: none;
  }

  .lol-primary-nav {
    background: var(--lol-white);
    border-bottom: 1px solid var(--lol-line);
    box-shadow: var(--lol-shadow);
    display: none;
    left: 0;
    max-height: calc(100vh - 74px);
    overflow-y: auto;
    padding: 8px 20px 18px;
    position: absolute;
    right: 0;
    top: 74px;
    z-index: 40;
  }

  .lol-primary-nav.is-open {
    display: block;
  }

  .lol-menu,
  .lol-primary-nav .menu {
    align-items: stretch;
    display: block;
  }

  .lol-menu > li > a,
  .lol-primary-nav .menu > li > a {
    border-bottom: 1px solid var(--lol-line);
    font-size: 15px;
    min-height: 48px;
    padding-inline: 6px;
  }

  .lol-menu > li > a::after,
  .lol-primary-nav .menu > li > a::after {
    display: none;
  }

  .lol-primary-nav .sub-menu {
    box-shadow: none;
    display: block;
    padding: 0 0 5px 15px;
    position: static;
  }

  .lol-search-panel {
    top: 74px;
  }

  .lol-hero__inner {
    gap: 28px;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  }

  .lol-hero__copy h1 {
    font-size: clamp(38px, 5vw, 50px);
  }

  .lol-values__grid {
    grid-template-columns: 1fr;
    padding-block: 0;
  }

  .lol-value {
    min-height: 105px;
    padding: 18px 12px;
  }

  .lol-value + .lol-value {
    border-left: 0;
    border-top: 1px solid var(--lol-line);
  }

  .lol-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lol-category-card:nth-child(n + 4) {
    grid-column: span 1;
  }

  .lol-footer__top {
    gap: 34px;
    grid-template-columns: minmax(0, 1.25fr) minmax(160px, 0.75fr);
  }

  .lol-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  body.lol-homepage {
    padding-bottom: 64px;
  }

  .lol-container {
    padding-inline: 18px;
  }

  .lol-hero {
    min-height: 0;
  }

  .lol-hero__shade {
    background: linear-gradient(180deg, rgba(3, 17, 29, 0.48) 0%, rgba(3, 17, 29, 0.96) 56%, rgba(3, 17, 29, 1) 100%);
  }

  .lol-hero__inner {
    display: block;
    min-height: 0;
    padding-block: 84px 30px;
  }

  .lol-hero__copy h1 {
    font-size: clamp(32px, 9vw, 40px);
    letter-spacing: -1.3px;
    line-height: 1;
    margin-block: 14px 12px;
  }

  .lol-desktop-break {
    display: none;
  }

  .lol-hero__copy > p {
    font-size: 17px;
    line-height: 1.35;
  }

  .lol-hero__actions {
    display: grid;
    gap: 9px;
    margin-top: 21px;
  }

  .lol-button {
    min-height: 50px;
    width: 100%;
  }

  .lol-hero-stories {
    display: none;
  }

  .lol-value {
    gap: 14px;
    grid-template-columns: 52px 1fr;
    min-height: 96px;
  }

  .lol-value__icon svg {
    height: 40px;
    width: 40px;
  }

  .lol-section {
    padding-block: 27px;
  }

  .lol-section-heading {
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }

  .lol-section-heading h2 {
    font-size: 25px;
  }

  .lol-section-heading > a {
    font-size: 11px;
    flex: 0 0 auto;
  }

  .lol-link-label--desktop {
    display: none;
  }

  .lol-link-label--mobile {
    display: inline;
  }

  .lol-article-grid {
    grid-template-columns: 1fr;
  }

  .lol-article-card {
    border-bottom: 1px solid var(--lol-line);
    padding-bottom: 20px;
  }

  .lol-article-card__image {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .lol-article-card h3 {
    font-size: 19px;
  }

  .lol-article-card__body > p {
    display: none;
  }

  .lol-article-meta {
    margin-top: 9px;
  }

  .lol-category-grid {
    grid-template-columns: 1fr;
  }

  .lol-category-card {
    display: grid;
    grid-template-columns: 42% 58%;
  }

  .lol-category-card__image {
    height: 100%;
    min-height: 156px;
  }

  .lol-category-card__body {
    padding: 16px;
  }

  .lol-category-card__link {
    min-height: 44px;
  }

  .lol-discover__inner {
    gap: 10px 14px;
    grid-template-columns: 42px 1fr;
    padding-block: 24px;
  }

  .lol-discover__icon svg {
    height: 35px;
    width: 35px;
  }

  .lol-discover h2 {
    font-size: 22px;
  }

  .lol-discover .lol-button {
    grid-column: 1 / -1;
    margin-top: 8px;
  }

  .lol-footer__top {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
    padding-block: 34px;
    text-align: left;
  }

  .lol-footer__brand {
    grid-column: auto;
    margin-bottom: 0;
  }

  .lol-footer__summary {
    max-width: 340px;
  }

  .lol-footer-menu--sections {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lol-footer__bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-block: 16px;
  }

  .lol-mobile-bar {
    align-items: stretch;
    background: var(--lol-red);
    bottom: 0;
    box-shadow: 0 -8px 22px rgba(7, 24, 38, 0.16);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    left: 0;
    min-height: 64px;
    position: fixed;
    right: 0;
    z-index: 60;
  }

  .lol-mobile-bar a {
    align-items: center;
    color: var(--lol-white);
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    gap: 3px;
    justify-content: center;
    min-height: 64px;
    opacity: 0.83;
  }

  .lol-mobile-bar a.is-current,
  .lol-mobile-bar a:hover,
  .lol-mobile-bar a:focus-visible {
    background: rgba(0, 0, 0, 0.08);
    opacity: 1;
  }

  .lol-mobile-bar svg {
    height: 23px;
    width: 23px;
  }
}

@media (max-width: 340px) {
  .lol-container {
    padding-inline: 14px;
  }

  .lol-brand__name {
    font-size: 21px;
    letter-spacing: -0.8px;
  }

  .lol-brand__tagline {
    max-width: 185px;
  }

  .lol-hero__inner {
    padding-top: 68px;
  }

  .lol-hero__copy h1 {
    font-size: 34px;
  }

  .lol-section-heading h2 {
    font-size: 22px;
  }

  .lol-section-heading > a {
    max-width: 88px;
    text-align: right;
  }

  .lol-category-card {
    display: block;
  }

  .lol-category-card__image {
    height: 130px;
    min-height: 130px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .lol-homepage *,
  .lol-homepage *::before,
  .lol-homepage *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
