/* Universal breakpoints */
@media (min-width: 1280px) {
  .in-the-news-carousel {
    margin: 0 40px; } }

.in-the-news-carousel .swiper-wrapper {
  margin-bottom: 40px; }

.in-the-news-carousel .swiper-slide {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 2px; }
  @media (min-width: 1280px) {
    .in-the-news-carousel .swiper-slide {
      height: auto;
      flex-direction: row;
      justify-content: center; } }
  .in-the-news-carousel .swiper-slide a {
    text-decoration: none; }
    @media (max-width: 1279px) {
      .in-the-news-carousel .swiper-slide a {
        width: -moz-fit-content;
        width: fit-content;
        margin: auto;
        max-width: calc(100% - 40px); } }
    .in-the-news-carousel .swiper-slide a:focus-visible .news-tile {
      outline: 2px solid #fbc600;
      outline-offset: 0px; }
  .in-the-news-carousel .swiper-slide .news-tile {
    height: 100%;
    box-sizing: border-box;
    position: relative;
    min-width: 390px;
    background-color: white;
    border-radius: 8px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: space-between; }
    @media (max-width: 1279px) {
      .in-the-news-carousel .swiper-slide .news-tile {
        width: 500px;
        min-width: auto;
        max-width: 100%;
        margin: auto;
        padding: 16px 20px;
        gap: 30px; } }
    .in-the-news-carousel .swiper-slide .news-tile p {
      margin-top: 16px;
      font-size: 16px; }
      @media (min-width: 1280px) {
        .in-the-news-carousel .swiper-slide .news-tile p {
          margin-top: 20px;
          font-size: 20px; } }
    .in-the-news-carousel .swiper-slide .news-tile button {
      width: 100%;
      font-size: 16px; }
      .in-the-news-carousel .swiper-slide .news-tile button:active, .in-the-news-carousel .swiper-slide .news-tile button:focus, .in-the-news-carousel .swiper-slide .news-tile button:hover {
        border: 2px solid #3b3d49;
        background-color: #3b3d49;
        color: white;
        transition: all 200ms ease-in-out; }

.in-the-news-carousel .in-the-news-pagination {
  display: flex;
  gap: 20px;
  justify-content: center; }

.in-the-news-carousel .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: white;
  opacity: 0.5;
  transition: all 0.1s ease-in-out; }
  .in-the-news-carousel .swiper-pagination-bullet:hover {
    opacity: 1; }
  .in-the-news-carousel .swiper-pagination-bullet-active {
    width: 40px;
    opacity: 1;
    border-radius: 5px;
    background-color: #fbc600; }
