/* Sections Section */
.site-map-section .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.site-map-section .title {
  font-family: Ubuntu;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  color: #353535;
}

.site-map-section .panel {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.site-map-section .nav-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.site-map-section .section-title {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  text-align: left;
  color: #353535;
}

.site-map-section .nav-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-map-section .nav-items a {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 300;
  line-height: 20.8px;
  text-align: left;
  color: #353535;
}

@media (min-width: 1280px) {
  .site-map-section .container {
    width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  
  .site-map-section .title {
    font-family: Ubuntu;
    font-size: 52px;
    font-weight: 400;
    line-height: 58px;
    text-align: left;
    color: #353535;
  }
  
  .site-map-section .panel {
    width: 1200px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 36px;
  }
  
  .site-map-section .nav-section {
    width: 376px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .site-map-section .section-title {
    font-family: Ubuntu;
    font-size: 24px;
    font-weight: 400;
    line-height: 31.2px;
    text-align: left;
    color: #353535;
  }
  
  .site-map-section .nav-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .site-map-section .nav-items a {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 300;
    line-height: 20.8px;
    letter-spacing: 0.16px;
    text-align: left;
    color: #353535;
    display: inline-block;
    transition: text-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
  }

  .site-map-section .nav-items a:hover {
    text-shadow: 0 0 0.3px currentColor, 0 0 0.3px currentColor;
    transform: scale(1.01);
  }

  .site-map-section .nav-items a {
    will-change: transform, text-shadow;
  }
  
  .site-map-section .nav-items a:active {
    color: #DF0611;
  }

  .site-map-section .panel .nav-section:nth-child(n+4) {
    margin-top: 44px;
  }
}
