/* Resources page specific styles */
  .resources-page {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
  }
  .container-resources{
    padding-top: 50px;
  }
  
  .year-nav {
    padding: 0px;
  }
  .year-filter-desktop {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    justify-content: center;
    margin-bottom: 10px;
  }
  .year-btn {
    appearance: none;
    border: 0;
    background: none;
    color: var(--global--color-drank-grey);
    font-size: 16px;
    line-height: 21px;
    padding: 0 0 2px;
    cursor: pointer;
    position: relative;
    pointer-events: auto;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .year-btn:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: var(--global--color-cristal-blue);
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
            transform-origin: right center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    pointer-events: none;
  }
  .year-btn:hover{
    color: var(--global--color-cristal-blue);
  }
  .year-btn:hover:before{
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center;
  }
  .year-btn.active {
    color: var(--global--color-cristal-blue);
  }
  .year-btn.active:before{
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center;
  }
  .nav-arrow {
    transform: rotate(-16.389deg);
    margin-top: 8px;
    margin-left: 140px;
  }
  
  .grid {
    display: grid;
    gap: 25px;
    justify-items: stretch;
  }
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  @media (min-width: 640px) {
    .grid-4 {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (min-width: 1024px) {
    .grid-4 {
      grid-template-columns: repeat(4, 1fr);
      grid-column-gap: 25px;
      grid-row-gap: 100px
    }
  }
  
  .card-resource {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    max-width: none;
  }
  .image-wrap {
    position: relative;
    height: 400px;
    width: 100%;
    overflow: hidden;
  }
  .image-wrap img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
  }
  .image-wrap:hover img {
    transform: scale(1.05);
  }
  .download {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--global--color-light-grey-bg);
    padding: 20px 24px;
    color: var(--global--color-cristal-blue);
    text-decoration: none;
    font-size: 16px;
    line-height: 21px;
  }
  .dot-download {
    width: 21px;
    height: 21px;
    display: inline-block;
    vertical-align: top;
    border: 1px solid var(--global--color-drank-grey);
    border-radius: 100%;
    position: relative;
  }
  
  .dot-download:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: scale(0.263);
    background-color: var(--global--color-drank-grey);
    border-radius: 100%;
    animation-duration: 0.8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
    will-change: transform;
  }
  
  .download:hover .dot-download:before {
    animation-name: rippleWith;
  }
  
  .dot-download:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translate3d(-50%, -50%, 0);
    border: 3px solid var(--global--color-drank-grey);
    border-radius: 100%;
    opacity: 0;
    animation-duration: 0.8s;
    animation-delay: 0.4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
    will-change: transform, opacity;
  }
  
  .download:hover .dot-download:after {
    animation-name: ripple;
  }
  .card-resource h3 {
    margin: 0;
    color: var(--global--color-black);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
  }
  
  .gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 120px;
  }
  .gallery-main {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  .gallery-side {
    display: flex;
    gap: 0;
  }
  .gallery-side img {
    width: 100%;
    object-fit: cover;
  }
  @media (min-width: 1024px) {
    .gallery {
      flex-direction: row;
      align-items: center;
      height: 394px;
    }
    .gallery-main {
      width: 805px;
      height: 394px;
    }
    .gallery-side {
      flex-direction: row;
    }
    .gallery-side img {
      width: 275px;
      height: 394px;
    }
  }
  
  @media (max-width: 767.98px) {
    .year-nav{
      margin-top: -14px;
    }    
    /* Hide desktop filter on mobile */
    .year-filter-desktop {
      display: none;
    }
    
    /* Show mobile filter */
    .year-filter-mobile {
      display: block;
    }
    
    /* Mobile dropdown styles*/
    .year-dropdown {
      position: relative;
      width: 100%;
      max-width: 100%;
    }
    
    .year-dropdown-toggle {
      width: 100%;
      padding: 15px 16px;
      border: 0;
      border-bottom: 1px solid var(--global--color-light-grey);
      background: var(--global--color-white);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 21px;
      color: #101010;
      text-align: left;
    }
    
    .year-current-text {
      flex: 1;
      text-align: left;
      color: var(--global--color-cristal-blue);
    }
    
    .year-dropdown-arrow {
      transition: transform 0.3s ease;
    }
    
    .year-dropdown-toggle[aria-expanded="true"] .year-dropdown-arrow {
      transform: rotate(180deg);
    }
    
    .year-dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--global--color-white);
      border: 1px solid var(--global--color-light-grey);
      border-top: none;
      list-style: none;
      margin: 0;
      padding: 0;
      z-index: 1000;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .year-dropdown-menu.active {
      max-height: 350px;
      opacity: 1;
    }
    
    .year-dropdown-item {
      margin: 0;
    }
    
    .year-dropdown-link {
      display: block;
      padding: 16px 20px;
      text-decoration: none;
      color: #101010;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 21px;
      transition: all 0.3s ease;
      border-bottom: 1px solid var(--global--color-light-grey);
    }
    
    .year-dropdown-link:last-child {
      border-bottom: none;
    }
    
    .year-dropdown-link:hover {
      color: var(--global--color-cristal-blue);
    }
    
    .year-dropdown-link.active {
      color: var(--global--color-cristal-blue);
    }
    .grid{
      gap: 40px;
    }
    .download{
      padding: 10px 16px;
    }
    .container-resources{
      padding: 50px 15px 0 15px;
    }
  }
  @media (min-width: 768px) {
    .year-filter-mobile {
      display: none;
    }
  }
  @media (min-width: 768px) and (max-width: 1023.98px) {
    .grid-4 {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  