@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
    background-color: #000000;
    padding-top: 30px;
  }

  h1 {
    text-transform: uppercase;
  }

.span1 {
  font-weight: 400;
}

/* SEO: H1 visible to crawlers/screen readers, not visually on hero */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
  .hero {
    position: relative;
    height: 55vh;
    width: 100%;
    overflow: hidden;
    color: white;
  }

  .hero__slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  /* Tablet & mobile: show portrait only; hide desktop slider */
  .hero__slider--desktop {
    display: none;
  }

  .hero__portrait {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .hero__portrait .hero__track--portrait {
    height: 100%;
    min-height: 100%;
  }

  .hero__portrait .hero__slide {
    height: 100%;
    min-height: 100%;
  }

  .hero__portrait .hero__image {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }
  /* Desktop: show 2 Ramadan landscape slider; hide portrait; full viewport height */
  @media screen and (min-width: 1025px) {
    .hero {
      height: 100vh;
    }

    .hero__slider--desktop {
      display: block;
    }

    .hero__portrait--mobile-tab {
      display: none;
    }
  }

  /* Tablet: reduced hero height */
  @media screen and (max-width: 1024px) and (min-width: 769px) {
    .hero {
      height: 60vh;
    }
  }

  /* Mobile: smaller hero height */
  @media screen and (max-width: 768px) {
    .hero {
      height: 58vh;
    }
  }

  .hero__track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease-in-out;
    will-change: transform;
  }

  .hero__slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
  }

  .hero__picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .hero__picture .hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero__content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 6vw;
    max-width: 100%;
  }

  .hero__content h1 {
    font-size: clamp(32px, 5vw, 82px);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff79;
    letter-spacing: -0.01em;
    text-align: center;
    margin-top: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s ease-out 0.1s forwards;
  }
  @keyframes heroFadeUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }




  .slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0px 20px;
  }
  
  .slider::-webkit-scrollbar {
    display: none;
  }
  
  .card {
    position: relative;
    min-width: 800px;
    height: 500px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
  }
  
.slider-wrapper {
  position: relative;
  background: #000;
  padding: 80px 50px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.slider-wrapper.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.slider-wrapper .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}

.slider-wrapper .nav-btn.left {
  left: 12px;
}

.slider-wrapper .nav-btn.right {
  right: 12px;
}

  .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
  }
  
  .card:hover img {
    transform: scale(1.05);
  }
  
  /* Default title */
  .card-title {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fff;
    z-index: 2;
  }
  
  .card-title h3 {
    font-size: 30px;
    font-weight: 600;
  }
  
  /* Overlay */
  .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.85),
      rgba(0, 0, 0, 0.466)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .card:hover .overlay {
    opacity: 1;
  }
  
.overlay-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  row-gap: 10px;
  align-items: center;
}
.price {
  font-size: 14px;
  margin: 0;
}

.price strong {
  font-size: 30px;
}

/* Buttons */
.actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  align-items: center;
  grid-column: 2 / 3;
  justify-self: end;
}
  
  .btn {
    padding: 10px 22px;
    border-radius: 24px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
  }
  
  .btn.light {
    background: #fff;
    color: #000;
  }
  
  /* Navigation */
  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
  }
  
  .nav-btn.left {
    left: -10px;
  }
  
  .nav-btn.right {
    right: -10px;
  }
  .btn a {
    text-decoration: none;
    color: #000;
  }

/* Responsive slider/card layout */
@media (max-width: 1024px) {
  .slider-wrapper {
    padding: 60px 32px;
  }

  .slider {
    gap: 24px;
    padding: 0 16px;
  }

  .card {
    min-width: 620px;
    height: 420px;
  }

  .card-title h3 {
    font-size: 24px;
  }

  .overlay-content {
    bottom: 24px;
    left: 24px;
    right: 24px;
  }
}

@media (max-width: 640px) {
  .slider-wrapper {
    padding: 40px 16px;
  }

  .slider {
    gap: 16px;
    padding: 0 8px;
  }

  .card {
    min-width: 85vw;
    height: 220px;
    border-radius: 6px;
  }

  .card-title h3 {
    font-size: 20px;
  }

  .overlay-content {
    bottom: 20px;
    left: 20px;
    right: 20px;
    row-gap: 8px;
  }

  .price {
    font-size: 12px;
  }

  .price strong {
    font-size: 18px;
  }

  .btn {
    padding: 8px 18px;
    font-size: 12px;
  }

  .slider-wrapper .nav-btn {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .slider-wrapper .nav-btn.left {
    left: 6px;
  }

  .slider-wrapper .nav-btn.right {
    right: 6px;
  }
  .nav-btn {
    display: none;
  }
}

/* WHY section */
.why {
  background: #131313;
  color: #000;
  padding: 80px 40px;
  margin: 0px 0px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.why__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.why.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.why__head {
  margin-bottom: 50px;
}
.why__head h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-align: center;
}

.why__grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}

.why__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.why__left,
.why__right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.why.is-visible .why__left,
.why.is-visible .why__right {
  opacity: 1;
  transform: translateY(0);
}

.why.is-visible .why__right {
  transition-delay: 0.15s;
}

.why__badge {
  background: transparent;
  padding: 16px 18px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: #ffffff;
}

.why__features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why__item {
  position: relative;
  background: #000000;
  border-radius: 5px;
  text-align: left;
  border: none;
  font-family: 'Poppins', sans-serif;
  padding: 30px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.why__item-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.why__item-desc {
  font-size: 14px;
  color: #e0e0e0;
  margin-top: 6px;
  font-weight: 300;
  line-height: 1.5;
  display: none;
  font-family: 'Poppins', sans-serif;
}

.why__item.is-active .why__item-desc {
  display: block;
}

.why__item-caret {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #555;
  transition: transform 0.9s ease;
}

.why__item.is-active .why__item-caret {
  transform: translateY(-50%) rotate(180deg);
}

.why__ctas {
  display: flex;
  margin-top: 30px;
  gap: 20px;
  flex-wrap: wrap;
}

.why__link {
  font-size: 15px;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.why__link::before {
  content: "›";
  font-size: 12px;
}

.why__right img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px) {
  .why {
    padding: 60px 24px;
    margin: 0px 0px;
    border-radius: 0px;
  }
  .why__head h2 {
    font-size: 35px;
    text-align: center;
    line-height: 1.2;
  }
  .why__grid {
    grid-template-columns: 1fr;
  }
  .why__right {
    order: -1;
  }
}

/* Running Future section */
.running-future {
  width: 100%;
  background-color: #000000;
  padding: 100px 40px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.running-future.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.running-future__container {
  max-width: 1400px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.running-future__title {
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  margin: 0;
  line-height: 1.2;
}

/* Tablet Responsive Styles for Running Future Section */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .running-future {
    padding: 40px 35px;
    min-height: 250px;
  }

  .running-future__title {
    font-size: clamp(50px, 4vw, 60px);
    letter-spacing: 1.5px;
  }
}

/* Mobile Responsive Styles for Running Future Section */
@media screen and (max-width: 767px) {
  .running-future {
    padding: 60px 25px;
    min-height: 200px;
  }

  .running-future__title {
    font-size: clamp(24px, 6vw, 48px);
    letter-spacing: 1px;
  }
}

/* Small Mobile Devices for Running Future Section */
@media screen and (max-width: 480px) {
  .running-future {
    padding: 50px 20px 0px;
    min-height: 180px;
  }

  .running-future__title {
    font-size: clamp(40px, 5vw, 36px);
    letter-spacing: 0.5px;
  }
}

/* Story section */
.story {
  background: #000000;
  color: #fff;
  padding: 100px 40px;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.story.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.story__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.story__title {
  font-size: clamp(32px, 5vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  text-align: left;
  letter-spacing: -0.02em;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease-out 0.15s, transform 0.75s ease-out 0.15s;
}

.story.is-visible .story__title {
  opacity: 1;
  transform: translateY(0);
}

.story__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 20px;
}

.story__media,
.story__content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease-out 0.25s, transform 0.75s ease-out 0.25s;
}

.story.is-visible .story__media,
.story.is-visible .story__content {
  opacity: 1;
  transform: translateY(0);
}

.story__content {
  transition-delay: 0.35s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 20px;
}

.story__lead {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.6;
  font-weight: 300;
  text-align: left;
  margin-bottom: 16px;
}

.story__lead strong {
  font-weight: 600;
}

.story__body {
  font-size: 15px;
  color: #ffffff;
  font-weight: 300;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 24px;
}

.story__cta {
  margin-top: auto;
  padding: 12px 28px;
  background: #2a2a2a;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: 0.01em;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  align-self: flex-start;
}

.story__cta a {
  text-decoration: none;
  color: #ffffff;
}
.story__cta:hover {
  background: #353535;
  transform: translateY(-2px);
}

.story__cta:active {
  transform: translateY(0);
}

.story__media {
  width: 100%;
  position: relative;
}

.story__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

/* Responsive styles */
@media (max-width: 1440px) {
  .story {
    padding: 80px 50px;
  }
  .story__grid {
    gap: 50px;
  }
}

@media (max-width: 1024px) {
  .story {
    padding: 70px 32px;
  }
  .story__inner {
    gap: 32px;
  }
  .story__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story__title {
    text-align: center;
  }
  .story__content {
    text-align: center;
    padding-top: 0;
  }
  .story__lead,
  .story__body {
    text-align: center;
  }
  .story__cta {
    align-self: center;
  }
  .story__media {
    order: -1;
  }
}

@media (max-width: 768px) {
  .story {
    padding: 60px 24px;
  }
  .story__inner {
    gap: 28px;
  }
  .story__title {
    font-size: clamp(24px, 6vw, 40px);
    line-height: 1.2;
  }
  .story__grid {
    gap: 32px;
  }
  .story__lead,
  .story__body {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .story {
    padding: 50px 20px;
  }
  .story__inner {
    gap: 24px;
  }
  .story__title {
    font-size: 28px;
    text-align: left;
  }
  .story__grid {
    gap: 28px;
  }
  .story__content {
    text-align: left;
  }
  .story__lead,
  .story__body {
    text-align: left;
    font-size: 13px;
  }
  .story__cta {
    align-self: flex-start;
    padding: 10px 24px;
    font-size: 13px;
  }
  .story__media img {
    border-radius: 8px;
  }
}



/* Drive CTA section */
.drive {
  position: relative;
  background: url("../assets/images/drivebg.png") center/cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: clamp(40px, 8vw, 80px) clamp(20px, 8vw, 80px);
  overflow: hidden;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.drive.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.drive__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.849) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0) 100%);
}

.drive__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out 0.15s, transform 0.7s ease-out 0.15s;
}

.drive.is-visible .drive__content {
  opacity: 1;
  transform: translateY(0);
}

.drive__eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: #d8d8d8;
}

.drive__content h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.drive__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.drive__btn {
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  opacity: 0;
  transform: translateY(12px);
}

.drive__btn:nth-child(1) {
  transition-delay: 0.12s;
}

.drive__btn:nth-child(2) {
  transition-delay: 0.18s;
}

.drive.is-visible .drive__btn {
  opacity: 1;
  transform: translateY(0);
}

.drive__btn--light {
  background: #ffffff;
  color: #000;
  border-color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.drive__btn--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.drive__btn--dark {
  background: #1f1f1f;
  color: #fff;
  border-color: #3a3a3a;
  font-weight: 400;
}

.drive__btn--dark:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
}
.drive__btn--light a {
  text-decoration: none;
  color: #000;
}

.drive__btn--dark a {
  text-decoration: none;
  color: #fff;
}
@media (max-width: 1024px) {
  .drive {
    min-height: 60vh;
    background-position: center top;
  }
  .drive__content {
    max-width: 640px;
  }
}

@media (max-width: 768px) {
  .drive {
    min-height: 55vh;
    padding: 48px 24px;
  }
  .drive__content {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .drive {
    min-height: 480px;
    padding: 44px 30px;
  }
  .drive__content {
    align-items: center;
    text-align: center;
  }
  .drive__actions {
    justify-content: center;
  }
}

/* What's New (News) section */
.whats-new {
  width: 100%;
  background-color: #000000;
  color: #fff;
  padding: 100px 40px;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.whats-new.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.whats-new__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.whats-new__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  margin: 0 0 60px;
  line-height: 1.2;
}

.whats-new__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* PC: show only 3 cards; 4th card hidden */
.whats-new__grid .whats-new__card:nth-child(4) {
  display: none;
}

.whats-new__card {
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.whats-new__card:hover {
  transform: translateY(-4px);
}

.whats-new__card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.whats-new__card-image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 20px;
}

.whats-new__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.whats-new__card:hover .whats-new__card-image {
  transform: scale(1.05);
}

.whats-new__card-date {
  font-size: 14px;
  font-weight: 400;
  color: #c0c0c0;
  margin: 0 0 10px;
}

.whats-new__card-title {
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.whats-new__card-read-more {
  font-size: 14px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  transition: opacity 0.2s ease;
}

.whats-new__card-read-more:hover {
  opacity: 0.85;
}

.whats-new__card-read-more i {
  font-size: 12px;
}

.whats-new__actions {
  display: flex;
  justify-content: center;
}

.whats-new__btn {
  display: inline-block;
  padding: 14px 36px;
  background: #ffffff;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.whats-new__btn:hover {
  background: #e8e8e8;
  transform: translateY(-2px);
}

/* Tablet – 2 columns, show 4 cards */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .whats-new {
    padding: 80px 35px;
  }

  .whats-new__title {
    margin-bottom: 50px;
  }

  .whats-new__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 40px;
  }

  .whats-new__grid .whats-new__card:nth-child(4) {
    display: flex;
  }

  .whats-new__card-title {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}

/* Mobile – 1 column */
@media screen and (max-width: 768px) {
  .whats-new {
    padding: 60px 25px;
  }

  .whats-new__title {
    margin-bottom: 40px;
    font-size: clamp(24px, 5vw, 36px);
  }

  .whats-new__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 36px;
  }

  .whats-new__grid .whats-new__card:nth-child(4) {
    display: flex;
  }

  .whats-new__card-image-wrapper {
    margin-bottom: 16px;
  }

  .whats-new__card-date {
    font-size: 13px;
  }

  .whats-new__card-title {
    font-size: 17px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .whats-new__btn {
    padding: 12px 28px;
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .whats-new {
    padding: 50px 20px;
  }

  .whats-new__title {
    margin-bottom: 32px;
  }

  .whats-new__grid {
    gap: 28px;
    margin-bottom: 32px;
  }

  .whats-new__card-title {
    font-size: 16px;
  }
}
