    :root {
    --titleSizeMobile: 28px;
    --lineHeightMobile: 32px;
  
    --titleSizeTablet: 30px;
    --lineHeightTablet: 36px;
  
    --titleSizeDesktop: 32px;
    --lineHeightDesktop: 36px;
  }
  
  /* --------------------- DISPLAY 2 CATEGORIES COMPONENT CSS STYLES --------------------- */
  
  /* --- MOBILE AND GENERAL STYLES --- */
  
  .sportLp__section-title {
    font-family: "Roboto Condensed", sans-serif;
    /*text-transform: uppercase;*/
    color: #242323;
    font-size: 28px;
    line-height: 32px;
    padding: 14px 20px;
    font-weight: bold;
  }
  
  .two-categories {
    /*border: 1px solid red;*/
    font-family: "Roboto Condensed", sans-serif;
    padding: 0 10px 0 10px;
    box-sizing: border-box;
    margin: 0 0;
  }
  
  .two-categories .title-container {
    /*border: 1px solid blue;*/
    display: flex;
    justify-content: space-between;
    padding: 14px 20px;
    margin-bottom: 16px;
  }
  
  .two-categories .title-container h3 {
    border-top: none;
    text-transform: capitalize;
    color: #242323;
    font-size: var(--titleSizeMobile);
    line-height: var(--lineHeightMobile);
  }
  
  .two-categories .title-container__cta {
    text-decoration: none;
    color: #fff;
    background-color: #0082c3;
    padding: 8px 12px;
    text-transform: uppercase;
    font-size: 13px;
    display: inline-block;
    border-radius: 6px;
    transition: all 300ms ease-out;
    margin-top: auto;
    text-align: center;
  }
  .two-categories .title-container__cta:hover {
    color: #fff;
    background-color: #004876;
  }
  
  .two-categories .category {
    /* border: 1px solid green;*/
    height: 150px;
    margin-bottom: 18px;
    position: relative;
    -webkit-box-shadow: -1px 4px 15px -2px rgba(0, 0, 0, 0.35);
    box-shadow: -1px 4px 15px -2px rgba(0, 0, 0, 0.35);
  }
  
  .two-categories .first-category {
    /*background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));*/
    background-size: cover;
    background-position: center;
  }
  .two-categories .second-category {
    /*background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));*/
    background-size: cover;
    background-position: center;
  }
  
  .two-categories .category-content {
    /*border: 1px solid yellow;*/
    width: auto;
    height: auto;
    position: absolute;
    bottom: 0;
    padding: 14px 0 0 0;
  }
  
  .two-categories .category__title {
   /* text-transform: uppercase; */
    font-size: 18px;
    color: #fff;
    background-color: #0082c3;
    margin-bottom: 20px;
    padding: 4px 34px 4px 24px;
    clip-path: polygon(0 0, 100% 0%, 89% 100%, 0% 100%);
  }
  
  /* --- TABLET STYLES --- */
  @media (min-width: 760px) {
    .sportLp__section-title {
      font-size: 30px;
      line-height: 36px;
    }
    .two-categories .category {
      height: 210px;
    }
  
    .two-categories .title-container h3 {
      font-size: var(--titleSizeTablet);
      line-height: var(--lineHeightTablet);
    }
  
    .two-categories .title-container__cta {
      font-size: 12px;
    }
    .two-categories .categories-container {
      /*border: 1px solid yellowgreen;*/
      display: flex;
      justify-content: space-between;
      padding: 0 0;
    }
  
    .two-categories .categories-container a {
      display: block;
      width: 45%;
      transition: all 300ms ease-out;
    }
    .two-categories .categories-container a:hover {
      transform: scale(1.05);
    }
  }
  
  /* --- DESKTOP STYLES --- */
  @media (min-width: 1200px) {
    .sportLp__section-title {
      font-size: 32px;
      line-height: 36px;
      margin-left: 83px;
    }
    .two-categories {
      margin: 0 auto;
      width: 90%;
    }
    .two-categories .title-container {
      margin-bottom: 5px;
      padding: 14px 50px;
    }
  
    .two-categories .title-container h3 {
      font-size: var(--titleSizeDesktop);
      line-height: var(--lineHeightDesktop);
    }
  
  
    .two-categories .title-container__cta {
      /* padding: 8px 10px 0 10px; */
    }
  }
  /* --------------------- DISPLAY 3 CATEGORIES COMPONENT CSS STYLES --------------------- */
  
  /* --- MOBILE AND GENERAL STYLES --- */
  .sportLp__section-title {
    font-family: "Roboto Condensed", sans-serif;
    /*text-transform: uppercase;*/
    color: #242323;
    font-size: 28px;
    line-height: 32px;
    padding: 14px 20px;
    font-weight: bold;
  }
  
  .three-categories {
    /*border: 1px solid red;*/
    font-family: "Roboto Condensed", sans-serif;
    padding: 0 10px 0 10px;
    box-sizing: border-box;
    margin: 0 0;
  }
  
  .three-categories .title-container {
    /*border: 1px solid blue;*/
    display: flex;
    justify-content: space-between;
    padding: 14px 20px;
    margin-bottom: 16px;
  }
  
  .three-categories .title-container h3 {
    border-top: none;
    text-transform: capitalize;
    color: #242323;
    font-size: var(--titleSizeMobile);
    line-height: var(--lineHeightMobile);
  }
  
  .three-categories .title-container__cta {
    text-decoration: none;
    color: #fff;
    background-color: #0082c3;
    padding: 8px 12px;
    text-transform: uppercase;
    font-size: 13px;
    display: inline-block;
    border-radius: 6px;
    margin-top: auto;
    text-align: center;
    transition: all 300ms ease-out;
  }
  .three-categories .title-container__cta:hover {
    color: #fff;
    background-color: #004876;
  }
  
  .three-categories .category {
    /* border: 1px solid green;*/
    height: 150px;
    margin-bottom: 18px;
    position: relative;
    -webkit-box-shadow: -1px 4px 15px -2px rgba(0, 0, 0, 0.35);
    box-shadow: -1px 4px 15px -2px rgba(0, 0, 0, 0.35);
  }
  
  .three-categories .first-category {
    /*background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));*/
    background-size: cover;
    background-position: center;
  }
  .three-categories .second-category {
    /*background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));*/
    background-size: cover;
    background-position: center;
  }
  
  .three-categories .third-category {
    /*background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));*/
    background-size: cover;
    background-position: center;
  }
  
  .three-categories .category-content {
    /*border: 1px solid yellow;*/
    width: auto;
    height: auto;
    position: absolute;
    bottom: 0;
    padding: 14px 0 0 0;
  }
  
  .three-categories .category__title {
   /* text-transform: uppercase; */
    font-size: 18px;
    color: #fff;
    background-color: #0082c3;
    margin-bottom: 20px;
    padding: 4px 34px 4px 24px;
    clip-path: polygon(0 0, 100% 0%, 89% 100%, 0% 100%);
  }
  
  /* --- TABLET STYLES --- */
  @media (min-width: 760px) {
    .sportLp__section-title {
      font-size: 30px;
      line-height: 36px;
    }
    .three-categories .category {
      height: 210px;
    }
  
    .three-categories .title-container h3 {
      font-size: var(--titleSizeTablet);
      line-height: var(--lineHeightTablet);
    }
  
    .three-categories .title-container__cta {
      font-size: 12px;
    }

    .three-categories .categories-container {
      /*border: 1px solid yellowgreen;*/
      display: flex;
      justify-content: space-between;
      padding: 0 0;
    }
  
    .three-categories .categories-container a {
      display: block;
      width: 31%;
      transition: all 300ms ease-out;
    }
    .three-categories .categories-container a:hover {
      transform: scale(1.05);
    }
  }
  
  /* --- DESKTOP STYLES --- */
  @media (min-width: 1200px) {
    .sportLp__section-title {
      font-size: 32px;
      line-height: 36px;
      margin-left: 83px;
    }
  
    .three-categories {
      margin: 0 auto;
      width: 90%;
    }
    .three-categories .title-container {
      margin-bottom: 5px;
      padding: 14px 50px;
    }
  
    .three-categories .title-container h3 {
      font-size: var(--titleSizeDesktop);
      line-height: var(--lineHeightDesktop);
    }
  

  
    .three-categories .title-container__cta {
      /*padding: 8px 10px 0 10px;*/
    }
  }
  
  /* --------------------- DISPLAY 4 CATEGORIES COMPONENT CSS STYLES --------------------- */
  
  /* --- MOBILE AND GENERAL STYLES --- */
  .sportLp__section-title {
    font-family: "Roboto Condensed", sans-serif;
    /*text-transform: uppercase;*/
    color: #242323;
    font-size: 28px;
    line-height: 32px;
    padding: 14px 20px;
    font-weight: bold;
  }
  .four-categories {
    /*border: 1px solid red;*/
    font-family: "Roboto Condensed", sans-serif;
    padding: 0 10px 0 10px;
    box-sizing: border-box;
    margin: 0 0;
  }
  
  .four-categories .title-container {
    /*border: 1px solid blue;*/
    display: flex;
    justify-content: space-between;
    padding: 14px 20px;
    margin-bottom: 16px;
  }
  
  .four-categories .title-container h2 {
    border-top: none;
    /*text-transform: uppercase;*/
    color: #242323;
    font-size: var(--titleSizeMobile);
    line-height: var(--lineHeightMobile);
  }
  
  .four-categories .title-container__cta {
    text-decoration: none;
    color: #fff;
    background-color: #0082c3;
    padding: 8px 12px;
    text-transform: uppercase;
    font-size: 13px;
    display: inline-block;
    border-radius: 6px;
    margin-top: auto;
    text-align: center;
    transition: all 300ms ease-out;
  }
  .four-categories .title-container__cta:hover {
    color: #fff;
    background-color: #004876;
  }
  
  .four-categories .category {
    /* border: 1px solid green;*/
    height: 150px;
    margin-bottom: 18px;
    position: relative;
    -webkit-box-shadow: -1px 4px 15px -2px rgba(0, 0, 0, 0.35);
    box-shadow: -1px 4px 15px -2px rgba(0, 0, 0, 0.35);
  }
  
  .four-categories .first-category {
    /*background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));*/
    background-size: cover;
    background-position: center;
  }
  .four-categories .second-category {
    /*background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));*/
    background-size: cover;
    background-position: center;
  }
  
  .four-categories .third-category {
    /*background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));*/
    background-size: cover;
    background-position: center;
  }
  
  .four-categories .fourth-category {
    /*background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));*/
    background-size: cover;
    background-position: center;
  }
  
  .four-categories .category-content {
    /*border: 1px solid yellow;*/
    width: auto;
    height: auto;
    position: absolute;
    bottom: 0;
    padding: 14px 0 0 0;
    max-width: 100%;
  }
  
  .four-categories .category__title {
    /*text-transform: uppercase;*/
    font-size: 18px;
    color: #fff;
    background-color: #0082c3;
    margin-bottom: 20px;
    padding: 4px 34px 4px 24px;
    clip-path: polygon(0 0, 100% 0%, 89% 100%, 0% 100%);
  }
  
  /* --- TABLET STYLES --- */
  @media (min-width: 760px) {
    .sportLp__section-title {
      font-size: 30px;
      line-height: 36px;
    }
    .four-categories .category {
      height: 210px;
    }
  
    .four-categories .title-container h2 {
      font-size: var(--titleSizeTablet);
      line-height: var(--lineHeightTablet);
    }
  
    .four-categories .title-container__cta {
      font-size: 12px;
    }

    .four-categories .categories-container {
      /*border: 1px solid yellowgreen;*/
      display: flex;
      justify-content: space-between;
      padding: 0 0;
    }
  
    .four-categories .categories-container a {
      display: block;
      width: 24%;
      transition: all 300ms ease-out;
    }
    .four-categories .categories-container a:hover {
      transform: scale(1.05);
    }
  }
  
  /* --- DESKTOP STYLES --- */
  @media (min-width: 1200px) {
    .sportLp__section-title {
      font-size: 32px;
      line-height: 36px;
      margin-left: 83px;
    }
    .four-categories {
      margin: 0 auto;
      width: 90%;
    }
    .four-categories .title-container {
      margin-bottom: 5px;
      padding: 14px 50px;
    }
  
    .four-categories .title-container h2 {
      font-size: var(--titleSizeDesktop);
      line-height: var(--lineHeightDesktop);
    }
  

  
    .four-categories .title-container__cta {
      /* padding: 8px 10px 0 10px; */
    }
  }
  


  /* ### START RESKIN OVERRIDES ### */
    .two-categories,
      .three-categories,
      .four-categories {
        font-family: inherit !important;
      }
    .two-categories .category__title,
      .three-categories .category__title,
      .four-categories .category__title {
        background-color: #3643BA !important;
      }
  /* ### END RESKIN OVERRIDES ### */