/* common claases */
.list-icon {
  width: 50px;
  height: 50px;
}

.updates-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.updates-list .list-title {
  font-weight: 400;
  font-size: 2.5rem;
  vertical-align: middle;
  text-transform: uppercase;
}

.updates-item {
  height: fit-content;
  gap: 10px;
  font-weight: 400;
  font-style: Regular;
  font-size: 1.375rem;
  text-transform: uppercase;
  border-bottom: 1px solid #D3D3D3;
}

.updates-item:last-child {
  border-bottom: none;
}

/*main hero*/

.main-hero {
  width: 100%;
  height: 100dvh;
  /* background: url('../../images/photos/HOME.png'); */
  display: flex;
  align-items: end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.swiper-pagination-bullet {
  background: #ffffff80; /* semi-white or any color */
  opacity: 1;            /* keep full opacity (default is 0.2) */
}

/* Active dot */
.swiper-pagination-bullet-active {
  background: white !important; /* your theme orange */
  width: 20px;
  border-radius: 4px;
}

.hero-slide {
  position: relative;
  overflow: hidden;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* change opacity/color here */
  z-index: 1;
}

.hero-slide > * {
  position: relative;
  z-index: 2; /* your content stays above overlay */
}

.game-card {
  width: 100%;
  /* max-width: 280px; */
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border-radius: 15px;
  background-color: #051D36;
}

.game-card h2,
.game-card h4 {
  font-family: var(--font-babes);
  color: var(--white);
  font-weight: 500;
  font-style: Bold;
  font-size: 24px;
  line-height: 100%;
  text-transform: uppercase;
}

.game-card h4 {
  font-size: 32px;
}

.game-card .logo {
  width: 40px;
  height: 40px;
}


/* game highlights */
.highlight-card {
  width: 200px;
  border-radius: 10px;
  overflow: hidden;
  height: 273px;
  position: relative;
}

.highlight-card-overlay .play-icon {
  width: 40px;
  height: 40px;
}

.highlight-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px;
  color: #fff;
}

.expert-insights .content {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.custom-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  gap: 24px;
  color: #FFFFFF;
  width: fit-content;
  height: 48px;
  background: #0250A0;
  border-radius: 30px;
  font-family: var(--font-inter);

}

.expert-insights span {
  font-family: var(--font-inter);
}

#insights-container .expert-insights-card {
  width: 228px;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.expert-insights-card .logo-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
/* 
.expert-insights-card .follow-button {
  display: flex;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 13px;
  gap: 6px;
  border-radius: 3px;
  padding: 4px 6px;
} */

.follow-button {
    padding: 0.2rem 0.3rem;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    background-color: var(--secondary, #e5e5e5);
    color: black;
    position: relative;

    display: inline-grid;
    place-items: center;
    font-family: var(--font-inter);
    text-transform: uppercase;
}

/* Only one will be visible at a time */
.follow-button span {
    grid-area: 1 / 1;
    white-space: nowrap;
}

/* Default: show default state, hide hover state */
.default-state {
    opacity: 1;
    visibility: visible;
    display: inline-block;
    display: flex;
}
.hover-state {
    opacity: 0;
    visibility: hidden;
}

/* On hover: swap spans */
.follow-button:hover .default-state {
    opacity: 0;
    visibility: hidden;
}

.follow-button:hover .hover-state {
    opacity: 1;
    visibility: visible;
}

.follow-button:hover{
  background-color: var(--primary);
    color: white;
}

/* Styling helpers */
.follow-button.following {
    /* background-color: var(--primary, #007bff); */
    /* color: white; */
}
.invert {
    filter: invert(1);
    margin-left: 0.3rem;
}



/* section bottom */
.section-bottom-first,
.section-updates,
.section-buzz {
  width: 100%;
  height: 100%;
  /* padding: 60px; */
  background: var(--white);
}

@media (max-width: 768px){
 .section-bottom-first,
.section-updates,
.section-buzz {
  padding: 20px;
}
}

@media (min-width: 768px){
 .section-bottom-first,
.section-updates,
.section-buzz {
  padding: 30px 60px;
}
}

.section-updates {
  background: var(--bg-secondary);
}

.section-bottom-first .orioles-buzz,
.section-bottom-first .nationals-buzz {
  width: 100%;
  height: 20.125rem;
  /* 322px / 16 = 20.125rem */
  gap: 1.5rem;
  /* 24px / 16 = 1.5rem */
  padding: 2rem;
  /* 32px / 16 = 2rem */
  border-radius: 1.25rem;
  /* 20px / 16 = 1.25rem */
  position: relative;
  /* display: flex; */
}

.section-bottom-first .orioles-buzz::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, var(--off-season-landing-orange) 100%);
  z-index: 1;
  border-radius: 1.25rem;
}

.section-bottom-first .nationals-buzz::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, var(--off-season-landing-orange) 100%);
  z-index: 1;
  border-radius: 1.25rem;
}

.main-card-title {
  font-family: var(--font-secondary);
}

.icon-left {
  width: 100px;
  height: 100px;
  border-radius: 16px;
}

.icon-left img {
  scale: 1.3;
}

.follow-btn {
  background: var(--white);
  gap: 10px;
  border-radius: 24px;
  padding: 10px 20px;
}

.follow-btn span {
  color: #000;
  font-family: Inter;
}

.masn-card {
  display: flex;
  gap: 18px;
  border-radius: 0.625rem;
  background: #f5f5f5;
  overflow: hidden;
  height: 12.75rem;
  height: 100%;
  width: 100%;
}

.masn-card-thumb {
  width: 15.75rem;
  height: 100%;
  object-fit: cover;
}

.masn-card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 1;
  gap: 20px;
  padding: 58px 29px;

}

.masn-card-title {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 25px;
}

.masn-card-date {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 14px;
}



/* MASN Official App + Ads */
.app-ads-section {
  width: 100%;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.app-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  border-radius: 30px;
  padding: 40px;
  background: linear-gradient(0deg, rgba(2, 80, 160, 0.7), rgba(2, 80, 160, 0.7)), #051d36;
  display: flex;
  align-items: center;
}

.app-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 403px;
  position: relative;
  z-index: 2;
  color: #fff;
}

.app-card-title {
  font-family: 'Bebas Neue', var(--font-primary);
  font-size: 80px;
  line-height: 0.9;
  /* Tighter line height for stacked text */
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  font-weight: 400 !important;
}

.app-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-inter);
  line-height: 25px;
  font-weight: 500;
}

.app-card-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.app-card-actions {
  display: flex;
  gap: 20px;
}

.store-link img {
  width: 190px;
  height: 65px;
  object-fit: contain;
}

.app-card-phones {
  position: absolute;
  right: -30px;
  top: -40px;
  width: 60%;
  /* width: 50%; */
  /* Responsive width relative to card */
  max-width: 650px;
  height: auto;
  pointer-events: none;
  z-index: 1;
  /* Behind text */
  object-fit: contain;
}

.app-ad-slot {
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.app-ad-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*score area*/

.score-area {
  width: 100%;
  padding: 20px;
}




.score-area-ads {
  max-width: 100%;
  height: auto;
}



.score-area .champions {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.21);
  border-radius: 10px;
  margin: 20px 0;
  overflow: hidden;
  max-width: 100%;
}


/*score stream area*/

.stream-area {
  margin: 20px 0;
}



.score-card {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.21);
  border-radius: 10px;
  overflow: hidden;
}


.score-card-strip {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  gap: 44px;
  width: 100%;
  /* max-width: 470px; */
  min-height: 48px;
  height: auto;
  background: #D1441B;
  border-radius: 30px;
  margin: 20px auto;
  color: #FFFFFF;
  font-size: 11px;
  text-align: center;
  line-height: 1.2;
  font-family: var(--font-inter);
        font-size: 16px;
}



.stream-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  gap: 12px;
  color: #FFFFFF;
  min-width: 111px;
  width: auto;
  /* height: 44px; */
  background: #0250A0;
  border-radius: 30px;
  margin: 15px auto;
  font-size: 16px;
  white-space: nowrap;
  /* font-family: var(--font-primary); */
  font-family:var(--font-inter);
   font-weight: 600; 
   text-transform: capitalize;
}


/*masn-all-access section*/


.video-section {
  width: 100%;
  /* padding: 40px 40px; */
  height: 100%;
  /* background: url('../../images/photos/masn-all-access/videos-bg.png') no-repeat; */
  background-size: cover;
}

.video-card {
  width: 100%;
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0px;
  /* height: 232px; */

  /*overflow: hidden;*/
}

.video-card .video-card-media {
  /* height: 180px; */
  background-size: cover;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.video-card .video-card-content {
  color: var(--white);
}

.video-card .play-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 16px;
  gap: 10px;
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 36px;
  flex: none;
  order: 0;
  flex-grow: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-section .custom-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  gap: 24px;
  width: fit-content;
  height: 48px;
  background: var(--white);
  border-radius: 30px;
  color: #000;
}

/* .video-section .bottom-btn{
  justify-content: space-evenly;
} */



/*update-items news section*/
.section-updates.news {
  /* padding: 40px; */
}

.section-updates.news .updates-item {
  height: auto;
  gap: 15px;
  font-weight: 400;
  font-style: Regular;
  font-size: 1.375rem;
  text-transform: uppercase;
  border-bottom: 1px solid #D3D3D3;
}

.section-updates.news .updates-item .item-chip {
  font-size: 12px;
  font-family: var(--font-inter);
  font-weight: 400;
}

.section-updates.news .updates-list {
  gap: 30px;
}

.updates-item-title {
  font-weight: 400;
  font-family: var(--font-inter);
  font-size: 14px;
}

.updates-item-title {
  font-weight: 400;
  font-family: var(--font-inter);
  font-size: 14px;
}

/*section-coverage*/

.section-coverage {
  width: 100%;
  /* padding: 40px; */
}

.section-coverage .cheap-label {
  font-size: 1.375rem;
}

.section-coverage .cheap-label .list-icon {
  width: 30px;
  height: 30px;
}

.section-coverage .masn-card-thumb {
  width: 15.75rem;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.section-coverage .masn-card {
  background: #FFFFFF;
}

.section-coverage .masn-card-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  opacity: 1;
  opacity: 1;
  gap: 10px;
  padding: 0;
}

.section-coverage .masn-card-body .masn-card-discription {
  font-size: 14px;
  font-family: var(--font-inter);
  font-weight: 400;
  color: #000000;
}

.section-coverage .masn-card-body .masn-card-chip {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 5px 12px;
  gap: 8px;
  width: fit-content;
  height: 24px;
  background: #0250A0;
  border-radius: 5px;
  flex: none;
  order: 0;
  flex-grow: 0;
  font-size: 12px;
  font-family: var(--font-inter);
  font-weight: 400;
  color: var(--white);
}

.swiper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Base style for both next & prev buttons */
.swiper-button-next,
.swiper-button-prev {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 16px;
  border-radius: 36px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  cursor: pointer;
  position: absolute !important;
  top: 0% !important;
  margin: 0 !important;
  transform: none !important;
}


#slider-3 .swiper-slide {
  width: 210px !important; /* any px, %, or rem */
}

/* Default Swiper arrow icons override */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px !important;
  color: white;
}

/* Position nicely centered vertically */
.swiper-button-next {
    right: 30% !important;
}

.swiper-button-prev {
    left: 30% !important;
}

.game-highlights .swiper-button-next{
  right: 5% !important;
  top: -27% !important;
}
.game-highlights .swiper-button-prev{
  left: 87% !important;
  top:-27% !important;
}

.game-highlights .swiper-button-next,
.game-highlights .swiper-button-prev {
 
  width: 48px;
  height: 48px;
  padding: 16px;
  border-radius: 36px;
  background: var(--white);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.game-highlights .swiper-button-next::after,
.game-highlights .swiper-button-prev::after {
  font-size: 16px !important;
  color: #000;
}

.game-highlights.game-highlights .swiper-button-prev {
  background-color: transparent;
  border: 1px solid var(--white);
}

.game-highlights.game-highlights .swiper-button-prev::after {
  color: #ffffff;
}

.video-section .app-card-title {
  font-size: 54px;
    font-weight: 400;
}


.video-section .swiper-button-prev{
left: -3rem !important;
width: 24px;
height: 24px;
border-radius: 50%;
border: 1px solid var(--white);
/* top: 0% !important; */
  top: 45% !important;
  /* margin: 0 !important; */
  /* transform: none !important; */
  transform: translateY(-50%) !important; /* center vertically */
  z-index: 10;
}

.video-section .swiper-button-next{
right: -3rem !important;
width: 24px;
height: 24px;
border-radius: 50%;
background: var(--white);
color: #000000;
/* top: 0% !important; */
  top: 45% !important;
  /* margin: 0 !important; */
  /* transform: none !important; */
  transform: translateY(-50%) !important; /* center vertically */
  z-index: 10;
}

.video-section .swiper-button-next::after,
.video-section .swiper-button-prev::after {
  font-size: 10px !important;
  
}

.video-section .swiper-button-next::after{
  color: #000;
}

.video-section .swiper-button-prev::after {
  color: var(--white);
}

.page-orioles .video-section .bottom-btn{
margin-top: -3rem;
}

#sr-widget-postseason{
  width: 95vw;
  margin: auto;
}

.expert-insights-with-ad > div{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.expert-insights-with-ad > div > div:nth-child(1){
width: max-content;
}

.expert-insights-with-ad > div > div:nth-child(2){
    flex: 1 1 0%;
    margin-left: 1rem;
}