@media (min-width: 768px) {
.mobile-only {
  display: none !important;
}
}
@media (max-width: 1440px) {
  .footer-subscribe.footer-btm-right{
      max-width: 800px;
  }
  .footer-subscribe.footer-btm-right .needsclick form.needsclick>.needsclick>.needsclick:nth-child(2), .footer-cta.newsletter .newsletter-content .cta-description .needsclick form.needsclick>.needsclick>.needsclick:nth-child(2) {
    width: auto !important;
    min-width: 160px;
}
	.main-nav li a {
    padding: 0 20px;
}
}

@media (max-width: 1280px) {
  .main-nav li a {
    padding: 0 clamp(16px, 1vw, 40px);
    font-size: 12px;
  }

  .hero {
    height: clamp(480px, 70vh, 680px);
  }

  .latest-stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }

  .featured-interview-content {
    max-width: 640px;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .series-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-us-media {
    height: clamp(380px, 60vh, 560px);
  }

  .about-us-columns {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .merch-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-newsletter{
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-subscribe.footer-btm-right{
    max-width: fit-content;
  }
  

}

@media (max-width: 1080px) {
	    .nav-toggle {
        display: inline-block;
    }
	
	/* Hide mobile menu by default */
  button.menu-close-btn {
    display: block;
  }

  .navmenu-wrap {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 284px;
    background: var(--color-primary);
    padding: 96px 24px 24px;

    display: flex;
    flex-direction: column;
    gap: 24px;

    transform: translateX(100%);
    transition: transform 320ms ease;
    pointer-events: none;
    z-index: 999;
  }

  .navmenu-wrap.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .main-nav li a{
    padding: 0;
    display: block;
  }

  .menu-close-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: 0;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
  }

  .toggle-menu-subscribe {
    display: block;
    width: 100%;
    margin-top: auto;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
    z-index: 998;
  }

  body.menu-open .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }
	
}

/* Tablet */
@media(max-width:1024px) {

  .grid-4,
  .grid-5,
  .grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .inner-hero-overlay {
    background: linear-gradient(90deg,
        rgba(10, 21, 36, 0.95) 0%,
        rgba(10, 21, 36, 0.9) 10%,
        rgba(10, 21, 36, 0.75) 25%,
        rgba(10, 21, 36, 0.45) 45%,
        rgba(10, 21, 36, 0.2) 65%,
        rgba(10, 21, 36, 0) 100%);
  }

  .inner-hero{
    align-items: center;
    padding-bottom: 20px;
  }

  .markets-grid {
    grid-template-columns: 1fr;
  }

  .market-card {
    height: auto;
  }

  .footer-main {
    height: auto;
    padding-bottom: 40px;
  }

  .footer-nav ul {
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer-right {
    width: 100%;
  }

  .footer-middle .footer-inner {
    flex-direction: column-reverse;
  }

  .footer-newsletter {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-newsletter-fields {
    width: 100%;
  }

  .footer-middle .footer-inner .footer-subscribe {
      width: 100%;
      max-width: none;
  }
  .footer-middle .newsletter-form input{
    max-width: 100%;
  }

  /* CARD Slider */
  .mobile-slider {
    overflow: hidden;
  }
	.mobile-slider .container .mobile-slider, 
	.mobile-slider .container .latest-stories-grid,
	.mobile-slider .container .merch-grid,
	.mobile-slider .container .highlights-grid {
    width: calc(100% + 4vw);
}
	.guest-grid {
    gap: 10px;
}

  .mobile-slider .slick-track {
    display: flex;
  }

  .mobile-slider .slick-slide {
    padding-right: clamp(16px, 3vw, 32px);
  }

  .mobile-slider .slick-slide>* {
    height: 100%;
    margin-bottom: 16px;
  }

  

  .article-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(48px, 6vw, 96px);
    align-items: start;
  }

  .article-sidebar {
    order: 1;
  }

  .article-content {
    order: 2;
  }

  .article-tabs .tabs-inner {
    justify-content: center;
  }

  .article-sidebar,
  .has-article-tabs .article-sidebar {
    position: relative;
    top: auto;
    width: 100%;
  }

  .guest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guest-grid .guest-card,
  .guest-grid .guest-categories,
  .guest-grid .guest-categories .story-category {
    min-width: 0;
  }

  .guest-grid .guest-categories .story-category {
    flex: 0 1 auto;
    flex-wrap: wrap;
  }

  .mobile-slider .slick-slide {
    width: 43vw !important;
  }

  .featured-content-wrap {
    justify-content: end;
    padding-bottom: 50px;
            padding-left: 20px;
        padding-right: 20px;
  }

  .featured-interview-overlay {
    background: linear-gradient(180deg, rgba(10, 21, 36, 0.00) 0%, rgba(10, 21, 36, 0) 31%, #0A1524 50%);
  }

  .featured-interview-content {
    max-width: 640px;
    padding: 0;
  }

  .highlight-thumb {
    margin-bottom: 20px;
  }

  .markets-grid {
    grid-template-columns: 1fr;
  }

  .markets-col-1 {
    order: 2;
  }

  .markets-col-2 {
    order: 1;
  }

  .about-detail-container {
    max-width: 100%;
  }

  section.keep-exploring .featured-content-wrap {
    justify-content: center;
    height: 320px;
    padding-bottom: 0;
  }

  .contact-layout{
    flex-direction: column;
    gap: 80px;
  }

  .contact-form-wrap{
    max-width: 100%;
  }

  .desktop-only-btn{
    display: none;
  }

  .mobile-only-btn{
    display: inline-flex;
  }

  .footer-subscribe.footer-btm-right .needsclick {
    max-width: 100%;
  }

  .footer-cta.newsletter .newsletter-content .cta-description .needsclick > button,
  .footer-subscribe.footer-btm-right .needsclick > button{
    width: 100% !important;
  }

  article.story-card .story-content a.btn{
    width: fit-content;
  }

  ul.category-tabs.desktop-tabs{
    display: none;
  }

  select.mobile-dropdown{
    display: block;
  }

  figure.wp-block-gallery figure.wp-block-image {
      border-radius: 8px;
  }

  .article-sidebar .action-button {
      flex-direction: row;
  }
	
	.article-content, .article-text {
    max-width: 100%;
}


}

/* Mobile */
@media (max-width: 767px) {

  .desktop-only {
  display: none !important;
}

  .grid-2,
  .grid-4,
  .grid-5,
  .grid-6 {
    grid-template-columns: 1fr;
  }

  a.site-logo {
    width: 120px;
  }

  .btn{
    width: 100%;
  }

  .btn.series-link{
    width: fit-content;
  }

  .hero {
    height: clamp(420px, 85vh, 560px);
  }

  .hero-actions {
      flex-direction: column;
  }

  .hero-title {
    font-size: clamp(28px, 7vw, 36px);
    line-height: clamp(36px, 9vw, 44px);
  }

  .inner-hero-overlay {
    align-items: center;

    background: linear-gradient(180deg,
        rgba(10, 21, 36, 0.05) 0%,
        rgba(10, 21, 36, 0.35) 30%,
        rgba(10, 21, 36, 0.75) 65%,
        rgba(10, 21, 36, 0.9) 100%);
  }

  .inner-hero.inner-hero-type-1 {
    align-items: flex-end;
    padding-bottom: 40px;
        min-height: 100px;
    padding-top: 220px;
  }
  .inner-hero-media img {
    object-fit: cover;
    width: 100%;
    height: 320px;
    mask-image: linear-gradient(0deg, rgba(10, 21, 36, 0.00) 15.42%, #0A1524 72.81%);
}



  .inner-hero.inner-hero-type-1 .inner-hero-content {
    max-width: 100%;
    padding: 0 var(--container-padding);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .inner-hero-content {
    max-width: 100%;
    padding-inline: clamp(16px, 5vw, 24px);
    text-align: center;
  }

  .latest-stories-header {
    text-align: left;
  }

  .latest-stories-grid {
    grid-template-columns: 1fr;
  }

  .explore-categories-header {
    text-align: left;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid .category-card {
    max-height: 200px;
  }

  .category-content-wrap,
  .category-content-wrap .category-content {
    width: 100%;
  }

  .featured-interview {
    height: auto;
  }

  .featured-interview-content {
    max-width: 100%;
  }

  .featured-title {
    font-size: clamp(22px, 5vw, 28px);
    line-height: clamp(30px, 7vw, 36px);
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .series-grid {
    grid-template-columns: 1fr;
  }

  .about-us-media {
    height: clamp(360px, 70vh, 520px);
  }

  .about-us-columns {
    gap: 24px;
  }

  .merch-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom-inner {
    grid-template-columns: 1fr;
  }

  .footer-newsletter-fields {
    flex-direction: column;
  }

  .footer-newsletter-fields .btn {
    width: 100%;
  }

  .featured-story-row {
    grid-template-columns: 1fr;
  }

  .featured-story-row.reverse {
    grid-template-columns: 1fr;
  }

  .featured-story-row,
  .featured-story-row.reverse {
    grid-template-columns: 1fr;
    gap: inherit;
  }

  .featured-story-row.reverse .featured-story-media,
  .featured-story-row.reverse .featured-story-content {
    grid-column: auto;
  }

  .featured-story-media {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .mobile-slider .slick-slide {
    width: 80vw !important;
  }
  .mobile-slider .merch-grid .slick-slide {
    width: 60vw !important;
}

  .guest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guest-grid .guest-card,
  .guest-grid .guest-categories,
  .guest-grid .guest-categories .story-category {
    min-width: 0;
  }

  .guest-grid .guest-categories .story-category {
    flex: 0 1 auto;
    flex-wrap: wrap;
  }

  .sidebar-meta {
    grid-template-columns: 1fr;
  }

  .footer-inner nav.footer-nav{
    flex-direction: column;
    width: max-content;
  }

  .footer-nav ul.footer-menu{
    flex-direction: column;
    gap: 30px;
  }

  .footer-right {
    flex-direction: column;
    gap: 40px;
  }

  .footer-right .footer-connect {
    text-align: left;
    margin-bottom: 20px;
  }

  .footer-middle .footer-inner .footer-subscribe{
    max-width: 100%;
  }

  section.keep-exploring .featured-content-wrap {
    justify-content: start;
    height: 560px;
    padding-top: 50px;
  }

  .article-two-col{
    flex-direction: column;
  }

  .article-two-col-media,
  .article-two-col .article-two-col-text {
    max-width: 100%;
  }

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

  .article-media-grid .article-media-item {
    height: 200px;
  }

  .subscribe-panel {
    left: 50% !important;
    transform: translate(-50%, -16px);
  }

  .subscribe-panel.is-open {
    transform: translate(-50%, 0);
  }

  .inner-hero-overlay{
    background: linear-gradient(180deg, rgba(10, 21, 36, 0) 15.42%, #0A1524 72.81%);
  }

  .inner-hero.guest-hero {
    align-items: flex-end;
    padding-top: 40px;
    padding-bottom: 40px;
    align-items: stretch;
  }

  .inner-hero.guest-hero .container-large {
    justify-content: space-between;
  }

  .inner-hero.guest-hero .breadcrumbs {
    margin-bottom: 12px;
  }

  .inner-hero.guest-hero .inner-hero-content {
    max-width: 100%;
  }

  .footer-subscribe.footer-btm-right .klaviyo-form-VamemD form > .needsclick,
  .footer-cta.newsletter .newsletter-content .cta-description .needsclick{
    flex-direction: column !important;
  }
  
  .footer-subscribe.footer-btm-right .needsclick > button,
  .footer-cta.newsletter .newsletter-content .cta-description .needsclick > button{
    margin: 0 auto;
    width: 100% !important;
  }
  
  .footer-cta.newsletter .newsletter-content .cta-description .needsclick form.needsclick > .needsclick > .needsclick:nth-child(2) > .needsclick {
    width: calc(100% - 32px);
  }

  .article-sidebar .action-button {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

.featured-interview-image {
    height: 60vw;
    padding-left: 0;
}

h3.highlight-title {
    margin-top: 0;
}
.guest-filters, ul.category-tabs.desktop-tabs {
    justify-content: flex-start;
}
.guest-filters .filter, ul.category-tabs.desktop-tabs li {
    padding: 12px 24px;
    font-size: 14px;
    line-height: 14px;
    height: auto;
}
.guest-card {
    gap: 5px;
    margin-bottom: 20px;
}
.guest-categories a {
  font-size: 12px;
  padding: 4px 8px;
}
.featured-interview-image img {
    transform: scale(1);
    mask-image: var(--featured-banner-image_mask-gradient_mobile);
}
	.article-panel .caption {
		display: block;
	}
	.article-panel .caption p.ts {
    display: inline-block;
    width: auto;
}

}

