@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap");

* {
   margin: 0px;
   padding: 0px;
   box-sizing: border-box;
   font-family: "Overpass", sans-serif;
   border: none;
   outline: none;
   text-decoration: none;
   color: var(--primary-text);
}

:root {
   --primary: #FFD800;
   --primary-text: #171717;
   --bg: #ededed;
   --bg2: #f4f4f4;
   --sub-text: #747474;
   --border: 1px solid #171717;
   --border-lite: 1px solid #c5c5c5;
   --light: #ffffff;
}

[class*="grid"] {
   display: grid;
}

.align-center {
   align-items: center;
}

html {
   font-size: 62.5%;
   scroll-behavior: smooth;
   scroll-padding-top: 12rem;
}

body {
   text-size-adjust: 100%;
   background: var(--bg);
}

i svg {
   width: unset;
   height: 1.8rem;
   fill: var(--light);
}

p,
a,
input,
select,
textarea,
button {
   font-size: 1.6rem;
}

p {
   color: var(--sub-text);
   line-height: 1.5;
}

h1,
h2,
h3 {
   text-transform: capitalize;
}

img,
video {
   max-width: 100%;
}

button {
   padding: 1.5rem 3rem;
   font-size: 1.6rem;
   border-radius: 0.5rem;
}

main {
   padding: 15rem 0px 5rem;
}

section {
   padding: 5rem 0px;
}

.container {
   max-width: 1240px;
   padding: 0px 2rem;
   margin: auto;
   width: 100%;
}

.container-max {
   max-width: 1540px;
   padding: 0px 2rem;
   margin: auto;
   width: 100%;
}

header {
   background: white;
   height: 10rem;
   position: fixed;
   top: 0px;
   left: 0px;
   width: 100%;
   z-index: 999;
   border-bottom: var(--border-lite);
   box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.logo img {
   height: 6rem;
}

header .links,
header .container {
   height: 100%;
}

header .container {
   justify-content: space-between;
}

header button {
   background: var(--primary);
   height: 4rem;
   padding: 0px 2rem;
   color: black;
   font-weight: 900;
}

header .logo {
   height: 12rem;
   background: var(--primary);
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 0px 0.5rem;
   font-size: 2.5rem;
   color: white;
   position: relative;
   text-transform: uppercase;
   top: -5rem;
   margin-bottom: -5rem;
}

header .links a,
.links p {
   height: 5rem;
   padding: 0px 2rem;
   display: flex;
   align-items: center;
   justify-content: center;
   width: fit-content;
}

header .mega-menu {
   position: fixed;
   width: 100%;
   background: white;
   top: 10rem;
   left: 0px;
   padding: 2rem 0px;
   box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
   border-bottom: var(--border-lite);
   display: none;
}

.mega-menu .heading {
   border-bottom: var(--border-lite);
   padding-bottom: 2rem;
   margin-bottom: 3rem;
   display: flex;
   align-items: center;
   gap: 2rem;
}

.mega-menu .heading a {
   font-size: 3rem;
   font-weight: 700;
}

.mega-menu .back-button {
   display: flex;
   align-items: center;
   gap: 0.5rem;
   background: none;
   border: none;
   color: var(--primary-text);
   font-size: 1.6rem;
   cursor: pointer;
   padding: 0.5rem 1rem;
   border-radius: 0.5rem;
   transition: background-color 0.3s;
}

.mega-menu .back-button:hover {
   background-color: rgba(0, 0, 0, 0.05);
}

.mega-menu .back-button i {
   font-size: 1.8rem;
}

.mega-menu a {
   display: flex;
   align-items: center;
   gap: 1rem;
   justify-content: unset !important;
   height: unset !important;
}

header .container {
   display: flex;
   align-items: center;
   height: 100%;
   gap: 2rem;
}

.grid-4 {
   grid-template-columns: repeat(4, 1fr);
}

.mega-menu .container {
   display: block;
}

header .mega-menu :is(a, p) {
   color: var(--primary-text);
}

header .mega-menu .group {
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

header .mega-menu .group .parent {
   font-weight: 700;
}

header .container .links {
   display: flex;
   align-items: center;
   gap: 1rem;
}

header .wraper {
   display: flex;
   align-items: center;
   gap: 1rem;
   width: 100%;
}

header p {
   color: var(--primary-text);
   cursor: pointer;
}

.title {
   max-width: 75rem;
   width: 100%;
   text-align: center;
   display: flex;
   align-items: center;
   flex-direction: column;
   justify-content: center;
   margin: auto auto 5rem;
   gap: 1rem;
}

.title :is(h1) {
   font-size: 5rem;
}

.title :is(h2) {
   font-size: 2.5rem;
}

.sec-block {
   padding: 3rem;
   background: white;
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
}

.sec-block h2 {
   font-size: 2rem;
   position: relative;
   margin-bottom: 3rem;
}

.sec-block h2::before {
   content: "";
   position: absolute;
   left: 0px;
   bottom: -1rem;
   background: var(--primary);
   width: 10rem;
   height: 2px;
   border-radius: 5rem;
}

.sec-block span {
   font-size: 1.4rem;
   letter-spacing: 1px;
}

.content-card {
   display: grid;
   grid-template-columns: 1.3fr 1fr;
}

.content-card .text-content {
   background: white;
   padding: 3rem;
   display: flex;
   flex-direction: column;
   gap: 2.5rem;
   justify-content: center;
}

.content-card .text-content h2 {
   font-size: 2.3rem;
   position: relative;
}

.content-card .text-content h2::before {
   content: "";
   position: absolute;
   left: 0px;
   bottom: -0.5rem;
   background: var(--primary);
   width: 7rem;
   height: 2px;
   border-radius: 5rem;
}

.layout {
   display: grid;
   grid-template-columns: auto 1fr;
   gap: 2rem;
}

.layout .left {
   width: 30rem;
   border: var(--border-lite);
   height: fit-content;
   position: sticky;
   top: 12rem;
}

.tab-item {
   padding: 1.5rem;
   border-bottom: var(--border-lite);
   display: grid;
   grid-template-columns: 1fr auto;
   align-items: center;
   cursor: pointer;
   transition: 0.3s;
   position: relative;
}

.tab-item:hover {
   background: white;
}

.tab-item:last-child {
   border: none;
}

.tab-item p {
   color: var(--primary-text);
}

.tab-item i {
   font-size: 1.8rem;
}

.tab-item.active {
   background: white;
   font-weight: bold;
}

.tab-item.active::after {
   content: "";
   position: absolute;
   right: 0px;
   top: 0px;
   height: 100%;
   width: 4px;
   background: var(--primary);
}

.main-content .content-card:nth-child(2n) {
   grid-template-columns: 1fr 1.3fr;
}

.main-content {
   display: flex;
   flex-direction: column;
   gap: 5rem;
}

.main-content .frame {
   width: 100%;
   aspect-ratio: 16 / 9;
   overflow: hidden;
}

.frame img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center center;
   transition: 0.3s;
}

.content-card:hover .frame img {
   transform: scale(1.05);
}

.text-content a {
   text-decoration: underline;
}

footer {
   background: var(--primary-text);
   padding: 5rem 0px;
}

footer :is(a, p, h3) {
   color: white;
}

.grid-4 {
   grid-template-columns: repeat(4, 1fr);
   gap: 1.5rem;
}

.f-links {
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.f-links h3 {
   font-size: 2rem;
   margin-bottom: 2rem;
   font-weight: 500;
}

.f-links a {
   font-size: 1.6rem;
   color: rgb(116, 116, 116);
}

.ending {
   padding-top: 5rem;
   border-top: 1px solid rgba(255, 255, 255, 0.114);
   margin-top: 5rem;
}

.ending .block {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
}

.ending h3 {
   font-size: 2rem;
   font-weight: 500;
}

.ending :is(p, a) {
   font-size: 1.6rem;
   font-weight: 400;
   color: var(--sub-text);
}

.ending a {
   text-decoration: underline;
}

.news {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.news input {
   height: 5rem;
   padding: 0px 2rem;
   border-radius: 0.5rem;
}

.news button {
   height: 5rem;
   padding: 0px 2rem;
   border-radius: 0.5rem;
   border: 1px solid white;
   background: unset;
   color: white;
}

.grid-3 {
   grid-template-columns: repeat(3, 1fr);
   gap: 1.5rem;
}

.ending .btns {
   display: flex;
   flex-wrap: wrap;
   gap: 1.5rem;
}

.ending .btns img {
   height: 5rem;
}

.social {
   display: flex;
   gap: 1rem;
   flex-wrap: wrap;
}

.social a {
   text-decoration: none;
}

.social a i {
   width: 6rem;
   aspect-ratio: 1 / 1;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 3rem;
   color: white;
   background: black;
   border-radius: 1rem;
}

.footer-end {
   margin-top: 5rem;
   padding-top: 2rem;
   border-top: 1px solid rgba(255, 255, 255, 0.098);
}

.footer-end :is(a, p) {
   color: var(--sub-text);
}

.grid-a {
   display: grid;
   grid-template-columns: 1fr auto;
   gap: 5rem;
}

.footer-end .links {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem 3rem;
}

.footer-end p {
   margin-top: 3rem;
   color: white;
}

footer .logo {
   height: 14rem;
   background: var(--primary);
   width: 10rem;
   position: relative;
   top: -5rem;
   margin-bottom: -5rem;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 3rem;
   color: white;
}

.img-frame {
   width: 10rem;
   aspect-ratio: 1 / 1;
   overflow: hidden;
   border-radius: 10rem;
}

.img-frame img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
}

.mobile-menu-toggle {
   display: none;
   background: none;
   border: none;
   padding: 0px;
   font-size: 2.4rem;
   color: var(--primary-text);
   cursor: pointer;
}

.details-related-content h3 {
   font-size: 2rem;
   margin-top: -1rem;
}

.details-top-card {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 2rem;
}

.details-top-flex {
   display: grid;
   grid-template-columns: 1fr 3fr;
   gap: 2rem;
   width: 100%;
   align-items: center;
}

.details-profile-img {
   width: 100%;
   aspect-ratio: 1 / 1;
   overflow: hidden;
   border-radius: 50%;
}

.details-profile-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.details-top-content {
   flex: 1 1 0%;
}

.details-subtitle {
   font-size: 1.2rem;
   letter-spacing: 2px;
   color: var(--sub-text);
   margin-bottom: 0.5rem;
}

.details-video-card {
   align-items: stretch;
}

.details-video-frame {
   position: relative;
   cursor: pointer;
   overflow: hidden;
}

.details-play-btn {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   background: rgba(0, 0, 0, 0.6);
   border-radius: 50%;
   padding: 1.5rem;
   display: flex;
   align-items: center;
   justify-content: center;
}

.details-play-btn i {
   font-size: 3rem;
   color: rgb(255, 255, 255);
}

.details-related-title {
   text-align: center;
   margin-bottom: 2.5rem;
   font-size: 3rem;
}

.details-related-grid {
   gap: 2rem;
}

.details-related-card {
   padding: 0px;
}

.details-related-img {
   width: 100%;
   height: 180px;
   object-fit: cover;
   border-radius: 0.5rem 0.5rem 0px 0px;
}

.details-related-content {
   padding: 1.5rem;
}

.details-modal {
   display: none;
   position: fixed;
   z-index: 2000;
   left: 0px;
   top: 0px;
   width: 100vw;
   height: 100vh;
   background: rgba(0, 0, 0, 0.7);
   align-items: center;
   justify-content: center;
}

.details-modal-content {
   background: #fff;
   border-radius: 1rem;
   max-width: 90vw;
   max-height: 80vh;
   width: 80rem;
   position: relative;
   display: flex;
   flex-direction: column;
   box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.details-modal-close {
   background: #FFD800;
   color: #fff;
   border: none;
   font-size: 2rem;
   font-weight: bold;
   cursor: pointer;
   z-index: 10;
   border-radius: 50%;
   width: 5rem;
   height: 5rem;
   overflow: hidden;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
   transition: background 0.2s;
   margin: 0;
   padding: 0;
   position: absolute;
   top: -6rem;
   right: 0;
   left: 50%;
   transform: translateX(-50%);
}

.details-modal-close i {
   color: white;
}

.details-modal-close:hover {
   background: #d32f2f;
}

.details-modal-video-wrapper {
   width: 100%;
   aspect-ratio: 16/9;
   position: absolute;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
}

.details-modal-video-wrapper iframe {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border-radius: 0;
   border: none;
   background: #000;
}

.main-menu {
   display: none;
}

header {
   padding-top: 5rem;
}

.parent-links {
   background: var(--primary-text);
   width: 100%;
   position: fixed;
   top: 0;
   left: 0;
   height: 5rem;
}

.parent-links .container {
   padding-left: 13rem;
}

.parent-links p {
   padding: 0 2rem;
   height: 5rem;
   display: flex;
   align-items: center;
}

.parent-links .container {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 2rem;
}

.parent-links :is(p, a, i) {
   color: white;
}

.parent-links i {
   font-size: 2rem;
}

.parent-links a {
   display: flex;
   align-items: center;
   gap: 0.5rem;
}

.parent-links .login {
   display: flex;
   align-items: center;
   gap: 2rem;
}

.maw-target.active {
   background: #272727;
   font-weight: 700;
}

header .links a:hover,
.links p:hover {
   background: #efefef;
   font-weight: 500;
}

.maw-target:hover {
   background: black !important;
   font-weight: 700 !important;
}

@media (max-width: 991px) {
   .mobile-menu-toggle {
      display: block;
   }

   header .links {
      position: fixed;
      top: 10rem;
      left: -100%;
      width: 100%;
      height: calc(100vh - 10rem);
      background: white;
      flex-direction: column;
      align-items: flex-start;
      transition: 0.3s;
      overflow-y: auto;
      align-items: flex-start !important;
   }

   header .links.active {
      left: 0;
   }

   header .links a,
   .links p {
      width: 100%;
      justify-content: flex-start;
      padding: 1.5rem 0;
      border-bottom: 1px solid #00000029;
      padding: 0 1.5rem;
   }

   header .parent {
      font-size: 2rem;
   }

   header .wraper {
      width: 100%;
      justify-content: space-between;
   }

   header .mega-menu {
      position: static;
      box-shadow: none;
      border: none;
      padding: 0;
      margin-top: 1rem;
      width: calc(100% - 3rem);
      margin-left: 2rem;
   }

   .mega-menu .container {
      padding: 0;
   }

   .mega-menu .grid-4 {
      grid-template-columns: 1fr;
      gap: 2rem;
   }

   .mega-menu .heading {
      padding: 1.5rem 0;
      margin-bottom: 2rem;
   }

   .mega-menu .heading a {
      font-size: 2rem;
   }


   .layout {
      grid-template-columns: 1fr;
      gap: 3rem;
   }

   .layout .left {
      width: 100%;
      position: sticky;
      top: 6rem;
      background: white;
      z-index: 99;
      border: none;
      border-bottom: var(--border-lite);
      overflow-x: auto;
   }

   .layout .left .tab-items {
      display: flex;
      overflow-x: auto;
      gap: 1rem;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      -ms-overflow-style: none;
   }

   .layout .left .tab-items::-webkit-scrollbar {
      display: none;
   }

   .tab-item {
      flex: 0 0 auto;
      white-space: nowrap;
      border-bottom: none;
   }

   .tab-item.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--primary);
   }

   .main-content {
      padding-top: 1rem;
   }

   .content-card {
      grid-template-columns: 1fr;
   }

   .content-card .frame {
      order: -1;
   }

   .content-card .text-content {
      padding: 2rem;
   }

   .main-content .content-card:nth-child(even) {
      grid-template-columns: 1fr;
   }

   .grid-4 {
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
   }

   .grid-3 {
      grid-template-columns: 1fr;
      gap: 3rem;
   }

   .grid-a {
      grid-template-columns: 1fr;
      gap: 3rem;
   }

   .footer-end .logo {
      position: static;
      margin: 3rem auto 0;
   }

   .news {
      flex-direction: column;
      align-items: stretch;
      width: 100%;
   }

   .news input,
   .news button {
      width: 100%;
   }

   .ending .btns img {
      height: 4rem;
   }

   .details-top-flex {
      flex-direction: column;
      align-items: flex-start;
      max-width: 100%;
   }

   .details-modal-content {
      width: 98vw;
      max-width: 98vw;
   }

   .details-top-flex {
      flex-direction: column;
      align-items: flex-start;
      max-width: 100%;
      grid-template-columns: 1fr;
   }

   .details-modal-content {
      width: 98vw;
      max-width: 98vw;
   }

   .details-modal-close i {
      color: white;
   }

   .nav-item {
      width: 100%;
   }

   .title :is(h1, h2) {
      font-size: 3rem;
   }

   .footer-end .links {
      flex-wrap: nowrap;
      flex-direction: column;
   }

   .footer-end p {
      width: calc(100% - 10rem);
      font-size: 1.3rem;
   }

   .footer-end {
      position: relative;
   }

   .footer-end .logo {
      position: absolute;
      bottom: 0;
      width: 8rem;
      height: 10rem;
      right: 0;
      top: unset;
   }

   header .container .links {
      gap: 0;
   }

   .mega-menu a {
      border: unset !important;
   }

   .mega-menu .heading a {
      font-size: 2.5rem;
   }

   .nav-item {
      position: relative;
   }

   .nav-item::before {
      font-family: 'Phosphor';
      content: "\E136";
      position: absolute;
      right: 1rem;
      top: 2rem;
      color: var(--primary-text);
      font-size: 2rem;
   }

   header .logo {
      height: 10rem;
      top: -5rem;
      margin-bottom: -5rem;
   }

   .parent-links p {
      color: var(--primary-text) !important;
   }

   header.active .links {
      left: 0;
   }

   .main-menu {
      display: block;
      margin-top: 3rem;
      margin-left: 2rem;
   }

   .parent-links .container {
      justify-content: flex-end !important;
   }

   .maw-target.active {
      background: white;
   }

   .maw-target {
      position: relative;
   }

   .maw-target::before {
      font-family: 'Phosphor';
      content: "\E13A";
      position: absolute;
      right: 1rem;
      top: 1rem;
      color: var(--primary-text);
      font-size: 2rem;

   }
}

@media (max-width: 661px) {
   .grid-4 {
      grid-template-columns: 1fr;
   }

   .f-links a {
      width: fit-content;
   }

   .details-modal-content {
      width: 100vw;
      max-width: 100vw;
      border-radius: 0;
   }

   .f-links h3 {
      font-size: 1.6rem;
      margin-bottom: 1rem;
   }

   .f-links {
      height: 2rem;
      overflow: hidden;
      position: relative;
      width: 100%;
   }

   .f-links::before {
      font-family: 'Phosphor';
      content: "\E136";
      position: absolute;
      right: 0;
      top: 0;
      color: white;
      font-size: 1.5rem;
   }

   .f-links.active {
      height: 100%;
   }
}

/* Button styling */
.cta-button {
   display: inline-block;
   background-color: #FFD800;
   color: black;
   font-weight: 900;
   padding: 12px 24px;
   border: none;
   border-radius: 4px;
   text-decoration: none;
   transition: transform 0.3s ease;
   cursor: pointer;
}

/* Wrapper defaults to left-align on desktop */
.cta-wrapper {
   text-align: left;
   margin: 20px 0;
}

/* Desktop hover effect */
.cta-button:hover {
   transform: scale(1.1);
}

/* Mobile: center align and bigger hover */
@media (max-width: 767px) {
   .cta-wrapper {
      text-align: center;
   }

   .cta-button:hover {
      transform: scale(1.3);
   }
}

/* Toggle content */
#saba-full-content.saba-collapsed {
   max-height: 120px;
   overflow: hidden;
   position: relative;
}

/* Optional: fade-out effect */
#saba-full-content.saba-collapsed::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   height: 50px;
   width: 100%;
   background: linear-gradient(to top, white, transparent);
}

/* Toggle button */
.toggle-btn {
   background-color: transparent;
   border: 1px solid #ddd;
   padding: 6px 12px;
   font-size: 14px;
   margin-top: 10px;
   border-radius: 25px;
   cursor: pointer;
}

.custom-tweet-card {
   display: flex;
   flex-direction: column;
   border: 1px solid #ccc;
   border-radius: 8px;
   overflow: hidden;
   background: white;
}

.custom-tweet-card img {
   width: 100%;
   height: auto;
   display: block;
}

.custom-tweet-card .tweet-text {
   padding: 1rem;
   font-size: 1.5rem;
   color: #333;
}

.custom-tweet-card .cta {
   display: block;
   margin-top: 1rem;
   color: #1DA1F2;
   font-weight: bold;
}

.text-content ul,
.text-content li {
   font-size: 1.6rem;
   /* Match paragraph size */
   font-family: "Overpass", sans-serif;
   /* Match the rest of the text */
   color: var(--sub-text);
   /* Same as your paragraphs */
   line-height: 1.5;
   margin-bottom: 0.5rem;
}

.text-content ul {
   padding-left: 1.8rem;
   /* Nice indent for bullets */
}

.text-content li strong {
   color: var(--primary-text);
   /* Keep bold parts more prominent */
}

.final-thoughts-heading {
   font-size: 1.8rem;
   /* Match your other section titles */
   font-family: "Overpass", sans-serif;
   /* Same as rest of text */
   font-weight: 700;
   margin-top: 2rem;
   /* Space from the paragraph above */
   margin-bottom: 1rem;
   /* Space to next paragraph */
   color: var(--primary-text);
   /* Keep consistent color */
}

.vimeo-lite {
   position: relative;
   width: 100%;
   aspect-ratio: 16/9;
   /* keeps it responsive */
   background: #000 center/cover no-repeat;
   border-radius: 8px;
   overflow: hidden;
   cursor: pointer;
}

.vimeo-lite::before {
   /* show poster image */
   content: "";
   position: absolute;
   inset: 0;
   background: inherit;
   /* uses background from style set in JS */
   filter: brightness(0.9);
}

.vimeo-play {
   position: absolute;
   inset: 0;
   margin: auto;
   width: 72px;
   height: 72px;
   border-radius: 50%;
   background: rgba(0, 0, 0, .55);
   border: 0;
}

.vimeo-play::after {
   content: "";
   display: block;
   width: 0;
   height: 0;
   margin: 24px auto auto 28px;
   border-left: 22px solid #fff;
   border-top: 14px solid transparent;
   border-bottom: 14px solid transparent;
}

.vimeo-lite.loading::after {
   /* optional tiny spinner while iframe mounts */
   content: "Loading…";
   position: absolute;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
   color: #fff;
   font: 600 14px/1 system-ui, sans-serif;
}

.video-modal {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.85);
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 9999;
}

.video-container {
   position: relative;
   width: 90%;
   max-width: 900px;
   aspect-ratio: 16 / 9;
   background: black;
}

.video-container iframe {
   width: 100%;
   height: 100%;
   border: none;
}

.close-video {
   position: absolute;
   top: -40px;
   right: -10px;
   font-size: 28px;
   color: white;
   cursor: pointer;
   background: transparent;
   border: none;
}

/* Sponsorship section (kept inline for clarity—move to your CSS if you prefer) */
.sponsorship {
   background: #f7f7f7;
   padding: 24px 16px;
}

.s-grid {
   display: grid;
   grid-template-columns: 300px 1fr;
   gap: 24px;
   max-width: 1200px;
   margin: 0 auto;
}

.s-nav {
   position: sticky;
   top: 16px;
   align-self: start;
}

.s-content {
   display: grid;
   gap: 24px;
}

.s-cat {
   background: #fff;
   border: 1px solid #e5e5e5;
   border-radius: 8px;
   overflow: hidden;
   margin-bottom: 8px;
}

.s-cat__title {
   padding: 14px 16px;
   font-weight: 700;
   cursor: pointer;
   outline: none;
   font-size: 1.75em;
}

.s-cat[open] .s-cat__title {
   border-bottom: 1px solid #eee;
}

.s-list {
   display: flex;
   flex-direction: column;
}

.s-link {
   padding: 12px 16px;
   color: #333;
   text-decoration: none;
   border-bottom: 1px solid #efefef;
}

.s-link:last-child {
   border-bottom: 0;
}

.s-link:hover {
   background: #fafafa;
}

.s-link.is-active {
   color: #1e1e1e;
   border-left: 3px solid #ffd800;
   padding-left: 13px;
   background: #fffef5;
}

.s-card {
   background: #fff;
   border: 1px solid #e5e5e5;
   border-radius: 8px;
   overflow: hidden;
   display: grid;
   grid-template-columns: 1fr 1fr;
}

.s-card--intro {
   grid-template-columns: 1fr 1fr;
}

.s-card--reverse {
   grid-template-columns: 1fr 1fr;
}

.s-card__img {
   min-height: 220px;
}

.s-card__img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}

.s-card__body {
   padding: 20px 22px;
   display: flex;
   flex-direction: column;
   gap: 10px;
}

.s-card__body h3,
.s-card__body h4 {
   margin: 0;
   font-size: 1.6em;
}

.s-underline {
   width: 48px;
   height: 3px;
   background: #ffd800;
   display: inline-block;
   border-radius: 2px;
}

.s-more {
   color: #333;
   font-weight: 900;
   text-decoration: underline;
   width: max-content;
}


@media (max-width: 960px) {
   .s-grid {
      grid-template-columns: 1fr;
   }

   .s-nav {
      position: static;
   }
}

@media (max-width: 640px) {

   .s-card,
   .s-card--intro,
   .s-card--reverse {
      grid-template-columns: 1fr;
      /* stack */
   }

   .s-card__img {
      min-height: 180px;
   }
}

/* Make anchor scrolling comfortable when a fixed/sticky header exists */
.s-content>article[id] {
   scroll-margin-top: 80px;
}