@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,400;0,500;0,600;0,700;0,800;1,700&family=Inter:wght@400;500&display=swap");

/* ---------------------------------------------------------------------
   COLOR THEME
   Only ONE color is tokenised, per request: #E64A19 (the brand accent
   used for headings, eyebrows, category labels and rank numerals).
   Every exact occurrence of #E64A19 in the design uses this variable.
   All other colors stay literal — they are not part of this theme.
   --------------------------------------------------------------------- */
:root {
  --accent: #e64a19;
  --page-max: 1600px;
  --containerSize: 1153px;
}

/* ---------------------------------------------------------------------
   RESET / BASE
   --------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Rubik", Arial, sans-serif;
  color: #262626;
  background: #fff !important;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* Generic centered max-width wrapper — used inside several widgets
   below to align their content to the page's 1270px reading column. */
.customContainer {
  max-width: var(--containerSize);
  width: 100%;
  margin: 0 auto;
}



/* =====================================================================
   SECTION START: Shared layout 
   ===================================================================== */
.mainWrapper {
  padding: 0 20px;
  margin-top: 23px;
  position: relative;
}

.mainWrapper .customContainer {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 44px 0 rgba(0, 0, 0, 0.05);
  padding: 50px 20px 40px;
  margin-top: 23px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #111;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.section-heading__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 36px;
  color: var(--accent);
}

.section-heading__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #262626;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.section-heading__more:hover {
  color: var(--accent);
}

.section-heading__more svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

/* View All: arrow only nudges forward on hover, no idle animation */
.section-heading__more:hover svg {
  transform: translateX(3px);
}

.ad-slot {
    display: flex;
    justify-content: center;
    padding: 20px 43px;
    position: relative;
    max-width: 1055px;
    width: 100%;
    height: 130px;
    background: #EAEAEA;
    margin: 0 auto;
}

.ad-slot__frame {
    width: 100%;
    max-width: 970px;
    border: 1px solid #707070;
    background: #ECF0F3;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #666;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
}

@media (max-width:767px){
  .mainWrapper .customContainer {
      padding: 20px 10px 20px;
      box-shadow:none;
  }
}
@media (max-width:575px){
  .section-heading{
    padding-bottom: 6px;
    margin-bottom: 12px;
  }
}

/* common-ads-start-here */

.common_ads_container {
    background: #f9f9fb;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    justify-content: center;
    min-width: 100%;
    min-height: 110px;
    margin: 0 auto;
    display: table;
    padding: 5px;
}
.common_ads_container > *{
  text-align: center; margin-inline: auto;
}
.customContainer .common_ads_container{
  background: #EAEAEA;
}
@media (min-width: 1025px) {
     .common_ads_container {
        min-width: 960px;
    }
}

@media (max-width: 1024px) {
     .common_ads_container {
        margin: 16px auto 20px;
    }
}
@media (max-width: 725px) {
     .common_ads_container {
        min-height: 250px;
        margin: 15px auto;
        padding-left: 0px;
        padding-right: 0px;
    }
}
/* common-ads-start-End */


/* Landscape */
/* @media (orientation: landscape) and (max-height: 440px) {
  .mainWrapper .customContainer {
    margin-top: 280px;
  }
    .medal-card {
      order: 1;
      max-width: none;
      width: calc(100% + 20px);
      margin-left: -10px;
      margin-top: -287px;
  }
} */

/* Mobile portrait */
@media (max-width: 575px) {
  .mainWrapper .customContainer {
      margin-top: 280px;
  }
  .section-heading__title {
    font-size: 16px;
    text-transform: uppercase;
    line-height: normal;
  }
  .ad-slot__frame {
    max-width: 300px;
    aspect-ratio: 300 / 250;
    font-size: 16px;
  }
  .mainWrapper{padding: 0 15px;}
  .section-heading__more{
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 166.667% */
  }
}
/* SECTION END: Shared layout */

/* =====================================================================
   SECTION START: Global Nav (utility bar)
   ===================================================================== */
.global-nav {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 11px;
}

.global-nav__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.global-nav__links {
  display: flex;
  align-items: center;
  gap: 18px;
  overflow-x: auto;
  scrollbar-width: none;
}
.global-nav__links a{
  color: #938E8E;
  font-family: Arial;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.global-nav__links::-webkit-scrollbar {
  display: none;
}

.global-nav__links a {
  white-space: nowrap;
}

.global-nav__links .is-current {
  color: #000;
}

.global-nav__lang {
  font-family: "Noto Sans Bengali", Arial, sans-serif;
}

.global-nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.global-nav__more {
  width: 12px;
  color: #262626;
}

.global-nav__signin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e50444;
  color: #fff;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 4px;
}

.global-nav__signin svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 560px) {
  .global-nav__inner {
    padding: 8px 16px;
  }
}
/* SECTION END: Global Nav */

/* =====================================================================
   SECTION START: Navigation (header — logo + primary menu)
   ===================================================================== */
.site-header {
  position: relative;
}
.site-header.is-pinned {
  padding-top: calc(30px + var(--header-inner-h, 107px));
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  aspect-ratio: 1600 / 1067;
  background-image: url(../img/bg-banner.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  z-index: 0;
}

.site-header__inner {
  position: relative;
  z-index: 1;
  padding-top: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 37px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.80) 43.48%, rgba(0, 0, 0, 0.00) 100%);
}

/* Pinned state: detaches from the banner and becomes a solid fixed
   bar sitting right under the (always-visible) global-nav utility bar. */
.site-header__inner.is-pinned {
  position: fixed;
  top: var(--global-nav-h, 33px);
  left: 0;
  right: 0;
  z-index: 50;
  background: #14141a;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.headerContainer {
  margin: 0 auto;
  max-width: 1600px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 20px;
  flex-wrap: wrap;
}

.site-header__toggle {
  display: none;
}

.site-header__overlay {
  display: none;
}

.site-header__menu-close {
  display: none;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-header__brand img {
  height: 75px;
  width: auto;
}

.site-header__brand .ag-logo {
  height: 65px;
}

.site-header__menu {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.site-header__menu a {
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
}

.site-header__menu a:hover {
  color: var(--accent);
}

.site-header__menu a.is-active {
  background: #e50444;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 8px;
}

.site-header__menu a.is-active:hover {
  color: #fff;
}



/* ---------- Hamburger + slide-in drawer (<=991px) ---------- */
@media (max-width: 991px) {
  .site-header__toggle {
    display: flex;
    align-items: center;
    color: #fff;
    order: -1;
    position: relative;
    z-index: 2;
  }
  .mainWrapper{margin-top: 0;}
  .site-header__inner .headerContainer {
    justify-content: flex-start;
    padding: 0 10px;
  }

  .site-header__inner {
    padding: 15px 10px;
      margin-top: 0;
      margin-bottom: 2px;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
  }

  .hamburger__bar {
    display: block;
    height: 2.5px;
    width: 100%;
    border-radius: 2px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.25s ease, width 0.25s ease;
  }

  /* Hover: bars stay equal width, just nudge apart slightly for a light "alive" feel */
  .site-header__toggle:hover .hamburger__bar:nth-child(1) {
    transform: translateX(2px);
  }
  .site-header__toggle:hover .hamburger__bar:nth-child(3) {
    transform: translateX(-2px);
  }

  /* Open state: morph into an X (driven by aria-expanded, set in app.js) */
  .site-header__toggle[aria-expanded="true"] .hamburger__bar:nth-child(1) {
    width: 100%;
    transform: translateY(6.5px) rotate(45deg);
  }
  .site-header__toggle[aria-expanded="true"] .hamburger__bar:nth-child(2) {
    opacity: 0;
  }
  .site-header__toggle[aria-expanded="true"] .hamburger__bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .site-header__menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1024;
    width: min(280px, 80vw);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    background: #14141a;
    padding: 70px 24px 24px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .site-header__menu.is-open {
    transform: translateX(0);
  }

  .site-header__menu a {
    width: 100%;
    padding: 12px 0;
  }

  .site-header__menu a.is-active {
    width: auto;
  }

  .site-header__menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 32px;
    height: 32px;
    color: #fff;
  }

  .site-header__menu-close svg {
    width: 18px;
    height: 18px;
  }

  .site-header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .site-header__overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 575px) {
  .site-header__brand img {
    height: 52px;
  }

  .site-header__brand .ag-logo {
    height: 46px;
  }
    .site-header::before {
      content: "";
      aspect-ratio: 300 / 878;
      background-image: url(../img/hero-banner-mobile.png);
      height: 878px;
  }
}
/* ===============SECTION END: Navigation================ */

/* ============
   SECTION START: Hero (featured story + India medal widget + live score)==== */
.storyRow {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* Pulse bullet wrapper */
.pulse-wrap {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.9;
  animation: pulse-grow 2.4s cubic-bezier(0.2, 0.6, 0.4, 1) infinite;
}

.pulse-ring.ring2 {
  animation-delay: 0.8s;
}

.pulse-ring.ring3 {
  animation-delay: 1.6s;
}

.pulse-dot {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 2px #ffffff;
  z-index: 0;
}

@keyframes pulse-grow {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
  }
  70% {
    opacity: 0.25;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.9);
    opacity: 0;
  }
}

.headline-text {
  max-width: 747px;
  color: #000;
  font-family: Rubik;
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px; /* 125.714% */
}

.hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.hero__main {
  background: #fff;
  border-radius: 8px;
  flex: 1 1 0%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__eyebrow {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}

.hero__title {
  font-size: 35px;
  font-weight: 600;
  line-height: 44px;
  color: #000;
  text-align: right;
}

.hero__image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__teasers {
  border: 1px solid #dfdfdf;
  border-radius: 12px;
  display: flex;
  gap: 20px;
  padding: 15px;
}


.hero__teaser {
  flex: 1 1 0%;
  min-width: 0;
  gap: 9px;
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
  color: #000;
  padding-right: 20px;
  position: relative;
}


.hero__teaser::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    #000000 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero__teaser:last-child::after{
  content: "";
  background-color: transparent;
  height: 0;
  width: 0;
}

.hero__teaser:last-child {
  border-right: none;
  padding-right: 0;
}

.hero__teaser svg,
.hero__teaser .live-dot {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
  position: relative;
  top: 4px;
  left: 4px;
  line-height: 24px;
}

.hero__rail {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__rail .widgetgap.withbg{margin-bottom: 0;}

.hero__rail .ads__container {
      min-height: 250px;
  }

/* ---------- India medal tally card ---------- */
.medal-card {
  position: relative;
  width: 100%;
  border: 1px solid #dedede;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  max-width: 300px;
}

.medal-card__bg {
  position: absolute;
  left: 0;
  top: -19.49%;
  width: 100%;
  height: 127.12%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

.medal-card__content {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 20px;
}

.medal-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.medal-card__country {
  display: flex;
  align-items: center;
  gap: 5px;
}

.medal-card__flag {
  font-size: 22px;
  line-height: 25px;
}

.medal-card__name {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24.6px;
  color: #0b0b0b;
}

.medal-card__rank {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 30px;
  color: #c43016;
  text-align: right;
}

.medal-card__rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding-bottom: 8px;
}

.medal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 4px 10px;
  background: #fff;
  border: 0.5px solid #cecece;
  border-radius: 4px;
}

.medal-row__icon {
  width: 18px;
  height: 33px;
  flex-shrink: 0;
  display: block;
}

.medal-row__label {
  flex: 1;
  text-align: center;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  color: #000;
  text-transform: uppercase;
}

.medal-row__value {
  width: 52.5px;
  text-align: center;
  font-family: "Rubik", sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 24px;
}

.medal-row--gold .medal-row__value {
  color: #ebb024;
}
.medal-row--silver .medal-row__value {
  color: #cad5e2;
}
.medal-row--bronze .medal-row__value {
  color: #bb4d00;
}

.medal-card__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 8px;
  border-top: 0.938px solid #cecece;
}

.medal-card__total-label {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 18.75px;
  color: #000;
}

.medal-card__total-value {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 32px;
  color: #000;
  text-align: right;
}

/* ---------- Live match widget ---------- */
.live-match {
  max-width: 300px;
  width: 100%;
  background: #f8f8f8;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
}

.live-match__header {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 15px;
  background: #e50444;
  border-radius: 8px 8px 0 0;
}

.live-match__title {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
}

.live-match__result {
  flex: 1;
  text-align: right;
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
}

.live-match__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.live-match__team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.live-match__team {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-match__flag {
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-match__flag img {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  display: block;
}

.live-match__team-name {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  color: #000;
  text-transform: uppercase;
}

.live-match__swap-icon {
  width: 14px;
  height: 14px;
  display: block;
}

.live-match__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.live-match__score-runs {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  color: #000;
  text-transform: uppercase;
}

.live-match__score-overs {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #262626;
}

.live-match__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
  color: #4364f7;
}

@media (max-width:1199px){
.hero__rail .ads__container #div-gpt-ad-1663141257622-0{
    text-align: center;
    margin-inline: auto;
  }
}

@media (max-width: 991px) {
  .hero {
    flex-wrap: wrap;
  }

  .hero__rail {
    width: 100%;
    flex-wrap: wrap;
    flex-direction:row;
  }
   .sports__events__right__htmlwidget,
  .hero__rail .ads__container,
  .html_widget_container {
    flex: 0 0 calc((100% - 40px) / 2);
  }
}



@media (max-width: 767px) {
  .headline-text {
    font-size: 35px;
    line-height: 44px;
  }
   /* .sports__events__right__htmlwidget,
  .hero__rail .ads__container,
  .html_widget_container {
    flex: 0 0 calc((100% - 40px) / 2);
  } */
  .hero__rail .widgetgap.withbg {
    width: 50%;
  }
  .hero__rail {
    flex-wrap: wrap;
  }
  .hero__teasers {
    flex-direction: column;
  }
  .cards-col{max-width: 48%;flex: 0 0 48%;}

  .hero__teaser {
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
    padding-right: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid transparent;
  border-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 50%,
    rgba(0, 0, 0, 0) 100%
  ) 1;
  }
.hero__teaser::after {
    content: "";
   display: none;
}
  .headline-text,
  .hero__title {
    font-size: 20px;
    line-height: 27px;
  }

  .hero__teaser:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}


@media (max-width: 575px) {
  .hero__rail .widgetgap.withbg{
     width: 100%;
  }
   .sports__events__right__htmlwidget,
  .hero__rail .ads__container,
  .html_widget_container {
    flex: 0 0 calc((100% - 40px) / 1);
    width: 100%;
  }
  .hero__rail .ads__container{width: 100%;margin: 0 auto;}
  .pulse-wrap {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
  }
   .hero__title {
    font-size: 26px;
    line-height: 32px;
    text-align: left;
  }

  .pulse-ring {
    width: 12px;
    height: 12px;
  }

  .pulse-dot {
    width: 12px;
    height: 12px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
  }

  .hero__main,
  .hero__rail {
    display: contents;
  }

  .medal-card {
    order: 1;
    max-width: none !important;
    width: calc(100% + 20px) !important;
    margin-left: -10px;
    margin-top: -287px;
  }

  .hero__rail .sports__events__right__htmlwidget {
    order: 1;
    max-width: none !important;
    width: calc(100% + 20px) !important;
    margin-left: -10px;
    margin-top: -287px;
  }

  .hero__rail .sports__events__right__htmlwidget .medal-card {
    max-width: none !important;
    width: 100% !important;
    margin-left: 0;
    margin-top: 0;
  }

  .hero__eyebrow {
    order: 2;
    padding-top: 18px;
  }

  .storyRow {
    order: 3;
  }

  .hero__image {
    order: 4;
  }

  .hero__teasers {
    order: 5;
    flex-direction: column;
    padding: 15px 15px 15px 15px;

  }

  .rail-ad {
    order: 6;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero__rail .ads__container {
    order: 6;
  }

  .live-match {
    order: 7;
    max-width: none;
    margin-top: 0;
  }

  .hero__rail .html_widget_container {
    order: 7;
  }

  .hero__teaser {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
    padding-right: 0;
    padding-bottom: 15px;
    font-size: 15px;
  }

  .hero__teaser:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
/* ====================SECTION END: Hero========================= */

/* =============Medal-standings-Start-here======================= */
.customContainer .custom__htmlwidget{margin-bottom: 40px;}
@media (max-width:575px){
  .customContainer .custom__htmlwidget{margin-bottom:30px;}
}
/* =============Medal-standings-Start-End======================= */


/* =====================================================================
   SECTION START: Asian Games 2026 News
   Big story on the left, a list of 4 small stories on the right.
   ===================================================================== */
.ag-news {
  margin-bottom: 40px;
}

.ag-news__grid {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.ag-news__feature {
  width: 651px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ag-news__feature-img {
  width: 100%;
  /* aspect-ratio: 651 / 360; */
  border-radius: 4px;
  overflow: hidden;
}

.ag-news__feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  aspect-ratio: 16/9;
}

/* Asian Games 2026 News: zoom the feature image only on hover */
.ag-news__feature-img:hover img {
  transform: scale(1.08);
}

.ag-news__feature-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  color: #262626;
}

.ag-news__feature-dek {
  font-size: 18px;
  line-height: 26px;
  color: #696868;
}

.ag-news__list {
  flex: 1 1 0%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ag-news-item {
  background: #f9f9fb;
  border-radius: 4px;
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ag-news-item__body {
  flex: 1 1 0%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ag-news-item__tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
}

.ag-news-item__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #000;
}

.ag-news-item__title a,
.ag-news-item__thumb a,
.ag-news__feature-title a,
.ag-news__feature-img a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.ag-news-item__thumb {
  width: 80px;
  height: 80px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}

.ag-news-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Asian Games 2026 News: zoom the thumbnail image only on hover */
.ag-news-item__thumb:hover img {
  transform: scale(1.08);
}



@media (max-width: 1100px) {
  .ag-news__grid {
    flex-wrap: wrap;
  }

  .ag-news__feature {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .ag-news-item {
    flex-direction: row;
  }
}

@media (max-width:767px){
  .ag-news__feature-title{
    color: #262626;
    font-size: 18px;
    line-height: 24px; /* 133.333% */
  }
}

@media (max-width: 575px) {
  .ag-news__list{
    gap: 16px;
  }
  .ag-news {
    padding: 0 0;
    margin-top: 30px;
    font-size: 15px;
  }
  .ag-news__feature-dek{
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
  }
  .ag-news__grid{
    gap: 24px;
  }
  .ag-news{margin-bottom: 30px;}
  .ag-news__feature {
        gap: unset;
  }
  .ag-news__feature .ag-news__feature-img {
      margin-bottom: 16px;
  }
   .ag-news__feature .ag-news__feature-title {
      margin-bottom: 8px;
  }
  .ag-news-item__tag {
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: 11px; 
  }
  .ag-news-item__title{
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
  }
}

@media (max-width:348px){
  .ag-news-item__thumb {
    width: 56px;
    height: 56px;
  }
  .ag-news-item__title {
    font-size: 14px;
}
}
/* ==================SECTION END: Asian Games 2026 News================ */

/* =====================================================================
   SECTION START: Daily Wrap
   ===================================================================== */
.daily-wrap {
  padding: 20px;
  background: #f9f9fb;
  border-radius: 4px;
}

.daily-wrap__grid {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.daily-wrap__feature {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.daily-wrap__feature-img {
  width: 100%;
  aspect-ratio: 651 / 360;
  border-radius: 4px;
  overflow: hidden;
}

.daily-wrap__feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Daily Wrap: zoom the image only on hover */
.daily-wrap__feature-img:hover img {
  transform: scale(1.08);
}

.daily-wrap__feature-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  color: #262626;
}

.daily-wrap__feature-dek {
  font-size: 18px;
  line-height: 26px;
  color: #4A4A50;
}

@media (max-width: 991px) {
  .daily-wrap__grid {
    flex-wrap: wrap;
  }
}

@media (max-width:767px){
  .daily-wrap__feature-title{
    font-weight: 600;
    line-height: 24px; /* 133.333% */
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .daily-wrap {
    padding: 16px;
  }
  .daily-wrap__feature{gap:unset;}
  .daily-wrap__feature-img{margin-bottom: 16px;}
  .daily-wrap__feature-title{margin-bottom: 8px;}
  .daily-wrap__feature-dek{
    color: #4A4A50;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
      }
}
/* ==================SECTION END: Daily Wrap =======================*/

/* =====================================================================
   SECTION START: Daily Schedule
   ===================================================================== */
.daily-schedule {
  padding: 20px;
  background: #f9f9fb;
  border-radius: 4px;
}

.daily-schedule__grid {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.daily-schedule__feature {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.daily-schedule__feature-img {
  width: 100%;
  aspect-ratio: 651 / 360;
  border-radius: 4px;
  overflow: hidden;
}

.daily-schedule__feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Daily Schedule: zoom the image only on hover */
.daily-schedule__feature-img:hover img {
  transform: scale(1.08);
}

.daily-schedule__feature-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  color: #262626;
}

.daily-schedule__feature-dek {
  font-size: 18px;
  line-height: 26px;
  color: #4A4A50;
}

@media (max-width: 992px) {
  .daily-schedule__grid {
    flex-wrap: wrap;
  }
}

@media (max-width:767px){
  .daily-schedule__feature-title{
    font-size: 18px;
    line-height: 24px; /* 133.333% */
  }
}

@media (max-width: 575px) {
  .daily-schedule {
    margin-top: 6px;
    padding: 16px;
  }
  .daily-schedule__feature{gap: unset;}
  .daily-schedule__feature-img{margin-bottom: 16px;}
  .daily-schedule__feature-title{margin-bottom: 8px;}
}
/* SECTION END: Daily Schedule */

/* =====================================================================
   SECTION START: India's Journey (Photos of the Day)
   ===================================================================== */
.photo-day {
  padding: 53px 80px 25px;
  display: flex;
  justify-content: flex-end;
  margin-bottom:40px;
}

.photo-day__inner {
  display: flex;
  align-items: center;
  gap: 97.5px;
  max-width: var(--containerSize);
  width: 100%;
}

.photo-day__hero {
  width: 340px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 340 / 453;
}

.photo-day__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-day__content {
  flex: 1 1 0%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.photo-day__title {
  max-width: 266px;
  font-size: 56px;
  font-weight: 600;
  line-height: 56px;
  color: var(--accent);
}

.photo-day__text {
  font-size: 15px;
  line-height: 1.6;
  color: #4A4A50;
  max-width: 515px;
}

.photo-day__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #000;
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 500;
  align-self: flex-start;
  color: #262626;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.photo-day__cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.photo-day__cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.photo-day__cta:hover svg path {
  stroke: #fff;
}

.photo-day__cta:hover svg {
  transform: translateX(4px);
}

@media (max-width: 1200px) {
  .photo-day__title {
    font-size: 44px;
    line-height: 46px;
  }
}

@media (max-width:991px){
  .photo-day {
    padding: 30px 0;
  }
  .photo-day__inner{gap: 50px;}
}

@media (max-width: 767px) {
  /* Reorder into: title -> image -> text -> button. .photo-day__content */
  .photo-day__inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .photo-day__content {
    display: contents;
  }

  .photo-day__title {
    order: 1;
    position: relative;
    font-size: 24px;
    line-height: 28px;
    max-width: 100%;
    text-transform: uppercase;
    padding-bottom: 12px;
    width: 100%;
  }

  .photo-day__title br {
    display: none;
  }

  .photo-day__title::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 1px;
      background: #262626;
  }

  .photo-day__hero {
    order: 2;
    width: 100%;
    aspect-ratio: 340 / 440;
  }

  .photo-day__text {
    order: 3;
    max-width: 100%;
  }

  .photo-day__cta {
    order: 4;
    margin-top: 16px;
  }
}

@media (max-width: 575px) {
  .photo-day__title {
    font-size: 16px;
    padding-bottom: 6px;
  }
  .photo-day{padding: 0;}
  .photo-day {
    margin-bottom: 30px;
}
}
/* SECTION END: India's Journey */



/* =====================================================================
   SECTION START: India's Asian Games Journey (year timeline)
   ===================================================================== */
.asianGame-container {
  background: #f9f9fb;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.th-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 8px;
  border-bottom: 1px solid #111;
}

.th-section-heading h2 {
  margin: 0;
  color: var(--accent);
  font-size: 32px;
  font-weight: 600;
  line-height: 36px;
  white-space: nowrap;
}

.th-view-all {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  cursor: pointer;
}

.th-view-all span {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #262626;
  white-space: nowrap;
}

.th-view-all svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* Horizontally scrollable row of edition cards, connected by a
   line + dot between each pair of cards */
.th-timeline-scroll {
    overflow-y: hidden;
    /* Firefox */
    scrollbar-width: none;
    /* IE / Edge */
    -ms-overflow-style: none;
    /* iOS smooth scrolling */
    -webkit-overflow-scrolling: touch;
}
.th-timeline-scroll::-webkit-scrollbar {
    display: none;
}
.th-timeline-row {
  display: flex;
  align-items: flex-start;
  width: max-content;
}

.th-connector {
  width: 60px;
  flex-shrink: 0;
  height: 17px;
  margin-top: 106px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.th-connector::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #e5e5e5;
  transform: translateY(-50%);
}

.th-connector-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  z-index: 1;
}

.th-card {
  width: 208px;
  flex-shrink: 0;
  border-radius: 4px;
  padding: 20px;
  position: relative;
}

.th-card.is-current {
  background: #0e1b35;
  border: 1px solid #0e1b35;
}

.th-card.is-past {
  background: #fff;
  border: 1px solid #f5f5f4;
}

.th-card-current-label {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 9px;
  font-weight: 400;
  line-height: 13.5px;
  letter-spacing: 0.9px;
  color: #ebb024;
  text-transform: uppercase;
  white-space: nowrap;
}

.th-card-year {
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  white-space: nowrap;
}
.th-card.is-current .th-card-year {
  color: #ebb024;
}
.th-card.is-past .th-card-year {
  color: #262626;
}

.th-card-city {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  white-space: nowrap;
}
.th-card.is-current .th-card-city {
  color: rgba(255, 255, 255, 0.6);
}
.th-card.is-past .th-card-city {
  color: #79716b;
}

.th-card-rank {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0.25px;
  text-transform: uppercase;
  white-space: nowrap;
}
.th-card.is-current .th-card-rank {
  color: #ebb024;
}
.th-card.is-past .th-card-rank {
  color: #a6a09b;
}

.th-medal-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 50px 50px 50px;
  gap: 8px;
  width: 100%;
}

.th-medal-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.th-medal-count {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  white-space: nowrap;
}
.th-medal-count.gold {
  color: #ebb024;
}
.th-medal-count.silver {
  color: #ababab;
}
.th-medal-count.bronze {
  color: #bb4d00;
}

.th-medal-label {
  font-size: 11px;
  font-weight: 600;
  line-height: 13.5px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}
.th-card.is-current .th-medal-label {
  color: rgba(255, 255, 255, 0.4);
}
.th-card.is-past .th-medal-label {
  color: #000;
}

.th-read-more {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  color: var(--accent);
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  display: block;
}

/* Cards keep their fixed width and just scroll horizontally on
   mobile; heading shrinks so the title doesn't force extra width. */
@media (max-width: 575px) {
  .asianGame-container {
    padding: 15px 20px;
    margin-bottom: 30px;
    margin-left: -25px;
    margin-right: -25px;
    border-radius: 0;
  }
  .th-view-all span {
    font-size: 12px;
  }
  .th-section-heading h2 {
    font-size: 14px;
    line-height: normal;
    text-transform: uppercase;
  }
  .th-card-year {
    font-size: 28px;
    font-weight: 600;
    line-height: 28px; /* 100% */
  }
}
/* SECTION END: India's Asian Games Journey */

/* =====================================================================
   SECTION START: Daily Wrap + Daily Schedule layout (two-column grid)
   Only lays the two panels side by side — each panel's own look lives
   in its own "SECTION START: Daily Wrap" / "Daily Schedule" block above.
   ===================================================================== */
.dual-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .dual-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .dual-panels {
    gap: 30px;
  }
}

@media (max-width:575px){
      .dual-panels {
        margin-top: 30px;
        padding-top: 0;
    }
}
/* SECTION END: Daily Wrap + Daily Schedule */

/* =====================================================================
   SECTION START: Features News (2x2 media grid)
   ===================================================================== */
.features-news {
  margin-bottom: 40px;
}

.features-news__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 30px;
}

.features-news__row {
  display: contents;
}

.features-news__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features-news__item-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
}

.features-news__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Features News: zoom the image only on hover */
.features-news__item-img:hover img {
  transform: scale(1.08);
}

.features-news__item-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #262626;
}

@media (max-width: 992px) {
  .features-news__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .features-news__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width:575px){
  .features-news {
    padding: 0 0;
}
.features-news__item-title{
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; 
  }
}

/*====================== SECTION END: Features News ==================*/

/* =====================================================================
   SECTION START: More Asian Games News (3-column list grid)
   ===================================================================== */
.more-news {
  margin-bottom: 40px;
}

.more-news__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 50px;
  margin-top: 20px;
}

.more-news__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.more-news__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 10px;
  flex-shrink: 0;
}

.more-news__title {
  font-size: 17px;
  font-weight: 600;
  line-height: 28px;
  color: #262626;
}

@media (max-width: 992px) {
  .more-news__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .more-news__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width:575px){
  .more-news__title{font-size: 15px;line-height: 20px;font-weight:500;}
  .more-news__item{padding-bottom: 17px;}
  .more-news__grid{gap: 15px 50px;}
}
/* SECTION END: ==================More Asian Games News=================== */

/* =====================================================================
   SECTION START: World Cup prose block
   No responsive overrides — text reflows naturally at any width.
   ===================================================================== */
.prose-block {
  padding: 20px;
  background: #f9f9fb;
  margin-bottom: 40px;
}

.prose-block__text {
  color: #262626;
  font-family: Rubik;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  max-width: 100%;
  margin-bottom: 20px;
}
@media (max-width:575px){
    .prose-block{
    margin-bottom: 30px;
    margin-left: -25px;
    margin-right: -25px;
  }
  .prose-block__text{
    font-size: 15px;
    line-height: 22px; 
  }
}
/* SECTION END: World Cup prose block */

/* =====================================================================
   SECTION START: FAQs
   No responsive overrides — the accordion rows stack full-width and
   font sizes hold at every breakpoint.
   ===================================================================== */
.faqs {
 margin-bottom:40px;
}
.faqs .section-heading{margin-bottom: 29.5px;}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
}

.faq-item {
  background: #f9f9fb;
  border-radius: 5px;
  margin-bottom: 15.5px;
  padding: 28px 31px;
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  line-height: 22px;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: #514f4f;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-item.is-open .faq-item__question {
  font-weight: 600;
  color: #262626;
}

.faq-item__question .icon-plus {
  width: 23px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
}

.faq-item__question .icon-plus__v {
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Open state: hide the vertical stroke so the "+" reads as "−" */
.faq-item.is-open .faq-item__question .icon-plus__v {
  transform: scaleY(0);
  opacity: 0;
}

/* Smooth expand/collapse — max-height is measured and set in app.js */
.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item__answer {
  padding-top: 14px;
  font-size: 16px;
  line-height: 24px;
  color: #4A4A50;
}

@media (max-width:575px){
  .faqs {
    padding: 0;
  }
  .faq-item__answer {
    font-size: 14px;
  }
  .faq-item {
    margin-bottom: 8px;
    padding: 12px;
}
  .faq-item__question {
    line-height: normal;
    font-size: 14px;
  }
  .faq-item__answer {
    padding-top: 8;
    line-height: 18px;
  }
  .faqs .section-heading{margin-bottom: 12px;}
}
/* SECTION END: FAQs */
