:root {
  --padX: 220px;
  --cardRound: 20px;
  --cardInfoPadding: 3rem;
}

body {
  p {
    margin-bottom: 0;
  }
}

.search-container {
  display: flex;
  align-items: center;
  margin-left: auto;
  border: 1px solid #D9D9D9;
  background-color: #F6F6F6;
  border-radius: 30px;
  height: 2.5rem;
  padding: 0 0.5rem;
}

.search-icon {
  width: 1rem;
  height: 1rem;
}

.question-box {
  border: none !important;
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;

  &::placeholder {
    font-size: 0.8rem;
    color: #707070;
    font-weight: 600;
  }
}

/* HERO */
.blogs-hero {
  padding-inline: var(--padX);
  display: flex;
  align-items: flex-start;
  gap: 50px;
  margin-top: 150px;

  .info {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;

    h1 {
      font-size: 2rem;
      letter-spacing: 1px;
      margin-bottom: 1.5rem;
    }

    p {
      font-family: "Open Sans", sans-serif;
      color: #4C4C4C;
      font-size: 1rem;
      letter-spacing: 1px;
    }
  }

  .img {
    flex: 1;
    border-radius: 20px;
    height: 300px;
    min-width: 55%;
    background-color: rgb(77, 77, 20);
  }
}

/* NEWSROOM */
.newsroom {
  margin-top: 4rem;

  .nav {
    padding-inline: var(--padX);
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;

    .buttons {
      display: flex;
      gap: 10px;
      margin-right: auto;
      align-items: center;
      cursor: pointer;

      p {
        font-family: "Open Sans", sans-serif;
        color: #707070;
        font-size: 0.9rem;
        font-weight: 600;
        background-color: #f5f5f5;
        height: fit-content;
        padding-block: 8px;
        padding-inline: 25px;
        border-radius: 30px;
      }

      .active {
        background-color: #0d8bd925;
        color: #2A94D4;
        font-weight: 600;
      }
    }
  }
}

/* PRESS */
.press {
  background-color: rgba(42, 148, 212, 0.1);
  padding: 60px var(--padX);

  h1 {
    font-size: 2rem;
  }

  /* Shared card info styles */
  .hero-card .info,
  .card .info {
    display: flex;
    flex-direction: column;

    h2 {
      font-size: 1.1rem;
      margin-bottom: 1rem;
      font-weight: 600;
      color: #414141;
    }

    p:first-child {
      margin-bottom: 0.5rem;
      color: #B8B8B8;
    }

    p {
      color: #707070;
      font-family: "Open Sans", sans-serif;
      font-weight: 500;
      font-size: 1rem;
      line-height: 25px;
    }

    .detail span {
      color: #B8B8B8;
    }

    .read-more {
      color: #2A94D4;
      margin-top: auto;
      padding-top: 2rem;
      font-weight: 600;
      font-size: 0.8rem;
      cursor: pointer;
    }

    .read-more:hover {
      color: #0063B0;
    }
  }

  .hero-card {
    background-color: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    height: 400px;
    display: flex;
    border-radius: var(--cardRound);
    overflow: hidden;

    .img {
      flex: 1;
      height: 100%;
      min-width: 55%;
      background-color: grey;
    }

    .info {
      padding: 2rem 2rem 2rem 3rem;
    }
  }

  .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    gap: 30px;
    margin-top: 30px;
  }

  .card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    min-height: 40rem;
    border-radius: var(--cardRound);

    .img {
      flex: 1;
      height: 100%;
      min-height: 300px;
      background-color: grey;
    }

    .info {
      padding: 1.5rem 2rem 2rem 3rem;
      height: 100%;
    }

    #desc {
      margin-bottom: 20px;
    }

    .read-more {
      margin-top: auto;
    }
  }

  #heroCard a,
  #pressGrid a {
    display: contents;
  }
}

/* VIEW ALL BUTTON */
.view-all-container {
  text-align: center;
  margin-top: 40px;
}

.view-all-btn {
  display: inline-block;
  border: 2px solid #2A94D4;
  color: #2A94D4;
  background: transparent;
  border-radius: 30px;
  padding: 10px 50px;
  font-weight: 600;
  text-decoration: none !important;
  transition: 0.2s;
}

.in-the-news {
  padding: 60px var(--padX);
  background-color: rgba(217, 217, 217, 0.17);

  .itn-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;

    h2 {
      color: #2A94D4;
      font-size: 2rem;
    }
  }

  .itn-carousel-wrapper {
    overflow: hidden;
  }

  .itn-carousel {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.8s ease-in-out;
  }

  .itn-card {
    width: 280px;
    height: 520px;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: var(--cardRound);
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
    overflow: hidden;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;

    .itn-card-img {
      height: 200px;
      flex-shrink: 0;
      background-size: cover;
      background-position: center;
    }

    .itn-card-body {
      padding: 1.25rem 1.5rem 2rem;
      display: flex;
      flex-direction: column;
      flex: 1;

      .itn-logo {
        height: 2rem;
        object-fit: contain;
        margin-bottom: 0.75rem;
      }

      h3 {
        color: #2A94D4;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
      }

      .itn-subtitle {
        color: #707070;
        font-family: "Open Sans", sans-serif;
        font-weight: 500;
        font-size: 0.9rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      .itn-date {
        color: #B8B8B8;
        font-size: 0.85rem;
        font-weight: 500;
        margin-top: auto;
      }
    }
  }

  .itn-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;

    .itn-dots {
      display: flex;
      gap: 0.5rem;

      .itn-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #D9D9D9;
        cursor: pointer;

        &.active {
          background: #2A94D4;
        }
      }
    }

    .itn-arrows {
      display: flex;
      gap: 0.75rem;

      .itn-arrow {
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        border: 1px solid #D9D9D9;
        background: white;
        font-size: 1.5rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #707070;

        &:hover {
          border-color: #2A94D4;
          color: #2A94D4;
        }
      }
    }
  }
}

.press-all {
  padding: 8rem var(--padX) 5rem;

  /* h1 {
    margin-bottom: 3rem;
  } */

  .press-all-month {
    margin-bottom: 3rem;

    .press-month-heading {
      font-size: 1.5rem;
      font-weight: 700;
      color: #414141;
      margin-bottom: 0.5rem;
    }

    hr {
      border-color: #D9D9D9;
      margin-bottom: 2rem;
    }
  }

  .press-all-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .press-all-filters {
    padding: 1.5rem var(--padX);
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .press-all-card {
    background: white;
    border-radius: var(--cardRound);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    display: flex;
    flex-direction: column;

    .press-all-img {
      height: 250px;
      background-size: cover;
      background-position: center;
      flex-shrink: 0;
    }

    .press-all-card-body {
      padding: 1.25rem 1.5rem 2rem;
      display: flex;
      flex-direction: column;
      flex: 1;

      h3 {
        color: #2A94D4;
        font-size: 1rem;
        margin-bottom: 0.5rem;
      }

      .press-all-subtitle {
        color: #707070;
        font-size: 0.9rem;
        margin-bottom: 2rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      .press-all-date {
        color: #B8B8B8;
        font-size: 0.85rem;
        margin-top: auto;
      }
    }

    &:hover {
      box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    }
  }
}

.press-return {
  text-align: center;
  margin-bottom: 3.5rem;
}

.press-return-btn {
  display: inline-block;
  background-color: #2A94D4;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;

  &:hover {
    background-color: #1a7ab8;
    color: white !important;
    text-decoration: none;
  }
}

/* SHARED READ MORE */
.read-more {
  color: #2A94D4 !important;
  margin-top: auto;
  padding-top: 2rem;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  cursor: pointer;

  &:hover {
    color: #1a7ab8 !important;
    text-decoration: none;
  }
}

/* SHARED ARROW BUTTON */
.itn-arrow {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid #D9D9D9;
  background: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #707070;

  &:hover {
    border-color: #2A94D4;
    color: #2A94D4;
  }
}

/* BLOGS SECTION */
.blogs-section {
  background-color: rgba(42, 148, 212, 0.1);
  padding: 60px var(--padX);

  h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
  }

  #blogHeroCard {
    margin-bottom: 1.5rem;

    .blog-hero-link {
      display: flex;
      background: white;
      border-radius: var(--cardRound);
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
      overflow: hidden;
      height: 400px;
      text-decoration: none;
      color: inherit;

      .img {
        min-width: 55%;
        height: 100%;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        background-color: #f8f8f8;
      }

      .info {
        padding: 2rem 2rem 2rem 3rem;
      }
    }
  }

  .blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;

    .blog-card-link {
      text-decoration: none;
      color: inherit;
      height: 100%;
      display: flex;
      flex-direction: column;

      .blog-card {
        background: white;
        border-radius: var(--cardRound);
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        height: 100%;

        .img {
          height: 300px;
          flex-shrink: 0;
        }

        .info {
          padding: 1.5rem 2rem 2rem 3rem;
          flex: 1;
        }
      }
    }
  }

  .blog-date {
    color: #B8B8B8 !important;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
}

/* Shared blog card info styles */
.blog-hero-link .info,
.blog-card .info {
  display: flex;
  flex-direction: column;

  h2 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #414141;
  }

  p {
    color: #707070;
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 25px;
  }
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}

.blog-tag {
  background-color: rgba(42, 148, 212, 0.15);
  color: #2A94D4;
  border-radius: 30px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;

  &:hover {
    background-color: #f3f3f3;
  }
}

/* BLOG ALL PAGE */
.blog-all-header {
  background-color: rgba(42, 148, 212, 0.12);
  padding: 7rem var(--padX) 0.1rem;
}

.blog-all-filters {
  background-color: rgba(42, 148, 212, 0.12);
  padding: 1.5rem var(--padX);
  display: flex;
  align-items: center;
  gap: 1rem;

  .filter-label {
    font-weight: 600;
    color: #414141;
    font-size: 0.9rem;
  }

  .filter-select {
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    padding: 0.4rem 2rem 0.4rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #707070;
    background-color: white;
    cursor: pointer;
  }
}

.filter-dropdown {
  position: relative;
}

.filter-dropdown-btn {
  background: white;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
  color: #414141;
  white-space: nowrap;
  display: flex;
  justify-content: space-between;
  align-items: center;

  &:hover {
    border-color: #2A94D4;
    color: #2A94D4;
  }
}

#topicBtn {
  width: 240px;
}

.filter-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #D9D9D9;
  border-radius: 0 0 8px 8px;
  padding: 0.75rem;
  z-index: 100;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);

  &.open {
    display: block;
  }
}

.filter-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.25rem;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #414141;

  &:hover {
    color: #2A94D4;
  }
}

.blog-all-content {
  padding: 3rem var(--padX);
}

.blog-all-month {
  margin-bottom: 2rem;

  .blog-all-month-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #414141;
    margin-bottom: 0.5rem;
  }

  hr {
    border-color: #D9D9D9;
    margin-bottom: 1.5rem;
  }
}

.blog-all-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  padding: 2rem 0;

  .blog-all-img {
    width: 40%;
    height: 200px;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
    background-color: #EEF6FB;
  }

  .blog-all-card-body {
    flex: 1;

    .blog-all-tag {
      color: #2A94D4;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      margin-bottom: 0.4rem;
    }

    h3 {
      font-size: 1.1rem;
      color: #414141;
      margin-bottom: 0.4rem;
    }

    .blog-all-date {
      color: #B8B8B8;
      font-size: 0.85rem;
      font-weight: 600;
    }
  }

  &:hover h3 {
    color: #2A94D4;
  }
}

.blog-all-divider {
  border-color: #EBEBEB;
  margin: 0;
}

.blog-all-pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0 4rem;
}

/* MEDIA ASSETS */
.media-section {
  padding: 60px var(--padX);
  background-color: rgba(42, 148, 212, 0.1);
}

.media-brand {
  display: flex;
  gap: 4rem;
  padding: 2rem 0;

  p {
    color: #707070;
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 25px;
  }

  h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .media-brand-left {
    flex: 1;
  }

  .media-brand-right {
    flex: 1;
  }

  .media-logo-img {
    width: 60%;
    margin: 1.5rem 0;
    display: block;
  }
}

.video-subtitle {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #4C4C4C;
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.media-subheading {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: #414141;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.media-desc {
  color: #707070;
  font-family: "Open Sans", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.media-publisher {
  color: #B8B8B8;
  font-family: "Open Sans", sans-serif;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.media-videos-heading {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.media-videos {
  margin-top: 2rem;
  padding: 0 12rem;
}

.media-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.media-video-card {
  background: white;
  border-radius: var(--cardRound);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;

  .media-video-thumb {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #000;

    video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .media-video-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;

    h4 {
      font-size: 1rem;
      margin-bottom: 0.75rem;
    }
  }
}

.media-contact-banner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 2rem 1rem;
  background-color: rgba(42, 148, 212, 0.05);
  margin-top: 2rem;
  margin-left: calc(-1 * var(--padX)) !important;
  margin-right: calc(-1 * var(--padX)) !important;
  border-radius: 0 !important;

  p {
    font-size: 1.1rem;
    color: #414141;
    margin: 0;
  }
}

/*==== MOBILE STYLING ====*/
@media (max-width: 768px) {
  :root {
    --padX: 1.25rem !important;
  }

  .search-container {
    width: 100% !important;
    margin-left: 0 !important;
    order: -1;
  }

  .blogs-hero {
    flex-direction: column !important;
    height: auto !important;
    margin-top: 5rem !important;
    padding-inline: 0 !important;
    gap: 0 !important;

    .img {
      margin-top: 2rem !important;
      order: -1 !important;
      min-width: 91% !important;
      min-height: 200px !important;
      display: block !important;
      border-radius: 5px;
      align-self: center !important;
    }

    h1 {
      font-size: 1.6rem !important;
      letter-spacing: 1px !important;
      margin-bottom: 0.7rem !important;
      font-weight: 300 !important;
    }

    p {
      font-size: 0.9rem !important;
    }

    .info {
      padding: 1.5rem 1.25rem !important;
    }
  }

  .blog-hero-link {
    flex-direction: column !important;
    height: auto !important;
    border-radius: var(--cardRound) !important;
    overflow: hidden !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
    background: white !important;

    .img {
      order: -1 !important;
      width: 100% !important;
      min-width: unset !important;
      height: 220px !important;
      border-radius: 0 !important;
    }

    .info {
      padding: 1.5rem !important;

      h2 {
        font-size: 1rem !important;
        margin-bottom: 1.2rem !important;
        font-weight: 600 !important;
      }

      .read-more {
        font-size: 0.9rem !important;
      }
    }
  }

  .blogs-section {
    padding: 1.5rem !important;

    h2 {
      font-size: 1.6rem !important;
      margin-bottom: 1.5rem !important;
      font-weight: 600 !important;
    }

    .info {
      padding: 1rem 1rem 1rem 1.5rem !important;
    }
  }

  .blog-card {
    .info {
      h2 {
        font-size: 1rem !important;
        margin-bottom: 1.2rem !important;
        font-weight: 600 !important;
      }

      .read-more {
        font-size: 0.9rem !important;
      }
    }
  }

  .blog-grid {
    grid-template-columns: 1fr !important;
  }

  .newsroom {
    margin-top: 1.5rem !important;

    .nav {
      flex-direction: column !important;
      align-items: flex-start !important;
      gap: 0.75rem !important;

      .buttons {
        width: fit-content !important;

        p {
          padding-inline: 14px !important;
          font-size: 0.8rem !important;
          white-space: nowrap !important;
        }
      }
    }
  }

  /* BLOG ALL */
  .blog-all-header {
    padding: 5rem var(--padX) 0.5rem !important;
    background-color: white !important;

    h1 {
      font-size: 1.6rem !important;
    }
  }

  .blog-all-filters {
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    padding: 1rem var(--padX) !important;

    .filter-dropdown {
      display: none !important;
    }
  }

  #topicBtn {
    width: auto !important;
  }

  .filter-dropdown-btn {
    font-size: 0.8rem !important;
    padding: 0.4rem 1rem !important;
  }

  .blog-all-content {
    padding: 1.5rem var(--padX) !important;
  }

  .blog-all-card {
    .blog-all-img {
      height: 120px !important;
    }

    .blog-all-card-body {
      h3 {
        font-size: 0.9rem !important;
      }

      .blog-all-date {
        font-size: 0.75rem !important;
      }
    }
  }

  .blog-all-month-heading {
    font-size: 1.2rem !important;
  }

  .filter-label {
    color: #707070 !important;
    cursor: pointer !important;
    user-select: none !important;

    &::before {
      content: '\f03a';
      font-family: 'Font Awesome 5 Free', sans-serif;
      font-weight: 900;
      margin-right: 0.5rem;
      color: #707070 !important;
    }
  }

  .mobile-filter-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 1000;
    flex-direction: column;
    overflow-y: auto;
    padding-bottom: 4rem !important;

    &.open {
      display: flex;
    }
  }

  .mobile-filter-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    padding: 1rem 1.25rem;
    color: #707070;
    cursor: pointer;
    align-self: flex-start;
    padding-top: 2rem !important;
  }

  .mobile-filter-section {
    border-bottom: 1px solid #EBEBEB;
  }

  .mobile-filter-header {
    width: 100%;
    background: none;
    border: none;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: #414141;
    cursor: pointer;
    text-align: left;
    outline: none !important;

    &:focus,
    &:focus-visible {
      outline: none !important;
      box-shadow: none !important;
    }
  }

  .mobile-filter-plus {
    font-size: 1.25rem;
    color: #707070;
  }

  .mobile-filter-body {
    display: none;
    padding: 0 1.25rem 1rem;

    &.open {
      display: block;
    }

    .filter-checkbox-label {
      font-size: 1.1rem !important;
    }

    .filter-dropdown-menu {
      display: block !important;
      position: static !important;
      border: none !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      padding: 0 !important;
      max-height: none !important;
      outline: none !important;
    }
  }

  .mobile-filter-done {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #2A94D4;
    color: white;
    border: none;
    padding: 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
  }

  /* PRESS */
  .press {
    padding: 1.5rem !important;

    .hero-card {
      flex-direction: column !important;
      height: auto !important;
      border-radius: var(--cardRound) !important;
      overflow: hidden !important;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
      background: white !important;

      .img {
        order: -1 !important;
        width: 100% !important;
        min-width: unset !important;
        height: 220px !important;
        min-height: 220px !important;
        margin-top: 0 !important;
        align-self: stretch !important;
        display: block !important;
      }

      .info {
        padding: 1.5rem !important;
      }
    }

    & .card {
      .info {
        padding: 1.5rem 2rem 2rem 1.3rem;
      }
    }

    .grid {
      grid-template-columns: 1fr !important;
    }

    h1 {
      font-size: 1.6rem !important;
      margin-bottom: 1.5rem !important;
      font-weight: 500 !important;
    }
  }

  .itn-dots {
    display: none !important;
  }

  .itn-controls {
    display: none !important;
  }

  .itn-header {
    h2 {
      font-size: 1.6rem !important;
    }
  }

  /* ITN CAROUSEL, scroll on mobile  */
  .itn-carousel-wrapper {
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;

    &::-webkit-scrollbar {
      display: none !important;
    }
  }

  .itn-card {
    scroll-snap-align: start !important;
    flex-shrink: 0 !important;
  }

  /* PRESS ALL */
  .press-all {
    padding: 5rem var(--padX) 2rem !important;

    h1 {
      font-size: 1.6rem !important;
      margin-bottom: 1.5rem !important;
      padding-top: 0.85rem !important;
    }

    .press-all-cards {
      grid-template-columns: 1fr !important;
      gap: 0 !important;
    }

    .press-all-card {
      flex-direction: row !important;
      gap: 1rem !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      padding: 1.25rem 0 !important;
    }

    .press-all-img {
      width: 40% !important;
      height: 120px !important;
      flex-shrink: 0 !important;
      border-radius: 8px !important;
    }

    .press-all-card-body {
      padding: 0 !important;
    }

    .press-all-subtitle {
      margin-bottom: 0.5rem !important;
    }

    .press-all-date {
      font-weight: 600 !important;
    }
  }

  .press-month-heading {
    font-size: 1.2rem !important;
  }

  /* MEDIA ASSETS */
  .media-section {
    padding: 1.5rem !important;

    h2 {
      font-size: 1.6rem !important;
      margin-bottom: 0.5rem !important;
      font-weight: 500 !important;
    }

    .view-all-btn {
      display: block !important;
      width: 100% !important;
      text-align: center !important;
      box-sizing: border-box !important;
      margin-top: 1.5rem !important;
    }
  }

  .media-videos-heading {
    font-size: 1.6rem !important;
  }

  .media-brand {
    flex-direction: column !important;
    gap: 2rem !important;
    padding-top: 0.9rem !important;

    h3 {
      font-size: 1.2rem !important;
    }
  }

  .media-videos {
    padding: 0 var(--padX) !important;
  }

  .media-video-grid {
    grid-template-columns: 1fr !important;
  }

  .media-video-card {
    border-radius: 10px !important;

    .media-video-info {
      h4 {
        font-size: 1.2rem !important;
      }

      p {
        font-size: 0.9rem !important;
        font-weight: 400 !important;
      }

      .read-more {
        font-size: 0.9rem !important;
      }
    }
  }

  .media-logo-img {
    max-width: 100% !important;
    height: auto !important;
    margin-bottom: 1.5rem !important;
  }

  .media-brand-left,
  .media-brand-right {
    width: 100% !important;
  }

  .media-contact-banner {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1rem !important;
    margin-left: calc(-1 * var(--padX)) !important;
    margin-right: calc(-1 * var(--padX)) !important;
    border-radius: 0 !important;

    p {
      white-space: nowrap !important;
    }

    .view-all-btn {
      width: 100% !important;
    }
  }

  .info {
    p {
      font-size: 0.9rem !important;
    }

    h2 {
      font-size: 1rem !important;
      margin-bottom: 1.5rem !important;
      font-weight: 600 !important;
    }
  }

  .hero-card {
    h2 {
      font-size: 1rem !important;
      margin-bottom: 1.5rem !important;
      font-weight: 600 !important;
    }
  }

  .video-subtitle {
    margin-bottom: 0.75rem !important;
  }
}

/*==== TABLET STYLING ====*/

/* SMALL TABLET iPad Mini + iPad Air + iPad Pro portrait (768px–1024px) */
@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    --padX: 2rem;
  }

  .search-container {
    height: 3rem !important;
    padding: 0 1rem !important;
  }

  /* HERO SECTION */
  body .blogs-hero {
    margin-top: 6rem !important;
  }

  .blogs-hero {
    flex-direction: column !important;
    height: auto !important;
    padding-inline: 0 !important;
    gap: 0.5rem !important;

    .info {
      padding: 0.5rem var(--padX) 1.5rem !important;

      p {
        font-size: 1.2rem !important;
      }
    }

    .img {
      min-width: unset !important;
      width: calc(100% - (2 * var(--padX))) !important;
      margin-left: var(--padX) !important;
      margin-right: var(--padX) !important;
      margin-top: 1.5rem !important;
      order: -1 !important;
      min-height: 280px !important;
      border-radius: 15px !important;
    }
  }

  .blog-hero-link {
    .info {
      padding-left: 2rem !important;

      .read-more {
        font-size: 1rem !important;
      }
    }
  }

  .blog-card {
    .info {
      padding-left: 2rem !important;

      .read-more {
        font-size: 1rem !important;
      }
    }
  }

  .newsroom {
    .nav {
      .buttons {
        p {
          padding-inline: 35px !important;
          font-size: 1.1rem !important;
        }
      }
    }
  }

  /* BLOGS */
  .blogs-section {
    padding-top: 1.5rem !important;

    > h2 {
      font-size: 1.6rem !important;
    }
  }

  .info {
    p {
      font-size: 1rem !important;
    }
  }

  /* PRESS */
  .press {
    padding-top: 1.5rem !important;

    .hero-card {
      .info {
        padding-left: 1.7rem !important;

        .read-more {
          font-size: 1rem !important;
        }
      }
    }

    .card {
      .info {
        padding-left: 2rem !important;

        .read-more {
          font-size: 1rem !important;
        }
      }
    }

    h1 {
      font-size: 1.6rem !important;
      margin-bottom: 1.5rem !important;
    }
  }

  .itn-header {
    h2 {
      font-size: 1.6rem !important;
    }
  }

  /* ITN CAROUSEL scroll on tablet */
  .itn-controls {
    display: none !important;
  }

  .itn-carousel-wrapper {
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;

    &::-webkit-scrollbar {
      display: none !important;
    }
  }

  .itn-card {
    scroll-snap-align: start !important;
    flex-shrink: 0 !important;
  }

  /* CONTACT US */
  .contact-div {
    padding-top: 1rem !important;
  }

  .contact-header {
    padding-inline: 5% !important;
    padding-bottom: 0.5rem !important;

    h4 {
      margin-bottom: 0.5rem !important;
      font-size: 1rem !important;
    }

    h5 {
      text-align: center !important;
    }
  }

  .blog-grid-container {
    grid-template-columns: 1fr !important;
    width: 80% !important;
    margin-top: 2rem !important;
  }

  .blog-box {
    justify-content: center !important;
  }

  .blog-contact-info {
    h1 {
      text-align: center !important;
    }
  }

  /* MEDIA ASSETS */
  .media-logo-img {
    width: 280px !important;
    height: auto !important;
  }

  .media-section {
    padding-top: 1.5rem !important;

    h2 {
      font-size: 1.6rem !important;
    }
  }

  .media-brand {
    padding-top: 0.5rem !important;
  }

  .media-videos {
    padding: 0 2rem !important;
  }

  .media-video-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .media-contact-banner {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
    border-radius: 0 !important;
  }

  .media-video-card {
    .media-video-info {
      h4 {
        font-size: 1.3rem !important;
      }

      .read-more {
        font-size: 1rem !important;
      }
    }
  }

  .media-desc {
    font-size: 1.1rem !important;
  }

  .media-publisher {
    font-size: 1rem !important;
  }

  .video-subtitle {
    font-size: 1rem !important;
  }
}

/* LARGE TABLET iPad Air landscape + iPad Pro landscape (1025px–1366px) */
@media (min-width: 1024px) and (max-width: 1366px) {
  :root {
    --padX: 4rem;
  }

  .search-container {
    height: 3rem !important;
    padding: 0 1rem !important;
    font-size: 1.1rem !important;
  }

  /* BLOGS */
  /* HERO SECTION */
  .blogs-hero {
    flex-direction: column !important;
    height: auto !important;
    margin-top: 8rem !important;
    padding-inline: 0 !important;
    gap: 0.5rem !important;

    .info {
      padding: 0.5rem var(--padX) 1.5rem !important;

      p {
        font-size: 1.3rem !important;
      }
    }

    .img {
      min-width: unset !important;
      width: calc(100% - (2 * var(--padX))) !important;
      margin-left: var(--padX) !important;
      margin-right: var(--padX) !important;
      margin-top: 1.5rem !important;
      order: -1 !important;
      min-height: 280px !important;
      border-radius: 15px !important;
    }
  }

  .blog-hero-link {
    .info {
      h2 {
        font-size: 1.3rem !important;
      }

      p {
        font-size: 1.1rem !important;
      }

      .read-more {
        font-size: 1rem !important;
      }
    }
  }

  .blog-card {
    .info {
      h2 {
        font-size: 1.3rem !important;
      }

      p {
        font-size: 1.1rem !important;
      }

      .read-more {
        font-size: 1rem !important;
      }
    }
  }

  .blog-tag {
    padding: 6px 18px !important;
    font-size: 0.9rem !important;
  }

  .blog-all-header {
    padding-top: 8rem !important;
  }

  .newsroom {
    .nav {
      .buttons {
        p {
          padding-inline: 35px !important;
          font-size: 1.1rem !important;
        }
      }
    }
  }

  /* CONTACT US */
  .blog-grid-container {
    width: 90% !important;
  }

  /* PRESS */
  .press {
    .hero-card {
      .info {
        h2 {
          font-size: 1.3rem !important;
        }

        p {
          font-size: 1.1rem !important;
        }

        .read-more {
          font-size: 1rem !important;
        }
      }
    }

    .card {
      .info {
        h2 {
          font-size: 1.3rem !important;
        }

        p {
          font-size: 1.1rem !important;
        }

        .read-more {
          font-size: 1rem !important;
        }
      }
    }

    h1 {
      font-size: 2rem !important;
    }
  }

  .view-all-btn {
    padding: 10px 60px !important;
    font-size: 1.1rem !important;
  }

  /* ITN CAROUSEL scroll on large tablet */
  .itn-controls {
    display: none !important;
  }

  .itn-carousel-wrapper {
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;

    &::-webkit-scrollbar {
      display: none !important;
    }
  }

  .itn-card {
    scroll-snap-align: start !important;
    flex-shrink: 0 !important;
  }

  .itn-date {
    font-size: 1rem !important;
  }

  .itn-subtitle {
    font-size: 1rem !important;
  }

  /* MEDIA ASSETS */
  .media-videos {
    padding: 0 5rem !important;
  }

  .media-section {
    h2 {
      font-size: 2rem !important;
    }
  }

  .media-video-card {
    .media-video-info {
      h4 {
        font-size: 1.3rem !important;
      }

      .read-more {
        font-size: 1.1rem !important;
      }
    }
  }

  .media-desc {
    font-size: 1.2rem !important;
  }

  .media-publisher {
    font-size: 1rem !important;
  }

  .video-subtitle {
    font-size: 1.1rem !important;
  }

  .media-contact-banner {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
    border-radius: 0 !important;
    justify-content: space-between !important;
    padding: 2rem 6rem !important;
  }

  .media-subheading {
    font-size: 1.2rem !important;
  }
}

/*==== MONITOR STYLING ====*/
@media (min-width: 1921px) {
  :root {
    --padX: 220px;
  }

  .search-container {
    height: 3rem !important;
    padding: 0 1.4rem !important;
  }

  /* BLOGS */
  .blogs-hero {
    .info {
      h1 {
        font-size: 3rem !important;
      }

      p {
        font-size: 1.2rem !important;
      }
    }
  }

  .blogs-section {
    > h2 {
      font-size: 2.5rem !important;
    }
  }

  .blog-hero-link {
    .info {
      h2 {
        font-size: 1.6rem !important;
      }

      p {
        font-size: 1.2rem !important;
      }
    }
  }

  .blog-card {
    .info {
      h2 {
        font-size: 1.6rem !important;
      }

      p {
        font-size: 1.2rem !important;
      }
    }
  }

  .blog-tag {
    padding: 6px 18px !important;
    font-size: 1rem !important;
  }

  .view-all-btn {
    padding: 10px 80px !important;
    font-size: 1.3rem !important;
  }

  .newsroom {
    .nav {
      .buttons {
        p {
          padding-inline: 40px !important;
          font-size: 1.3rem !important;
        }
      }
    }
  }

  .blog-all-card {
    .blog-all-card-body {
      h3 {
        font-size: 1.4rem !important;
      }

      .blog-all-date {
        font-size: 1rem !important;
      }
    }
  }

  /* PRESS SECTION */
  .press {
    .hero-card {
      .info {
        h2 {
          font-size: 1.6rem !important;
        }

        p {
          font-size: 1.1rem !important;
        }
      }
    }

    .card {
      .info {
        h2 {
          font-size: 1.6rem !important;
        }

        p {
          font-size: 1.1rem !important;
        }
      }
    }
  }

  .itn-header {
    h2 {
      font-size: 2.5rem !important;
    }
  }

  .in-the-news {
    .itn-card {
      .itn-card-body {
        h3 {
          font-size: 1.4rem !important;
        }
      }
    }
  }

  .itn-card {
    height: 600px !important;
  }

  .itn-subtitle {
    font-size: 1.1rem !important;
  }

  .itn-date {
    font-size: 1rem !important;
  }

  .press-all-card {
    .press-all-card-body {
      h3 {
        font-size: 1.4rem !important;
      }
    }
  }

  .press-all-subtitle {
    font-size: 1rem !important;
  }

  .press-all-date {
    font-size: 1rem !important;
  }

  /* MEDIA ASSETS */
  .media-section {
    h2 {
      font-size: 2.5rem !important;
    }
  }

  .media-subheading {
    font-size: 1.8rem !important;
  }

  .media-videos-heading {
    font-size: 2.5rem !important;
  }

  .media-desc {
    font-size: 1.3rem !important;
  }

  .video-subtitle {
    font-size: 1.5rem !important;
  }

  .media-video-card {
    .media-video-info {
      h4 {
        font-size: 1.4rem !important;
      }

      .read-more {
        font-size: 1.3rem !important;
      }
    }
  }

  .media-publisher {
    font-size: 1.2rem !important;
  }
}



