.navbar-header {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 50;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 3.5rem;
  padding-right: 3.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 80px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.navbar-header.homepage-top {
  background: transparent !important;
  box-shadow: none !important;
}
.navbar-header .navbar-container {
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.navbar-header .navbar-logo img {
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}
.navbar-header .navbar-search-container {
  position: relative;
}
.navbar-header .navbar-search {
  background: #f2f2f3;
  border-radius: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 60px 13px 60px;
  height: 50px;
  position: relative;
}
.navbar-header .navbar-search .search-icon {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b3b4b6;
}
.navbar-header .navbar-search input {
  font-family: "Verdana Pro", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  background: transparent;
  border: none;
  outline: none;
  flex-grow: 1;
}
.navbar-header .navbar-search input::-moz-placeholder {
  color: #6d6d6d;
}
.navbar-header .navbar-search input::placeholder {
  color: #6d6d6d;
}
.navbar-header .navbar-search input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
.navbar-header .navbar-search input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}
.navbar-header .navbar-search .clear-button {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #F2F2F3;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.navbar-header .navbar-search .clear-button:hover {
  background: #e5e6e7;
}
.navbar-header .navbar-search .clear-button svg {
  width: 24px;
  height: 24px;
  color: #000000;
  stroke-width: 2;
}
.navbar-header .navbar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar-header .navbar-nav .nav-item {
  position: relative;
}
.navbar-header .navbar-nav .nav-item .nav-link {
  font-family: "Verdana Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.navbar-header .navbar-nav .nav-item .nav-link:hover {
  background-color: #f9f9f9;
}
.navbar-header .navbar-nav .nav-item .nav-link svg {
  color: #000000;
}
.navbar-header .navbar-nav .nav-item .nav-dropdown {
  list-style: none;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
  margin-top: 8px;
}
.navbar-header .navbar-nav .nav-item .nav-dropdown-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 6px;
  padding: 12px 15px;
  font-family: "Verdana Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.navbar-header .navbar-nav .nav-item .nav-dropdown-item:hover {
  background-color: #f9f9f9;
}
.navbar-header .navbar-nav .nav-item .nav-dropdown-item:before {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3px;
}
.navbar-header .navbar-nav .nav-item .info:before {
  content: url("../images/nav-icons/info.svg");
}
.navbar-header .navbar-nav .nav-item .danger:before {
  content: url("../images/nav-icons/danger.svg");
}
.navbar-header .navbar-nav .nav-item .map:before {
  content: url("../images/nav-icons/map.svg");
}
.navbar-header .navbar-nav .nav-item .message:before {
  content: url("../images/nav-icons/message.svg");
}
.navbar-header .navbar-nav .nav-item .paper:before {
  content: url("../images/nav-icons/paper.svg");
}
.navbar-header .navbar-nav .nav-item .search:before {
  content: url("../images/nav-icons/search.svg");
}
.navbar-header .navbar-nav .nav-item .show:before {
  content: url("../images/nav-icons/show.svg");
}
.navbar-header .navbar-nav .nav-item .expect:before {
  content: url("../images/nav-icons/expect.svg");
}
.navbar-header .navbar-nav .nav-item:hover .nav-dropdown, .navbar-header .navbar-nav .nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar-logo {
  transition: all 0.3s ease;
}
.navbar-logo img {
  transition: all 0.3s ease;
}

.homepage-top .navbar-nav .nav-item .nav-link {
  color: #ffffff;
  background-color: transparent;
}
.homepage-top .navbar-nav .nav-item .nav-link svg {
  color: #ffffff;
}
.homepage-top .navbar-nav .nav-item .nav-link:hover {
  background-color: transparent;
}
@media (min-width: 769px) {
  .homepage-top .navbar-logo img {
    margin-left: -1.5rem;
    margin-top: 1rem;
    height: 6rem;
    width: 6rem;
  }
}

.main_wrap {
  margin-top: 80px;
}

.home .main_wrap {
  margin-top: 0px;
}

.burger-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  flex-shrink: 0;
}
.burger-menu-btn .burger-line {
  width: 24px;
  height: 2px;
  background: #000000;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.burger-menu-btn.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.burger-menu-btn.active .burger-line:nth-child(2) {
  opacity: 0;
}
.burger-menu-btn.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.homepage-top .burger-menu-btn .burger-line {
  background: #ffffff !important;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  z-index: 999;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0s linear 0.3s;
  overflow-y: auto;
}
.mobile-menu-overlay.active {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.3s ease, visibility 0s linear 0s;
}
.mobile-menu-overlay .mobile-menu-content {
  padding: 20px;
}
.mobile-menu-overlay .mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f2f2f3;
}
.mobile-menu-overlay .close-menu-btn {
  width: 40px;
  height: 40px;
  background: #f2f2f3;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.mobile-menu-overlay .close-menu-btn:hover {
  background: #e5e6e7;
}
.mobile-menu-overlay .close-menu-btn svg {
  width: 24px;
  height: 24px;
  color: #000000;
  stroke-width: 2;
}
.mobile-menu-overlay .mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu-overlay .mobile-nav-item {
  border-bottom: 1px solid #f2f2f3;
}
.mobile-menu-overlay .mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  font-family: "Verdana Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}
.mobile-menu-overlay .mobile-nav-link.has-submenu .submenu-arrow {
  width: 20px;
  height: 20px;
  color: #6d6d6d;
  transition: transform 0.3s ease;
}
.mobile-menu-overlay .mobile-nav-link.active .submenu-arrow {
  transform: rotate(90deg);
}
.mobile-menu-overlay .mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  list-style: none;
  margin: 0;
  padding-left: 16px;
}
.mobile-menu-overlay .mobile-submenu.active {
  max-height: 500px;
}
.mobile-menu-overlay .mobile-submenu-item {
  display: block;
  padding: 12px 0;
  font-family: "Verdana Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #222;
  text-decoration: none;
}
.mobile-menu-overlay .mobile-submenu-item:hover {
  color: #000000;
}

@media (max-width: 1024px) {
  .navbar-header .navbar-search {
    max-width: 400px;
  }
  .navbar-header .navbar-nav {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .navbar-header {
    height: 70px;
    padding: 12px 20px;
  }
  .navbar-header .navbar-container {
    gap: 12px;
    width: 100%;
    justify-content: space-between;
  }
  .navbar-header .navbar-logo {
    order: 1;
  }
  .navbar-header .navbar-search-container {
    order: 2;
    flex-grow: 1;
    max-width: calc(100% - 140px);
  }
  .navbar-header .navbar-search {
    padding: 10px 50px 10px 40px;
    height: 44px;
    overflow: hidden;
  }
  .navbar-header .navbar-search input {
    font-size: 16px;
  }
  .navbar-header .navbar-search .search-icon {
    left: 12px;
    width: 20px;
    height: 20px;
  }
  .navbar-header .navbar-search .clear-button {
    right: 8px;
    width: 32px;
    height: 32px;
  }
  .navbar-header .navbar-nav {
    display: none !important;
  }
  .navbar-header .burger-menu-btn {
    display: flex;
    order: 3;
  }
  .main_wrap {
    margin-top: 70px;
  }
  .home .main_wrap {
    margin-top: 0px;
  }
}
.greenways_archive {
  padding: 5rem;
}
@media not all and (min-width: 1280px) {
  .greenways_archive {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media not all and (min-width: 768px) {
  .greenways_archive {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.greenways_archive .top_section {
  margin-bottom: 5rem;
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.greenways_archive .top_section h1 {
  font-size: 3rem;
  line-height: 1;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 147 68 / var(--tw-text-opacity));
}
@media not all and (min-width: 768px) {
  .greenways_archive .top_section h1 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.greenways_archive .top_section .map_btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
  --tw-bg-opacity: 1;
  background-color: rgb(229 244 236 / var(--tw-bg-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(1 121 53 / var(--tw-text-opacity));
}
.greenways_archive .top_section .map_btn:hover {
  opacity: 0.8;
}
.greenways_archive .main_content {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .greenways_archive .main_content {
    gap: 6rem;
  }
}
@media (max-width: 1023px) {
  .greenways_archive .main_content {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
  }
}
.greenways_archive .main_content #greenways-results {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.greenways_archive .main_content .greenway_item {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}
@media (max-width: 640px) {
  .greenways_archive .main_content .greenway_item {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.greenways_archive .main_content .greenway_item .image {
  width: 33.333333%;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 16px;
}
@media not all and (min-width: 640px) {
  .greenways_archive .main_content .greenway_item .image {
    width: 100%;
  }
}
.greenways_archive .main_content .greenway_item .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.greenways_archive .main_content .greenway_item .content {
  display: flex;
  min-width: 0px;
  flex: 1 1 0%;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.greenways_archive .main_content .greenway_item .content h4 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
}
.greenways_archive .main_content .greenway_item .description {
  font-size: 1.125rem;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.greenways_archive .main_content .greenway_item .greenway-route {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.greenways_archive .main_content .greenway_item .greenway-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.greenways_archive .main_content .greenway_item .greenway-stats .stat-value {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.greenways_archive .main_content .greenway_item .greenway-stats .difficulty-pill {
  border-radius: 8px;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
}
.greenways_archive .main_content .greenway_item .greenway-stats .difficulty-pill.Leisure {
  --tw-bg-opacity: 1;
  background-color: rgb(229 244 236 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 128 0 / var(--tw-text-opacity));
}
.greenways_archive .main_content .greenway_item .greenway-stats .difficulty-pill.Active {
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 253 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 0 217 / var(--tw-text-opacity));
}
.greenways_archive .main_content .greenway_item .greenway-stats .difficulty-pill.Challenging {
  --tw-bg-opacity: 1;
  background-color: rgb(247 230 232 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(214 0 25 / var(--tw-text-opacity));
}
.greenways_archive .filter_container {
  grid-column: span 3 / span 3;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .greenways_archive .filter_container {
    display: block;
  }
}
@media (max-width: 1023px) {
  .greenways_archive .filter_container {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 50;
    height: 100%;
    width: 20rem;
    --tw-translate-x: -100%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    overflow-y: auto;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    padding: 1.5rem;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    display: none;
  }
  .greenways_archive .filter_container.active {
    width: 100%;
    --tw-translate-x: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    display: block;
  }
}
.greenways_archive .filter_container .filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
  padding-bottom: 2rem;
}
.greenways_archive .filter_container .filter-header h3 {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.greenways_archive .filter_container .filter-header .close-filter-btn {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}
.greenways_archive .filter_container .filter-header .close-filter-btn:hover {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
@media (min-width: 1024px) {
  .greenways_archive .filter_container .filter-header .close-filter-btn {
    display: none;
  }
}
.greenways_archive .filter_container .filter-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
}
.greenways_archive .filter_container .filter-section:not(:last-child) {
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
  padding-bottom: 2rem;
}
.greenways_archive .filter_container .filter-section .filter-section-title {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.greenways_archive .filter_container .filter-section .filter-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.greenways_archive .filter_container .filter-section .filter-checkboxes .filter-checkbox {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem;
}
.greenways_archive .filter_container .filter-section .filter-checkboxes .filter-checkbox input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.greenways_archive .filter_container .filter-section .filter-checkboxes .filter-checkbox .checkmark {
  display: flex;
  height: 1.25rem;
  width: 1.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
  transition: all 0.2s ease;
  background-color: white;
}
.greenways_archive .filter_container .filter-section .filter-checkboxes .filter-checkbox .checkmark::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='m13.854 3.646-7.5 7.5a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6 10.293l7.146-7.147a.5.5 0 0 1 .708.708z'/%3e%3c/svg%3e");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.greenways_archive .filter_container .filter-section .filter-checkboxes .filter-checkbox input[type=checkbox]:checked + .checkmark {
  --tw-border-opacity: 1;
  border-color: rgb(22 163 74 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity));
}
.greenways_archive .filter_container .filter-section .filter-checkboxes .filter-checkbox input[type=checkbox]:checked + .checkmark::after {
  opacity: 1;
}
.greenways_archive .filter_container .filter-section .filter-checkboxes .filter-checkbox .checkbox-label {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.greenways_archive .filter_container .filter-section .filter-checkboxes .filter-checkbox:hover .checkmark {
  --tw-border-opacity: 1;
  border-color: rgb(34 197 94 / var(--tw-border-opacity));
}
.greenways_archive .filter_container .filter-section .filter-dropdown {
  position: relative;
}
.greenways_archive .filter_container .filter-section .filter-dropdown select {
  width: 100%;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.5rem;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.greenways_archive .filter_container .filter-section .filter-dropdown select:focus {
  --tw-border-opacity: 1;
  border-color: rgb(34 197 94 / var(--tw-border-opacity));
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.greenways_archive .filter_container .filter-section .filter-dropdown .dropdown-arrow {
  pointer-events: none;
  position: absolute;
  right: 1rem;
  top: 50%;
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.greenways_archive .filter_container .filter-section .difficulty-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.greenways_archive .filter_container .filter-section .difficulty-buttons .difficulty-btn {
  cursor: pointer;
  border-radius: 0.25rem;
  border-width: 0px;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
.greenways_archive .filter_container .filter-section .difficulty-buttons .difficulty-btn.leisure-btn {
  --tw-bg-opacity: 1;
  background-color: rgb(229 244 236 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 128 0 / var(--tw-text-opacity));
}
.greenways_archive .filter_container .filter-section .difficulty-buttons .difficulty-btn.leisure-btn:hover {
  opacity: 0.8;
}
.greenways_archive .filter_container .filter-section .difficulty-buttons .difficulty-btn.leisure-btn.active {
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.greenways_archive .filter_container .filter-section .difficulty-buttons .difficulty-btn.active-btn {
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 253 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 0 217 / var(--tw-text-opacity));
}
.greenways_archive .filter_container .filter-section .difficulty-buttons .difficulty-btn.active-btn:hover {
  opacity: 0.8;
}
.greenways_archive .filter_container .filter-section .difficulty-buttons .difficulty-btn.active-btn.active {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.greenways_archive .filter_container .filter-section .difficulty-buttons .difficulty-btn.challenging-btn {
  --tw-bg-opacity: 1;
  background-color: rgb(247 230 232 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(214 0 25 / var(--tw-text-opacity));
}
.greenways_archive .filter_container .filter-section .difficulty-buttons .difficulty-btn.challenging-btn:hover {
  opacity: 0.8;
}
.greenways_archive .filter_container .filter-section .difficulty-buttons .difficulty-btn.challenging-btn.active {
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.greenways_archive .filter_container .filter-section .range-slider {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.greenways_archive .filter_container .filter-section .range-slider .slider {
  height: 0.25rem;
  width: 100%;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
}
.greenways_archive .filter_container .filter-section .range-slider .slider::-webkit-slider-thumb {
  height: 1.5rem;
  width: 1.5rem;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  border-radius: 9999px;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
.greenways_archive .filter_container .filter-section .range-slider .slider::-moz-range-thumb {
  height: 1.5rem;
  width: 1.5rem;
  cursor: pointer;
  border-radius: 9999px;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
.greenways_archive .filter_container .filter-section .range-slider .slider:focus {
  outline: none;
}
.greenways_archive .filter_container .filter-section .range-slider .range-labels {
  margin-top: 0.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.greenways_archive .filter_container .filter-reset {
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
  padding-top: 1.5rem;
}
.greenways_archive .filter_container .filter-reset .reset-link {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
.greenways_archive .filter_container .filter-reset .reset-link:hover {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.greenways_archive .filter_container .filter-reset .reset-link {
  font-size: 14px;
  text-decoration: underline;
}
.greenways_archive .filter_container .filter-reset .reset-link:hover {
  text-decoration: none;
}
.greenways_archive .greenways_list {
  grid-column: span 9 / span 9;
  grid-column-start: 4;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 1023px) {
  .greenways_archive .greenways_list {
    grid-column: span 1 / span 1;
    grid-column-start: 1;
    width: 100%;
  }
}
.greenways_archive .greenways_list .greenways_list_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
  padding-bottom: 1.5rem;
}
.greenways_archive .greenways_list .greenways_list_header h3 {
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.greenways_archive .filter-toggle-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(0 147 68 / var(--tw-bg-opacity));
  padding: 1rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@media (min-width: 1024px) {
  .greenways_archive .filter-toggle-btn {
    display: none;
  }
}
.greenways_archive .filter-toggle-btn:hover {
  --tw-bg-opacity: 0.9;
}
.greenways_archive .mobile-filter-overlay {
  position: fixed;
  inset: 0px;
  z-index: 40;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
  --tw-bg-opacity: 0.5;
}
@media (min-width: 1024px) {
  .greenways_archive .mobile-filter-overlay {
    display: none;
  }
}
.greenways_archive .mobile-filter-overlay {
  display: none;
}
.greenways_archive .mobile-filter-overlay.active {
  display: block;
}

.code_of_conduct {
  padding: 5rem;
}

@media not all and (min-width: 1280px) {
  .code_of_conduct {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media not all and (min-width: 768px) {
  .code_of_conduct {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.code_of_conduct {
  margin-left: auto;
  margin-right: auto;
  max-width: 2200px;
}
.code_of_conduct .code_of_conduct_content {
  display: flex;
  align-items: stretch;
  gap: 0px;
  overflow: hidden;
  border-radius: 1.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(245 242 237 / var(--tw-bg-opacity));
}
.code_of_conduct .code_of_conduct_content .code_of_conduct_content_left {
  position: relative;
  order: 2;
  display: flex;
  width: 50%;
}
.code_of_conduct .code_of_conduct_content .code_of_conduct_content_left .map-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.code_of_conduct .code_of_conduct_content .code_of_conduct_content_left a {
  height: 100%;
  width: 100%;
}
.code_of_conduct .code_of_conduct_content .code_of_conduct_content_right {
  position: relative;
  order: 1;
  display: flex;
  width: 50%;
  flex-direction: column;
  justify-content: center;
  padding-left: 7rem;
  padding-right: 7rem;
  padding-top: 7rem;
  padding-bottom: 7rem;
  text-align: center;
}
.code_of_conduct .code_of_conduct_content .code_of_conduct_content_right h2 {
  margin-bottom: 1rem;
  margin-top: 1.5rem;
  font-size: 3rem;
  line-height: 1;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 147 68 / var(--tw-text-opacity));
}
.code_of_conduct .code_of_conduct_content .code_of_conduct_content_right p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.code_of_conduct .code_of_conduct_content .code_of_conduct_content_right .text_content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.code_of_conduct .code_of_conduct_content .code_of_conduct_content_right .bg-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 75%;
  height: auto;
}
.code_of_conduct .code_of_conduct_content .code_of_conduct_image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.code_of_conduct .code_of_conduct_content .inter_pillar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 1rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(0 147 68 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.code_of_conduct .code_of_conduct_content .inter_pillar img {
  height: 1.5rem;
  width: 1.5rem;
}
.code_of_conduct .code_of_conduct_content .inter_pillar span {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 128 0 / var(--tw-text-opacity));
}

.white_btn {
  margin-top: 1.5rem;
  display: inline-block;
  align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.white_btn:hover {
  opacity: 0.6;
}

@media (max-width: 960px) {
  .code_of_conduct {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .code_of_conduct .code_of_conduct_content {
    flex-direction: column;
    gap: 0px;
  }
  .code_of_conduct .code_of_conduct_content .code_of_conduct_content_left {
    order: 1;
    width: 100%;
  }
  .code_of_conduct .code_of_conduct_content .code_of_conduct_content_right {
    order: 2;
    width: 100%;
    border-radius: 0px;
    padding: 2rem;
  }
  .code_of_conduct .code_of_conduct_content .code_of_conduct_content_right h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .code_of_conduct .code_of_conduct_content .code_of_conduct_content_right p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .code_of_conduct .code_of_conduct_content .code_of_conduct_content_right .text_content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .code_of_conduct .code_of_conduct_content .code_of_conduct_content_right .code_of_conduct_icon {
    height: 2.5rem;
    width: 2.5rem;
  }
}
.getting_there {
  margin-top: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(245 242 237 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
  padding-left: 30px;
  padding-right: 30px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.getting_there > * {
  grid-column-start: 2;
  grid-column-end: 12;
}
@media (min-width: 1024px) {
  .getting_there {
    gap: 1rem;
  }
}
@media (min-width: 1280px) {
  .getting_there {
    gap: 1.5rem;
  }
}
@media (max-width: 960px) {
  .getting_there {
    padding-left: 20px;
    padding-right: 20px;
  }
  .getting_there > * {
    grid-column-start: 1;
    grid-column-end: 13;
  }
}
.getting_there h2 {
  margin-bottom: 1rem;
  font-size: 3rem;
  line-height: 1;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 147 68 / var(--tw-text-opacity));
}
.getting_there .getting_there_content {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 2200px;
}
.getting_there .getting_there_content .top {
  margin-bottom: 2.5rem;
  display: flex;
  width: 60%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.getting_there .getting_there_content .link_block {
  display: flex;
  width: 60%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.travel_resources h2 {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

@media (max-width: 960px) {
  .getting_there {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .getting_there h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .getting_there .getting_there_content .top {
    width: 100%;
  }
  .getting_there .getting_there_content .link_row {
    flex-direction: column;
    gap: 1rem;
  }
  .getting_there .getting_there_content .link_box {
    width: 100%;
  }
}
.link_row {
  display: flex;
  width: 100%;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .link_row {
    flex-direction: row;
  }
}
.link_row .link_box {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  border-radius: 1rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding: 2rem;
  text-align: left;
  font-size: 1.125rem;
  line-height: 1.75rem;
}
@media (min-width: 768px) {
  .link_row .link_box {
    width: calc(50% - 12px);
  }
}
.link_row .link_box {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
}
.link_row .link_box h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.link_row .link_box .link_btn {
  margin-top: 1rem;
  display: inline-block;
  align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  background: #F2F2F3 url("../images/icons/logout.svg") no-repeat right 10px center;
}
.link_row .link_box .link_btn:hover {
  opacity: 0.6;
}
.link_row .link_box .resource_image {
  margin-bottom: 0.5rem;
  margin-right: auto;
  height: auto;
  max-width: 100%;
}

.faq_block {
  margin-top: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
  margin-left: auto;
  margin-right: auto;
  max-width: 2200px;
  padding-left: 30px;
  padding-right: 30px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 5rem;
  padding-bottom: 1rem;
}
.faq_block > * {
  grid-column-start: 2;
  grid-column-end: 12;
}
@media (min-width: 1024px) {
  .faq_block {
    gap: 1rem;
  }
}
@media (min-width: 1280px) {
  .faq_block {
    gap: 1.5rem;
  }
}
@media (max-width: 960px) {
  .faq_block {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .faq_block > * {
    grid-column-start: 1;
    grid-column-end: 13;
  }
}
.faq_block .faq_content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2.5rem;
}
@media (max-width: 960px) {
  .faq_block .faq_content {
    flex-direction: column;
  }
}
.faq_block .faq_content h2 {
  width: 40%;
  flex-shrink: 0;
  font-size: 3rem;
  line-height: 1;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
@media (max-width: 960px) {
  .faq_block .faq_content h2 {
    margin-bottom: 1.5rem;
    width: 100%;
  }
}
.faq_block .faq_accordion {
  flex: 1 1 0%;
  border-bottom-width: 1px;
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
}
.faq_block .faq_accordion .faq_item {
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
}
.faq_block .faq_accordion .faq_item:last-child {
  border-bottom-width: 0px;
}
.faq_block .faq_accordion .faq_item .faq_question {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.faq_block .faq_accordion .faq_item .faq_question:hover {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.faq_block .faq_accordion .faq_item .faq_question .faq_icon {
  height: 1.5rem;
  width: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.faq_block .faq_accordion .faq_item .faq_answer {
  overflow: hidden;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  max-height: 0;
}
.faq_block .faq_accordion .faq_item .faq_answer p {
  padding-bottom: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}
.faq_block .faq_accordion .faq_item.active .faq_question {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.faq_block .faq_accordion .faq_item.active .faq_question .faq_icon {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.green_btn {
  flex: 1;
  margin-right: auto;
  display: inline-block;
  border-radius: 8px;
  --tw-bg-opacity: 1;
  background-color: rgb(229 244 236 / var(--tw-bg-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(1 121 53 / var(--tw-text-opacity));
}
.green_btn:hover {
  opacity: 0.8;
}

.gray_btn {
  display: inline-block;
  align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 243 / var(--tw-bg-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.gray_btn:hover {
  opacity: 0.6;
}

.latest_news {
  padding: 5rem;
}

@media not all and (min-width: 1280px) {
  .latest_news {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media not all and (min-width: 768px) {
  .latest_news {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.latest_news {
  margin-left: auto;
  margin-right: auto;
  max-width: 2200px;
}
.latest_news .news_top {
  margin-bottom: 2rem;
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media not all and (min-width: 1024px) {
  .latest_news .news_top {
    display: block;
  }
}
.latest_news .news_top h1, .latest_news .news_top h2 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
@media not all and (min-width: 1024px) {
  .latest_news .news_top h1, .latest_news .news_top h2 {
    margin-bottom: 1rem;
  }
}
.latest_news .text_content_top {
  margin-bottom: 1rem;
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
.latest_news .text_content_top .category {
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 243 / var(--tw-bg-opacity));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.latest_news .text_content_top .date {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.latest_news .latest_feed {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.5rem;
}
@media (max-width: 960px) {
  .latest_news .latest_feed {
    flex-direction: column;
  }
}
.latest_news .latest_feed .news_card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
  flex: 0 0 calc(33.333% - 1rem);
}
@media (max-width: 960px) {
  .latest_news .latest_feed .news_card {
    width: 100%;
  }
}
.latest_news .latest_feed .news_card h2 {
  margin-bottom: 1rem;
  padding-right: 4rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.latest_news .latest_feed .news_card .excerpt {
  padding-right: 4rem;
}
.latest_news .latest_feed .news_card_image {
  height: 100%;
  width: 100%;
  border-radius: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.news_page {
  min-height: 80vh;
}

.news_content {
  margin-left: auto;
  margin-right: auto;
  max-width: 2200px;
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding-left: 10vw;
  padding-right: 10vw;
}

@media not all and (min-width: 1024px) {
  .news_content {
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 1rem;
  }
}
.news_content .news_card {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.news_content .news_card h1 {
  margin-top: 5rem;
  margin-bottom: 1rem;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
@media not all and (min-width: 1024px) {
  .news_content .news_card h1 {
    margin-top: 1.5rem;
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.news_content .news_card .excerpt {
  padding-right: 4rem;
}
.news_content .news_card_image {
  height: 100%;
  width: 100%;
  border-radius: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.featured_greenways {
  padding: 5rem;
}

@media not all and (min-width: 1280px) {
  .featured_greenways {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media not all and (min-width: 768px) {
  .featured_greenways {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.featured_greenways {
  margin-left: auto;
  margin-right: auto;
  max-width: 2200px;
}
.featured_greenways .news_top {
  margin-bottom: 2rem;
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.featured_greenways .news_top h2 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.featured_greenways .text_content_top {
  margin-bottom: 1rem;
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
.featured_greenways .text_content_top .category {
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 243 / var(--tw-bg-opacity));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.featured_greenways .text_content_top .date {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.featured_greenways .latest_feed {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.5rem;
}
@media (max-width: 960px) {
  .featured_greenways .latest_feed {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .featured_greenways .latest_feed::-webkit-scrollbar {
    display: none;
  }
}
.featured_greenways .latest_feed .news_card {
  display: flex;
  width: 25%;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
@media (max-width: 960px) {
  .featured_greenways .latest_feed .news_card {
    width: 85%;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}
.featured_greenways .latest_feed .news_card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.featured_greenways .latest_feed .news_card .excerpt {
  padding-right: 4rem;
}
.featured_greenways .latest_feed .news_card_image {
  height: 100%;
  width: 100%;
  border-radius: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.featured_greenways .greenway-route {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.featured_greenways .greenway-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.featured_greenways .greenway-stats .stat-value {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.featured_greenways .greenway-stats .difficulty-pill {
  border-radius: 8px;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
}
.featured_greenways .greenway-stats .difficulty-pill.Leisure {
  --tw-bg-opacity: 1;
  background-color: rgb(229 244 236 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 128 0 / var(--tw-text-opacity));
}
.featured_greenways .greenway-stats .difficulty-pill.Active {
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 253 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 0 217 / var(--tw-text-opacity));
}
.featured_greenways .greenway-stats .difficulty-pill.Challenging {
  --tw-bg-opacity: 1;
  background-color: rgb(247 230 232 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(214 0 25 / var(--tw-text-opacity));
}

.d-flex {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.d-flex .pagination {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.d-flex .pagination li a {
  display: inline-block;
  align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.d-flex .pagination li a:hover {
  opacity: 0.6;
}
.d-flex .pagination .active {
  display: inline-block;
  align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 243 / var(--tw-bg-opacity));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.d-flex .pagination .active:hover {
  opacity: 0.6;
}
.d-flex .pagination .page-numbers {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.d-flex .pagination .next {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.d-flex .pagination .prev {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}

.hero_page {
  position: relative;
  height: 50vh;
  min-height: 400px;
  overflow: hidden;
}
.hero_page .gallery_images {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero_page .gallery_images .swiper-wrapper, .hero_page .gallery_images .swiper-slide {
  height: 100%;
  width: 100%;
}
.hero_page .gallery_images img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero_page .gallery_images .swiper-pagination {
  bottom: 2rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.hero_page .gallery_images .swiper-pagination-bullet {
  height: 0.25rem;
  width: 2.5rem;
  border-radius: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  opacity: 0.6;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  margin: 0 !important;
}
.hero_page .gallery_images .swiper-pagination-bullet-active {
  width: 3.5rem;
  opacity: 1;
}
.hero_page .title {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 10;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 5rem;
  background: rgba(20, 20, 20, 0.2);
  pointer-events: none;
}
.hero_page .title h1 {
  font-size: 3rem;
  line-height: 1;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.page_highlight_content {
  padding: 5rem;
}

@media not all and (min-width: 1280px) {
  .page_highlight_content {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media not all and (min-width: 768px) {
  .page_highlight_content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.page_highlight_content {
  margin-left: auto;
  margin-right: auto;
  max-width: 2200px;
}
.page_highlight_content .the_content {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
  width: 66.666667%;
}
@media not all and (min-width: 1024px) {
  .page_highlight_content .the_content {
    width: 100%;
  }
}
.page_highlight_content .the_content p {
  margin-bottom: 1rem;
}
.page_highlight_content .the_content h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.page_highlight_content .the_content h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.page_highlight_content.green {
  --tw-bg-opacity: 1;
  background-color: rgb(229 244 236 / var(--tw-bg-opacity));
}
.page_highlight_content.green .the_content {
  color: 005C00;
}
.page_highlight_content.beige {
  --tw-bg-opacity: 1;
  background-color: rgb(245 242 237 / var(--tw-bg-opacity));
}
.page_highlight_content.beige .the_content {
  --tw-text-opacity: 1;
  color: rgb(104 84 41 / var(--tw-text-opacity));
}

.block_content {
  padding: 5rem;
}

@media not all and (min-width: 1280px) {
  .block_content {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media not all and (min-width: 768px) {
  .block_content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.block_content {
  margin-left: auto;
  margin-right: auto;
  max-width: 2200px;
}
.block_content .the_content {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
  width: 66.666667%;
}
@media not all and (min-width: 1024px) {
  .block_content .the_content {
    width: 100%;
  }
}
.block_content .the_content p {
  margin-bottom: 1rem;
}
.block_content .the_content h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.block_content .the_content h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

.content-lightbox {
  position: fixed;
  inset: 0px;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.85);
}
.content-lightbox.is-open {
  display: flex;
}
.content-lightbox__figure {
  margin: 0px;
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.content-lightbox__image {
  max-width: 100%;
  border-radius: 8px;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
}
.content-lightbox__caption {
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.content-lightbox__caption[hidden] {
  display: none;
}
.content-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 8px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  font-size: 1.5rem;
  line-height: 2rem;
  line-height: 1;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

body.has-lightbox-open {
  overflow: hidden;
}

.the_content h4 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.the_content a.is-lightbox img {
  cursor: zoom-in;
}
.the_content .wp-block-table {
  margin-bottom: 1.5rem;
  width: 100%;
  overflow-x: auto;
}
.the_content table {
  margin-bottom: 1.5rem;
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  line-height: 1.5rem;
}
.the_content th {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-right: 1.5rem;
  text-align: left;
  vertical-align: top;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
  border-bottom: 2px solid #d1d5db;
}
.the_content td {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-right: 1.5rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e5e7eb;
}
.the_content tr:last-child td {
  border-bottom: 0;
}

.strategy_block {
  padding-left: 5rem;
  padding-right: 5rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media not all and (min-width: 1280px) {
  .strategy_block {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media not all and (min-width: 768px) {
  .strategy_block {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.strategy_block {
  margin-left: auto;
  margin-right: auto;
  max-width: 2200px;
}
.strategy_block .strategy_block_content {
  display: flex;
  width: 66.666667%;
  flex-direction: column;
  gap: 1.5rem;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(242 242 243 / var(--tw-border-opacity));
  padding-bottom: 2.5rem;
  padding-top: 2.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
@media not all and (min-width: 1024px) {
  .strategy_block .strategy_block_content {
    width: 100%;
  }
}
.strategy_block .strategy_block_content .link_btn {
  margin-top: 1rem;
  display: inline-block;
  align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  background: #F2F2F3 url("../images/icons/logout.svg") no-repeat right 10px center;
}
.strategy_block .strategy_block_content .link_btn:hover {
  opacity: 0.6;
}

.need_to_know_block {
  padding-left: 5rem;
  padding-right: 5rem;
  padding-bottom: 5rem;
}

@media not all and (min-width: 1280px) {
  .need_to_know_block {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media not all and (min-width: 768px) {
  .need_to_know_block {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.need_to_know_block {
  margin-left: auto;
  margin-right: auto;
  max-width: 2200px;
}
.need_to_know_block .need_to_know {
  margin-top: 4rem;
  width: 50%;
  border-radius: 1.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 243 / var(--tw-bg-opacity));
  padding: 3rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
@media not all and (min-width: 1024px) {
  .need_to_know_block .need_to_know {
    width: 100%;
  }
}
.need_to_know_block .need_to_know .need_to_know_top {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}
.need_to_know_block .need_to_know .need_to_know_top .alert-icon {
  height: 1.5rem;
  width: 1.5rem;
}

.fade-in,
.fade-in-now,
.fade-up,
.fade-left,
.fade-right {
  opacity: 0;
  visibility: hidden;
}

.fade-up {
  transform: translateY(30px);
}

.fade-left {
  transform: translateX(-50px);
}

.fade-right {
  transform: translateX(50px);
}

.no-js .fade-in,
.no-js .fade-in-now,
.no-js .fade-up,
.no-js .fade-left,
.no-js .fade-right {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.map-page {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.map-container {
  width: 100%;
  height: 100%;
}

.map-sidebar {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 100%;
  background: white;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  transition: transform 0.3s ease;
  z-index: 10;
}
.map-sidebar.collapsed {
  transform: translateX(-100%);
}
.map-sidebar__header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #eee;
}
.map-sidebar__back-btn, .map-sidebar__close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.map-sidebar__title {
  padding: 20px;
  border-bottom: 1px solid #eee;
}
.map-sidebar__title h1 {
  margin: 0 0 10px 0;
  font-size: 24px;
  font-weight: bold;
}

.menu-toggle-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 5;
  background: white;
  border: none;
  padding: 10px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: none;
  pointer-events: auto;
}
.menu-toggle-btn:active {
  background: #e0e0e0;
}

.route-endpoints {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
  font-size: 14px;
}

.route-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.difficulty-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}
.difficulty-badge.leisure {
  background: #e8f5e9;
  color: #2e7d32;
}

.route-description {
  padding: 20px;
  border-bottom: 1px solid #eee;
}
.route-description h3 {
  margin: 0 0 15px 0;
  font-size: 18px;
}

.description-content {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.elevation-section {
  padding: 20px;
  border-bottom: 1px solid #eee;
}
.elevation-section h3 {
  margin: 0 0 15px 0;
  font-size: 18px;
}

.elevation-chart-container {
  background: #f8f9fa;
  padding: 10px;
  border-radius: 8px;
}

.access-points-section {
  padding: 24px 24px 24px 24px;
}
.access-points-section h3 {
  font-size: 18px;
  color: #000000;
  margin: 0 0 16px 0;
  font-weight: 400;
}
.access-points-section .access-points-list .access-point-item {
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  display: flex;
  gap: 15px;
  padding: 15px;
  background: url(../images/dash.svg) repeat-y left 8px top 0px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  padding-left: 0;
  padding-right: 0;
}
.access-points-section .access-points-list .access-point-item:first-child {
  background: url(../images/dash.svg) no-repeat left 8px top 50px;
}
.access-points-section .access-points-list .access-point-item:first-child .access-point-marker {
  background: #000a93 !important;
  width: 22px;
  height: 22px;
  margin-left: -2px;
}
.access-points-section .access-points-list .access-point-item:last-child {
  background: url(../images/dash.svg) no-repeat left 8px bottom 50px;
  border-bottom: none;
}
.access-points-section .access-points-list .access-point-item:last-child .access-point-marker {
  background: #F44336 !important;
  width: 22px;
  height: 22px;
  margin-left: -2px;
}
.access-points-section .access-points-list .access-point-item .access-point-marker {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #000000;
  border: 2px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.access-points-section .access-points-list .access-point-item.active .access-point-marker {
  background: #009344 !important;
}
.access-points-section .access-points-list .access-point-item .access-point-details {
  display: flex;
  flex-direction: column;
}
.access-points-section .access-points-list .access-point-item .access-point-details .access-point-name {
  font-size: 16px;
  color: #000000;
  font-weight: 400;
}
.access-points-section .access-points-list .access-point-item .access-point-details .access-point-coords {
  font-size: 14px;
  color: #CCCDCE;
}
.access-points-section .access-points-list .access-point-item .access-point-details .access-point-distance {
  font-size: 14px;
  color: #999B9D;
}

.access-point-details {
  flex: 1;
}

.access-point-name {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.access-point-coords {
  display: block;
  font-size: 12px;
  color: #666;
}

.access-point-amenities {
  display: block;
  margin-top: 8px;
  font-size: 18px;
}

.map-controls {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
}

.map-control-btn {
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.map-control-btn:hover {
  background: #f5f5f5;
}

.mapboxgl-popup-content {
  padding: 0 !important;
  border-radius: 8px;
  overflow: hidden;
}

.popup-content {
  min-width: 200px;
}

.popup-image {
  width: 100%;
  height: 80px;
  overflow: hidden;
}
.popup-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.popup-details {
  padding: 12px;
}
.popup-details h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: bold;
}

.popup-info .item-arrow {
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-info h3 {
  margin-bottom: 0.5rem;
  padding-right: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  line-height: 20px;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

.popup-description {
  margin: 8px 0;
  font-size: 14px;
  color: #666;
}

.popup-coords {
  margin: 5px 0;
  font-size: 12px;
  color: #999;
}

.popup-amenities {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  font-size: 20px;
}
.popup-amenities .amenity-icon {
  cursor: help;
  position: relative;
}
.popup-amenities .amenity-icon::after {
  content: attr(data-label);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  font-family: "Verdana Pro", Verdana, sans-serif;
  font-size: 11px;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  z-index: 10;
}
.popup-amenities .amenity-icon:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .map-sidebar {
    width: 100vw;
    max-width: 100vw;
    z-index: 200;
    box-shadow: 2px 0 16px rgba(0, 0, 0, 0.2);
  }
  .menu-toggle-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 250 !important;
    width: 48px;
    height: 48px;
  }
  .route-stats {
    grid-template-columns: 1fr;
  }
  .map-controls {
    right: 16px;
    top: 16px;
  }
}
.greenway-top-container {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  max-width: 2200px;
  flex-direction: column;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 5rem;
}
@media not all and (min-width: 1024px) {
  .greenway-top-container {
    padding-top: 0px;
  }
}
.greenway-top-container > * {
  grid-column-start: 2;
  grid-column-end: 12;
}
@media (min-width: 1024px) {
  .greenway-top-container {
    gap: 1rem;
  }
}
@media (min-width: 1280px) {
  .greenway-top-container {
    gap: 1.5rem;
  }
}
@media (max-width: 960px) {
  .greenway-top-container {
    margin-left: 20px;
    margin-right: 20px;
  }
  .greenway-top-container > * {
    grid-column-start: 1;
    grid-column-end: 13;
  }
}
.greenway-top-container h1 {
  font-size: 3rem;
  line-height: 1;
  font-weight: 400;
}
@media not all and (min-width: 768px) {
  .greenway-top-container h1 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .greenway-top-container h1 {
    font-size: 3rem;
    line-height: 1;
  }
}
.greenway-top-container h1 {
  margin-top: 1rem;
}
@media (min-width: 1024px) {
  .greenway-top-container h1 {
    margin-top: 0;
  }
}
.greenway-top-container .greenway-route {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.greenway-top-container .sub-row {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 1rem;
}
.greenway-top-container .sub-row .greenway-stats {
  grid-column: span 6 / span 6;
}
.greenway-top-container .sub-row .stat-actions {
  grid-column: span 4 / span 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}
@media not all and (min-width: 1024px) {
  .greenway-top-container .sub-row .stat-actions {
    justify-content: flex-start;
  }
  .greenway-top-container .sub-row .stat-actions .icon-button {
    display: none;
  }
}
@media (max-width: 960px) {
  .greenway-top-container .sub-row {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .greenway-top-container .sub-row .greenway-stats,
  .greenway-top-container .sub-row .stat-actions {
    grid-column: span 1 / span 1;
  }
}
.greenway-top-container .greenway-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media not all and (min-width: 1024px) {
  .greenway-top-container .greenway-stats {
    flex-wrap: wrap;
  }
}
.greenway-top-container .greenway-stats .stat-item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-right: 1.5rem;
}
@media not all and (min-width: 1024px) {
  .greenway-top-container .greenway-stats .stat-item {
    margin-bottom: 1rem;
    padding-right: 0px;
  }
  .greenway-top-container .greenway-stats .stat-item:nth-child(3) {
    order: 4;
  }
  .greenway-top-container .greenway-stats .stat-item:nth-child(4) {
    order: 3;
  }
  .greenway-top-container .greenway-stats .stat-item:nth-child(5) {
    order: 5;
  }
}
.greenway-top-container .greenway-stats .stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  height: 100%;
  width: 1px;
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity));
}
@media not all and (min-width: 1024px) {
  .greenway-top-container .greenway-stats .stat-item:not(:last-child)::after {
    display: none;
  }
}
.greenway-top-container .greenway-stats .stat-label {
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
@media not all and (min-width: 1024px) {
  .greenway-top-container .greenway-stats .stat-label {
    margin-bottom: 0px;
  }
}
.greenway-top-container .greenway-stats .stat-value {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
}
@media not all and (min-width: 1024px) {
  .greenway-top-container .greenway-stats .stat-value {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.greenway-top-container .greenway-stats .stat-value .difficulty-pill {
  border-radius: 8px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
}
.greenway-top-container .greenway-stats .stat-value .difficulty-pill.Leisure {
  --tw-bg-opacity: 1;
  background-color: rgb(229 244 236 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 128 0 / var(--tw-text-opacity));
}
.greenway-top-container .greenway-stats .stat-value .difficulty-pill.Active {
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 253 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 0 217 / var(--tw-text-opacity));
}
.greenway-top-container .greenway-stats .stat-value .difficulty-pill.Challenging {
  --tw-bg-opacity: 1;
  background-color: rgb(247 230 232 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(214 0 25 / var(--tw-text-opacity));
}
.greenway-top-container .greenway-stats .stat-value .duration_top {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.greenway-top-container .greenway-stats .stat-value .duration_top .cycling-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.greenway-top-container .greenway-stats .stat-value .duration_top .walking-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.greenway-top-container .top_block {
  order: 2;
}
@media (min-width: 1024px) {
  .greenway-top-container .top_block {
    order: 0;
  }
}
.greenway-top-container .greenway-images-container {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
}
@media not all and (min-width: 1024px) {
  .greenway-top-container .greenway-images-container {
    display: block;
  }
}
.greenway-top-container .greenway-images-container {
  order: 1;
}
@media (min-width: 1024px) {
  .greenway-top-container .greenway-images-container {
    order: 0;
  }
}
.greenway-top-container .greenway-images-container .greenway-images {
  grid-column: span 8 / span 8;
}
.greenway-top-container .greenway-images-container .image-map {
  position: relative;
  grid-column: span 4 / span 4;
  overflow: hidden;
  border-radius: 16px;
}
@media not all and (min-width: 1024px) {
  .greenway-top-container .greenway-images-container .image-map {
    margin-top: 1.5rem;
    display: none;
  }
}
.greenway-top-container .greenway-images-container .image-map .map-image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.greenway-top-container .greenway-images-container .image-map .expand-icon {
  height: 2.25rem;
  width: 2.25rem;
}
.greenway-top-container .greenway-images-container .image-map .map-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.greenway-top-container .greenway-images {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.25rem;
}
.greenway-top-container .greenway-images .image-main {
  position: relative;
  grid-column: span 8 / span 8;
  overflow: hidden;
  border-bottom-left-radius: 16px;
  border-top-left-radius: 16px;
}
@media not all and (min-width: 1024px) {
  .greenway-top-container .greenway-images .image-main {
    grid-column: span 12 / span 12;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    border-radius: 0px;
  }
}
.greenway-top-container .greenway-images .image-main {
  min-height: 300px;
}
@media (min-width: 768px) {
  .greenway-top-container .greenway-images .image-main {
    min-height: 400px;
  }
}
@media (min-width: 1024px) {
  .greenway-top-container .greenway-images .image-main {
    min-height: 500px;
  }
}
.greenway-top-container .greenway-images .image-main img {
  position: absolute;
  inset: 0px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.greenway-top-container .greenway-images .one-image {
  grid-column: span 12 / span 12;
  border-bottom-right-radius: 16px;
  border-top-right-radius: 16px;
}
.greenway-top-container .greenway-images .gallery-button {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  border-radius: 8px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.greenway-top-container .greenway-images .map-button {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media not all and (min-width: 1024px) {
  .greenway-top-container .greenway-images .map-button {
    display: flex;
  }
}
.greenway-top-container .greenway-images .map-button {
  border-radius: 8px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.greenway-top-container .greenway-images .map-button img {
  position: static;
  height: 2rem;
  width: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.greenway-top-container .greenway-images .share-button {
  position: absolute;
  top: 6px;
  right: 6px;
  display: none;
  height: 4rem;
  width: 4rem;
}
@media not all and (min-width: 1024px) {
  .greenway-top-container .greenway-images .share-button {
    display: block;
  }
}
.greenway-top-container .greenway-images .back-button {
  position: absolute;
  top: 18px;
  left: 18px;
  height: 2.5rem;
  width: 2.5rem;
}
.greenway-top-container .greenway-images .image-stack {
  grid-column: span 4 / span 4;
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 0.25rem;
}
@media not all and (min-width: 1024px) {
  .greenway-top-container .greenway-images .image-stack {
    display: none;
  }
}
.greenway-top-container .greenway-images .image-stack .image-small {
  flex: 1 1 0%;
  overflow: hidden;
  border-bottom-right-radius: 16px;
  border-top-right-radius: 16px;
}
.greenway-top-container .greenway-images .image-stack .image-small:first-child {
  border-bottom-right-radius: 0px;
}
.greenway-top-container .greenway-images .image-stack .image-small:last-child {
  border-top-right-radius: 0px;
}
.greenway-top-container .greenway-images .image-stack .image-small img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.icon-button {
  display: inline-block;
  align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}

.action-button {
  display: inline-block;
  align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 243 / var(--tw-bg-opacity));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.action-button:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(240 240 240 / var(--tw-bg-opacity));
}

.greenway-content-area {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media not all and (min-width: 1024px) {
  .greenway-content-area {
    order: 3;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.greenway-content-area .content-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}
@media not all and (min-width: 1024px) {
  .greenway-content-area .content-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0px;
  }
}
.greenway-content-area .main-content {
  grid-column: span 8 / span 8;
  padding-right: 10rem;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
@media not all and (min-width: 1024px) {
  .greenway-content-area .main-content {
    order: 2;
    padding-right: 0px;
  }
}
.greenway-content-area .main-content h2 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.greenway-content-area .main-content p {
  margin-bottom: 1rem;
}
.greenway-content-area .accordion {
  margin-top: 2rem;
  overflow: hidden;
}
.greenway-content-area .accordion .accordion-item {
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
}
.greenway-content-area .accordion .accordion-item:last-child {
  border-bottom-width: 1px;
}
.greenway-content-area .accordion .accordion-header {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  margin: 0px;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.greenway-content-area .accordion .accordion-header.active .accordion-icon {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.greenway-content-area .accordion .accordion-header span {
  flex: 1 1 0%;
}
.greenway-content-area .accordion .accordion-header .accordion-icon {
  height: 1.5rem;
  width: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
.greenway-content-area .accordion .accordion-content {
  overflow: hidden;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.greenway-content-area .accordion .accordion-content .accordion-inner {
  padding-top: 0px;
  padding-bottom: 1rem;
}
.greenway-content-area .accordion .accordion-content .accordion-inner .distance {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
}
.greenway-content-area .need_to_know {
  margin-top: 4rem;
  border-radius: 1.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 243 / var(--tw-bg-opacity));
  padding: 3rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.greenway-content-area .need_to_know .need_to_know_top {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}
.greenway-content-area .need_to_know .need_to_know_top .alert-icon {
  height: 1.5rem;
  width: 1.5rem;
}
.greenway-content-area .sidebar {
  grid-column: span 4 / span 4;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.greenway-content-area .sidebar > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
@media not all and (min-width: 1024px) {
  .greenway-content-area .sidebar {
    order: 1;
  }
}
.greenway-content-area .sidebar .download {
  border-radius: 1.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding: 2rem;
  box-shadow: 0 0 12px 0 rgba(209, 209, 209, 0.5);
}
.greenway-content-area .sidebar .download h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 400;
}
.greenway-content-area .sidebar .amenities-box {
  border-radius: 1.5rem;
  background-color: #F2F2F380;
  padding: 2rem;
  margin-bottom: 32px !important;
}
.greenway-content-area .sidebar .amenities-box h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 400;
}
.greenway-content-area .sidebar .download {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.greenway-content-area .sidebar .download .download_links {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 1rem;
}
.greenway-content-area .sidebar .download a {
  flex: 1;
  display: inline-block;
  border-radius: 8px;
  --tw-bg-opacity: 1;
  background-color: rgb(229 244 236 / var(--tw-bg-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 128 0 / var(--tw-text-opacity));
}
.greenway-content-area .sidebar .download a:hover {
  opacity: 0.8;
}
.greenway-content-area .sidebar .amenities-list {
  margin-top: 1.5rem;
}
.greenway-content-area .sidebar .amenities-list > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.greenway-content-area .sidebar .amenities-list .amenity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.greenway-content-area .sidebar .amenities-list .amenity-item img {
  height: 1.5rem;
  width: 1.5rem;
  opacity: 0.6;
}
.greenway-content-area .sidebar .amenities-list .amenity-item span {
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}

.connect_block {
  margin-top: 0px;
  margin-bottom: 5rem;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}

@media not all and (min-width: 1024px) {
  .connect_block {
    order: 3;
  }
}
.connect_block h2 {
  margin-bottom: 2.5rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.connect_block .connect_block_content {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
}
@media not all and (min-width: 1024px) {
  .connect_block .connect_block_content {
    display: block;
  }
}
.connect_block .connect_block_content_left {
  grid-column: span 3 / span 3;
}
.connect_block .connect_block_content_left img {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 1.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.connect_block .connect_block_content_right {
  grid-column: span 5 / span 5;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.connect_block .connect_block_content_right h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.connect_block .greenway_stats {
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0px;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.connect_block .greenway_stats .greenway_stats_item {
  position: relative;
  display: flex;
  flex-direction: row;
  padding-right: 1.5rem;
}
.connect_block .difficulty-pill {
  border-radius: 8px;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
}
.connect_block .difficulty-pill.Leisure {
  --tw-bg-opacity: 1;
  background-color: rgb(229 244 236 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 128 0 / var(--tw-text-opacity));
}
.connect_block .difficulty-pill.Active {
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 253 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 0 217 / var(--tw-text-opacity));
}
.connect_block .difficulty-pill.Challenging {
  --tw-bg-opacity: 1;
  background-color: rgb(247 230 232 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(214 0 25 / var(--tw-text-opacity));
}

.biodiversity {
  margin-top: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(249 249 249 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
  padding-left: 30px;
  padding-right: 30px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.biodiversity > * {
  grid-column-start: 2;
  grid-column-end: 12;
}
@media (min-width: 1024px) {
  .biodiversity {
    gap: 1rem;
  }
}
@media (min-width: 1280px) {
  .biodiversity {
    gap: 1.5rem;
  }
}
@media (max-width: 960px) {
  .biodiversity {
    padding-left: 20px;
    padding-right: 20px;
  }
  .biodiversity > * {
    grid-column-start: 1;
    grid-column-end: 13;
  }
}
.biodiversity h2 {
  margin-bottom: 2.5rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.biodiversity .tabs-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 2200px;
}
.biodiversity .tabs-nav {
  margin-bottom: 2rem;
  display: flex;
  gap: 1.5rem;
}
.biodiversity .tabs-nav .tab-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(104 84 41 / var(--tw-border-opacity));
  background-color: transparent;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 2rem;
  --tw-text-opacity: 1;
  color: rgb(104 84 41 / var(--tw-text-opacity));
  opacity: 0.7;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
.biodiversity .tabs-nav .tab-button.active {
  --tw-text-opacity: 1;
  color: rgb(104 84 41 / var(--tw-text-opacity));
  opacity: 1;
}
.biodiversity .tabs-nav .tab-button .tab-icon {
  height: 1.5rem;
  width: 1.5rem;
}
.biodiversity .tabs-content .tab-panel {
  display: none;
  opacity: 0;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.biodiversity .tabs-content .tab-panel.active {
  display: block;
  opacity: 1;
}
.biodiversity .tabs-content .bio_content {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}
.biodiversity .tabs-content .bio_content .text_content {
  flex: 1 1 0%;
}
.biodiversity .tabs-content .bio_content .text_content p {
  margin-bottom: 1rem;
}
.biodiversity .tabs-content .bio_content .text_content p:first-child {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.biodiversity .tabs-content .bio_content .bio_image {
  overflow: hidden;
  width: 50%;
  border-radius: 1.5rem;
}
.biodiversity .tabs-content .bio_content .bio_image img {
  width: 100%;
}
.biodiversity .tabs-content .history_content {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}
.biodiversity .tabs-content .history_content .text_content {
  flex: 1 1 0%;
}
.biodiversity .tabs-content .history_content .text_content p {
  margin-bottom: 1rem;
}
.biodiversity .tabs-content .history_content .text_content p:first-child {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.biodiversity .tabs-content .history_content .history_image {
  overflow: hidden;
  width: 50%;
  border-radius: 1.5rem;
}
.biodiversity .tabs-content .history_content .history_image img {
  width: 100%;
}

@media (max-width: 960px) {
  .biodiversity {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .biodiversity .tabs-nav {
    flex-direction: column;
    gap: 1rem;
  }
  .biodiversity .tabs-content .tab-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .biodiversity .tabs-content .bio_content {
    flex-direction: column;
    gap: 1rem;
  }
  .biodiversity .tabs-content .bio_content .bio_image {
    width: 100%;
  }
  .biodiversity .tabs-content .history_content {
    flex-direction: column;
    gap: 1rem;
  }
  .biodiversity .tabs-content .history_content .history_image {
    width: 100%;
  }
}
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
}
.gallery-modal.show {
  background-color: rgba(0, 0, 0, 0.95);
}
.gallery-modal .gallery-modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-modal.show .gallery-modal-content {
  opacity: 1;
  transform: scale(1);
}
.gallery-modal .gallery-modal-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 10;
}
.gallery-modal .gallery-modal-close:hover, .gallery-modal .gallery-modal-close:focus {
  color: #ccc;
}
.gallery-modal .gallery-modal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  height: 90vh;
  padding: 20px;
}
.gallery-modal .gallery-modal-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  margin-bottom: 20px;
}
.gallery-modal .gallery-modal-main .gallery-modal-figure {
  position: relative;
  margin: 0;
  aspect-ratio: var(--img-ar, 3/2);
  max-width: 100%;
  max-height: 100%;
  min-width: 0;
  min-height: 0;
}
.gallery-modal .gallery-modal-main picture {
  display: contents;
}
.gallery-modal .gallery-modal-main img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: opacity 0.3s ease;
  border-radius: 16px;
}
.gallery-modal .gallery-modal-main .gallery-modal-credit {
  position: absolute;
  bottom: 16px;
  right: 16px;
  max-width: calc(100% - 32px);
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  border-radius: 8px;
  backdrop-filter: blur(2px);
  pointer-events: none;
  z-index: 2;
}
.gallery-modal .gallery-modal-main .gallery-modal-credit[hidden] {
  display: none;
}
@media (max-width: 480px) {
  .gallery-modal .gallery-modal-main .gallery-modal-credit {
    bottom: 10px;
    right: 10px;
    font-size: 11px;
    padding: 4px 9px;
  }
}
.gallery-modal .gallery-modal-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}
.gallery-modal .gallery-modal-navigation button {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 30px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.3s;
}
.gallery-modal .gallery-modal-navigation button:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.8);
}
.gallery-modal .gallery-modal-navigation button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.gallery-modal .gallery-modal-thumbnails {
  width: 100%;
  max-width: 800px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.gallery-modal .gallery-modal-thumbnails::-webkit-scrollbar {
  height: 8px;
}
.gallery-modal .gallery-modal-thumbnails::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}
.gallery-modal .gallery-modal-thumbnails::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}
.gallery-modal .gallery-thumbnails-wrapper {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  justify-content: flex-start;
  min-width: -moz-min-content;
  min-width: min-content;
}
.gallery-modal .gallery-thumbnails-wrapper .gallery-thumbnail {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.3s;
  flex-shrink: 0;
  border: 2px solid transparent;
  border-radius: 8px;
}
.gallery-modal .gallery-thumbnails-wrapper .gallery-thumbnail:hover {
  opacity: 0.8;
  transform: scale(1.05);
}
.gallery-modal .gallery-thumbnails-wrapper .gallery-thumbnail.active {
  opacity: 1;
  border-color: white;
}
@media (max-width: 768px) {
  .gallery-modal .gallery-modal-close {
    top: 10px;
    right: 20px;
    font-size: 30px;
  }
  .gallery-modal .gallery-modal-navigation button {
    font-size: 24px;
    padding: 8px 15px;
  }
  .gallery-modal .gallery-thumbnails-wrapper .gallery-thumbnail {
    width: 60px;
    height: 60px;
  }
}

.page-template-page-map-view .site-footer {
  display: none;
}

.map-view-page {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(100vh - 80px);
}

.full-map-container {
  width: 100%;
  height: 100%;
}

.map-view-sidebar {
  position: absolute;
  left: 20px;
  top: 20px;
  bottom: 20px;
  width: 400px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  z-index: 10;
  transition: height 0.3s ease-in-out, bottom 0.3s ease-in-out;
}

.sidebar-header {
  padding: 24px;
  border-bottom: 1px solid #E6E6E7;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.sidebar-header h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: #131516;
}

.greenway-count {
  font-size: 14px;
  margin-top: 4px;
  display: block;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}

.sidebar-toggle {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #666768;
  transition: all 0.2s;
  border-radius: 4px;
}

.sidebar-toggle:hover {
  background: #F2F2F3;
  color: #131516;
}

.sidebar-toggle svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.map-view-sidebar.collapsed {
  height: auto;
  bottom: auto;
}

.map-view-sidebar.collapsed .sidebar-list {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

.map-view-sidebar:not(.collapsed) .sidebar-list {
  max-height: calc(100vh - 200px);
  opacity: 1;
  transition: max-height 0.3s ease-in, opacity 0.3s ease-in;
}

.map-view-sidebar.collapsed .sidebar-toggle svg {
  transform: rotate(-180deg);
}

.map-view-sidebar.collapsed .sidebar-header {
  border-bottom: none;
}

.sidebar-list {
  flex: 1;
  overflow-y: scroll;
  scrollbar-gutter: stable;
  padding: 8px;
  scrollbar-color: #c4c4c4 #ededed;
  scrollbar-width: thin;
}
.sidebar-list::-webkit-scrollbar {
  width: 8px;
}
.sidebar-list::-webkit-scrollbar-track {
  background: #ededed;
  border-radius: 4px;
}
.sidebar-list::-webkit-scrollbar-thumb {
  background: #c4c4c4;
  border-radius: 4px;
}
.sidebar-list::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.sidebar-item {
  padding: 16px;
  background: #FAFAFA;
  border-radius: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.2s;
  display: block;
  position: relative;
}

.sidebar-item:hover {
  background: #F2F2F3;
  transform: translateY(-1px);
}

.item-description {
  font-size: 14px;
  line-height: 1.5;
  color: #4a4a4a;
  margin: 12px 0 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.35s ease;
}

.sidebar-item.active {
  background: #F2F2F3;
}

.sidebar-item.active .item-description {
  max-height: 400px;
  opacity: 1;
}

.item-image {
  width: 100%;
  height: 220px;
  margin-bottom: 12px;
  border-radius: 6px;
  overflow: hidden;
}

.item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sidebar-item h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 4px 0;
  color: #131516;
}

.greenway-route {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
  margin: 0 0 8px 0;
}

.greenway-route img {
  width: 16px;
  height: 16px;
  opacity: 0.5;
}

.item-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}

.difficulty-badge {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.difficulty-badge.leisure {
  --tw-bg-opacity: 1;
  background-color: rgb(229 244 236 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 128 0 / var(--tw-text-opacity));
}
.difficulty-badge.active {
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 253 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 0 217 / var(--tw-text-opacity));
}
.difficulty-badge.challenging {
  --tw-bg-opacity: 1;
  background-color: rgb(247 230 232 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(214 0 25 / var(--tw-text-opacity));
}

.item-arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  transition: all 0.2s;
}

.item-arrow:hover {
  background: #009344;
}

.item-arrow:hover svg path {
  stroke: white;
}

.no-results {
  text-align: center;
  color: #999B9D;
  padding: 40px 20px;
}

.greenway-marker {
  cursor: pointer;
}

.greenway-popup .mapboxgl-popup-content {
  padding: 0 !important;
  border-radius: 12px !important;
  overflow: hidden;
  min-width: 320px;
  position: relative;
}
.greenway-popup .mapboxgl-popup-content .mapboxgl-popup-close-button {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  font-size: 18px !important;
  width: 28px !important;
  height: 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: absolute !important;
  top: 6px !important;
  right: 6px !important;
  color: #666 !important;
  cursor: pointer !important;
  padding: 0 !important;
  z-index: 101 !important;
  font-weight: 300 !important;
  line-height: 1 !important;
  border-radius: 50% !important;
}

.map-controls {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.map-control-btn {
  width: 44px;
  height: 44px;
  background: white;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.map-control-btn:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.map-control-btn:active {
  transform: translateY(0);
}

.map-control-btn svg {
  width: 20px;
  height: 20px;
  color: #333;
}

.map-control-btn.active {
  background: #009344 !important;
}

.map-control-btn.active svg {
  color: white;
}

.map-control-btn.loading {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.user-location-marker {
  width: 20px;
  height: 20px;
}

.user-location-marker .dot {
  width: 12px;
  height: 12px;
  background: #4285F4;
  border-radius: 50%;
  border: 2px solid white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.user-location-marker .pulse {
  width: 20px;
  height: 20px;
  background: rgba(66, 133, 244, 0.3);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: location-pulse 2s ease-out infinite;
}

@keyframes location-pulse {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3);
  }
}
.map-view-page .filter-toggle-btn {
  position: absolute;
  top: 0px;
  right: -85px;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: white;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s;
}

.map-view-page .filter-toggle-btn:hover {
  background: #f5f5f5;
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.map-view-page .filter-toggle-btn.active {
  background: #009344;
}

.map-view-page .filter-toggle-btn.active svg {
  color: white;
}

.map-view-page .filter-toggle-btn svg {
  width: 24px;
  height: 24px;
  color: #333;
}

.filter-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.filter-modal.active {
  opacity: 1;
  visibility: visible;
}

.filter-modal-content {
  background: white;
  border-radius: 12px;
  width: 400px;
  max-width: 90vw;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s;
}

.filter-modal.active .filter-modal-content {
  transform: scale(1);
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #E6E6E7;
}

.filter-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #131516;
}

.close-filter-btn {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #666768;
  border-radius: 4px;
  transition: all 0.2s;
}

.close-filter-btn:hover {
  background: #F2F2F3;
  color: #131516;
}

.filter-section {
  padding: 20px 24px;
  border-bottom: 1px solid #F2F2F3;
}

.filter-section:last-of-type {
  border-bottom: none;
}

.filter-section-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: #131516;
}

.filter-modal .filter-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.filter-modal .filter-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.filter-modal .filter-checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}
.filter-modal .checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #E6E6E7;
  border-radius: 4px;
  margin-right: 12px;
  position: relative;
  transition: all 0.2s;
}
.filter-modal .filter-checkbox input[type=checkbox]:checked + .checkmark {
  background: #009344;
  border-color: #009344;
}
.filter-modal .filter-checkbox input[type=checkbox]:checked + .checkmark:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.filter-modal .checkbox-label {
  font-size: 14px;
  color: #333;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.filter-modal .difficulty-buttons {
  display: flex;
  gap: 8px;
}
.filter-modal .difficulty-btn {
  flex: 1;
  padding: 8px 16px;
  border: 1px solid #E6E6E7;
  border-radius: 6px;
  background: white;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
}
.filter-modal .difficulty-btn:hover {
  border-color: #009344;
}
.filter-modal .difficulty-btn.selected {
  background: #009344;
  border-color: #009344;
  color: white;
}
.filter-modal .range-slider {
  margin-top: 8px;
}
.filter-modal .slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #E6E6E7;
  outline: none;
  -webkit-appearance: none;
  margin-bottom: 12px;
}
.filter-modal .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #009344;
  cursor: pointer;
}
.filter-modal .slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #009344;
  cursor: pointer;
  border: none;
}
.filter-modal .range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #999B9D;
}
.filter-modal .filter-reset {
  padding: 16px 24px;
  text-align: center;
}
.filter-modal .reset-link {
  color: #009344;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.filter-modal .reset-link:hover {
  text-decoration: underline;
}

.list-toggle-btn,
.mobile-filter-btn {
  display: none;
}

@media (max-width: 768px) {
  .map-view-sidebar {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 30;
  }
  .map-view-sidebar.active {
    transform: translateY(0);
  }
  .map-view-page .filter-toggle-btn {
    display: none;
  }
  .list-toggle-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 20;
    width: 44px;
    height: 44px;
    background: white;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }
  .list-toggle-btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }
  .list-toggle-btn.active {
    background: #009344;
  }
  .list-toggle-btn.active svg {
    color: white;
  }
  .list-toggle-btn svg {
    width: 24px;
    height: 24px;
    color: #333;
  }
  .mobile-filter-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 50;
    width: 56px;
    height: 56px;
    background: #009344;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }
  .mobile-filter-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
  }
  .mobile-filter-btn svg {
    width: 28px;
    height: 28px;
    color: white;
  }
}
.greenway-types {
  padding-left: 5rem;
  padding-right: 5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media not all and (min-width: 1280px) {
  .greenway-types {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media not all and (min-width: 768px) {
  .greenway-types {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.greenway-types__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1600px;
}
.greenway-types__heading {
  margin-bottom: 2.5rem;
  font-size: 3rem;
  line-height: 1;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
@media not all and (min-width: 768px) {
  .greenway-types__heading {
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
.greenway-types__gallery {
  width: 100%;
}
.greenway-types__content {
  margin-top: 3rem;
  max-width: 56rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  line-height: 1.625;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.greenway-types__content p {
  margin-bottom: 1.5rem;
}
.greenway-types__content p:last-child {
  margin-bottom: 0px;
}
.greenway-types__content > p:first-of-type {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
  line-height: 1.375;
  --tw-text-opacity: 1;
  color: rgb(0 147 68 / var(--tw-text-opacity));
}
@media not all and (min-width: 768px) {
  .greenway-types__content > p:first-of-type {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.gt-stage {
  position: relative;
}

.gt-slide {
  display: none;
}
.gt-slide.is-active {
  display: grid;
  align-items: stretch;
  gap: 2rem;
  grid-template-columns: 360px 1fr;
}
@media (max-width: 960px) {
  .gt-slide.is-active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

.gt-panel {
  border-radius: 1.5rem;
  padding: 2.5rem;
}

@media not all and (min-width: 768px) {
  .gt-panel {
    padding: 1.5rem;
  }
}

.gt-panel {
  background: #E5F4EC;
}
.gt-panel__title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.gt-panel__subtitle {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.gt-panel__desc {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  line-height: 1.625;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.gt-panel__desc p {
  margin-bottom: 0.75rem;
}
.gt-panel__desc p:last-child {
  margin-bottom: 0px;
}

.gt-figure {
  margin: 0px;
  overflow: hidden;
  border-radius: 1.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 243 / var(--tw-bg-opacity));
}
.gt-figure picture,
.gt-figure img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 960px) {
  .gt-figure {
    aspect-ratio: 16/10;
  }
}

.gt-nav {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.gt-nav__arrow {
  cursor: pointer;
  border-radius: 9999px;
  border-width: 0px;
  background-color: transparent;
  padding: 0.5rem;
  font-size: 1.5rem;
  line-height: 2rem;
  line-height: 1;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.gt-nav__arrow:hover {
  --tw-text-opacity: 1;
  color: rgb(0 147 68 / var(--tw-text-opacity));
}
.gt-nav__prev {
  margin-right: auto;
}
.gt-nav__next {
  margin-left: auto;
}
.gt-nav__counter {
  margin: 0px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

.gt-thumbs {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #d1d5db transparent;
}
.gt-thumbs::-webkit-scrollbar {
  height: 8px;
}
.gt-thumbs::-webkit-scrollbar-track {
  background: transparent;
}
.gt-thumbs::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 4px;
}
.gt-thumbs::-webkit-scrollbar-thumb:hover {
  background: #d1d5db;
}
.gt-thumbs .gt-thumb {
  width: 8rem;
  flex: none;
}
@media not all and (min-width: 768px) {
  .gt-thumbs .gt-thumb {
    width: 6rem;
  }
}

.gt-thumb {
  display: block;
  cursor: pointer;
  overflow: hidden;
  border-radius: 1rem;
  border-width: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 243 / var(--tw-bg-opacity));
  padding: 0px;
  aspect-ratio: 1/1;
  transition: opacity 0.2s ease;
  opacity: 0.5;
}
.gt-thumb img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gt-thumb:hover {
  opacity: 0.8;
}
.gt-thumb.is-active {
  opacity: 1;
}

.error-404 {
  padding-left: 5rem;
  padding-right: 5rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media not all and (min-width: 1280px) {
  .error-404 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media not all and (min-width: 768px) {
  .error-404 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.error-404__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}
.error-404__code {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  --tw-text-opacity: 1;
  color: rgb(0 147 68 / var(--tw-text-opacity));
}
.error-404__heading {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  line-height: 1;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
@media not all and (min-width: 768px) {
  .error-404__heading {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.error-404__intro {
  margin-bottom: 2.5rem;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  line-height: 1.625;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.error-404__search {
  margin-bottom: 3rem;
}
.error-404__search label {
  margin-bottom: 0.75rem;
  display: block;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.error-404__search-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media not all and (min-width: 768px) {
  .error-404__search-row {
    flex-direction: column;
    align-items: stretch;
  }
}
.error-404__search-row input[type=search] {
  height: 50px;
  flex-grow: 1;
  border-radius: 48px;
  border-width: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 243 / var(--tw-bg-opacity));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.error-404__search-row input[type=search]::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.error-404__search-row input[type=search]::placeholder {
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.error-404__search-row input[type=search]:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(0 147 68 / var(--tw-ring-opacity));
}
.error-404__search-row button {
  height: 50px;
  cursor: pointer;
  border-radius: 48px;
  border-width: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(0 147 68 / var(--tw-bg-opacity));
  padding-left: 2rem;
  padding-right: 2rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.error-404__search-row button:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(1 121 53 / var(--tw-bg-opacity));
}
.error-404__search-row button:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(0 147 68 / var(--tw-ring-opacity));
  --tw-ring-offset-width: 2px;
}
.error-404__suggestions {
  margin-bottom: 3rem;
}
.error-404__suggestions-heading {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.error-404__list {
  margin: 0px;
  display: grid;
  list-style-type: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 0.75rem;
  padding: 0px;
}
@media not all and (min-width: 768px) {
  .error-404__list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.error-404__list a {
  --tw-text-opacity: 1;
  color: rgb(0 147 68 / var(--tw-text-opacity));
  text-decoration-line: underline;
  text-underline-offset: 4px;
}
.error-404__list a:hover {
  --tw-text-opacity: 1;
  color: rgb(1 121 53 / var(--tw-text-opacity));
}
.error-404__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.error-404__button {
  display: inline-flex;
  align-items: center;
  border-radius: 48px;
  --tw-bg-opacity: 1;
  background-color: rgb(0 147 68 / var(--tw-bg-opacity));
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  text-decoration-line: none;
}
.error-404__button:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(1 121 53 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.error-404__button--ghost {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(0 147 68 / var(--tw-border-opacity));
  background-color: transparent;
  --tw-text-opacity: 1;
  color: rgb(0 147 68 / var(--tw-text-opacity));
}
.error-404__button--ghost:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(0 147 68 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.greenways_empty {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.greenways_empty h3 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
@media not all and (min-width: 768px) {
  .greenways_empty h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.greenways_empty > p {
  margin-bottom: 2rem;
  max-width: 42rem;
  line-height: 1.625;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}

.greenways_empty_form {
  margin-bottom: 2rem;
}
.greenways_empty_form label {
  margin-bottom: 0.75rem;
  display: block;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

.greenways_empty_row {
  display: flex;
  max-width: 36rem;
  align-items: center;
  gap: 0.75rem;
}

@media not all and (min-width: 768px) {
  .greenways_empty_row {
    flex-direction: column;
    align-items: stretch;
  }
}
.greenways_empty_row input[type=search] {
  height: 50px;
  flex-grow: 1;
  border-radius: 48px;
  border-width: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 243 / var(--tw-bg-opacity));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.greenways_empty_row input[type=search]::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.greenways_empty_row input[type=search]::placeholder {
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.greenways_empty_row input[type=search]:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(0 147 68 / var(--tw-ring-opacity));
}
.greenways_empty_row button {
  height: 50px;
  cursor: pointer;
  border-radius: 48px;
  border-width: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(0 147 68 / var(--tw-bg-opacity));
  padding-left: 2rem;
  padding-right: 2rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.greenways_empty_row button:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(1 121 53 / var(--tw-bg-opacity));
}
.greenways_empty_row button:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(0 147 68 / var(--tw-ring-opacity));
  --tw-ring-offset-width: 2px;
}

.greenways_empty_all {
  margin: 0px;
}
.greenways_empty_all a {
  --tw-text-opacity: 1;
  color: rgb(0 147 68 / var(--tw-text-opacity));
  text-decoration-line: underline;
  text-underline-offset: 4px;
}
.greenways_empty_all a:hover {
  --tw-text-opacity: 1;
  color: rgb(1 121 53 / var(--tw-text-opacity));
}

.search-page {
  padding-left: 5rem;
  padding-right: 5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media not all and (min-width: 1280px) {
  .search-page {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media not all and (min-width: 768px) {
  .search-page {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.search-page__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
}
.search-page__heading {
  margin-bottom: 0.75rem;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
@media not all and (min-width: 768px) {
  .search-page__heading {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.search-page__term {
  --tw-text-opacity: 1;
  color: rgb(0 147 68 / var(--tw-text-opacity));
}
.search-page__count {
  margin-bottom: 2.5rem;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.search-page__list {
  margin: 0px;
  display: flex;
  list-style-type: none;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0px;
}
.search-page__item {
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(242 242 243 / var(--tw-border-opacity));
  padding-bottom: 1.5rem;
}
.search-page__item:last-child {
  border-bottom-width: 0px;
}
.search-page__item-link {
  display: flex;
  gap: 1.5rem;
  text-decoration-line: none;
}
@media not all and (min-width: 768px) {
  .search-page__item-link {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.search-page__item-link:hover .search-page__item-title {
  --tw-text-opacity: 1;
  color: rgb(0 147 68 / var(--tw-text-opacity));
}
.search-page__item-media {
  width: 220px;
  flex-shrink: 0;
}
@media not all and (min-width: 768px) {
  .search-page__item-media {
    width: 100%;
  }
}
.search-page__item-media img {
  height: 140px;
  width: 100%;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media not all and (min-width: 768px) {
  .search-page__item-media img {
    height: 180px;
  }
}
.search-page__item-body {
  flex-grow: 1;
}
.search-page__item-type {
  margin-bottom: 0.5rem;
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  --tw-text-opacity: 1;
  color: rgb(0 147 68 / var(--tw-text-opacity));
}
.search-page__item-title {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
@media not all and (min-width: 768px) {
  .search-page__item-title {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.search-page__item-route {
  margin-bottom: 0.5rem;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.search-page__item-excerpt {
  margin: 0px;
  line-height: 1.625;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.search-page__pagination {
  margin-top: 3rem;
}
.search-page__pagination ul {
  margin: 0px;
  display: flex;
  list-style-type: none;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 0px;
}
.search-page__pagination a,
.search-page__pagination span {
  display: inline-flex;
  height: 42px;
  min-width: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
  text-decoration-line: none;
}
.search-page__pagination a:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 243 / var(--tw-bg-opacity));
}
.search-page__pagination .current {
  --tw-bg-opacity: 1;
  background-color: rgb(0 147 68 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.search-page__empty {
  margin-top: 1rem;
}
.search-page__empty-heading {
  margin-bottom: 1rem;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
@media not all and (min-width: 768px) {
  .search-page__empty-heading {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.search-page__empty-intro {
  margin-bottom: 2rem;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  line-height: 1.625;
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.search-page__form {
  margin-bottom: 3rem;
}
.search-page__form label {
  margin-bottom: 0.75rem;
  display: block;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.search-page__form-row {
  display: flex;
  max-width: 42rem;
  align-items: center;
  gap: 0.75rem;
}
@media not all and (min-width: 768px) {
  .search-page__form-row {
    flex-direction: column;
    align-items: stretch;
  }
}
.search-page__form-row input[type=search] {
  height: 50px;
  flex-grow: 1;
  border-radius: 48px;
  border-width: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 243 / var(--tw-bg-opacity));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.search-page__form-row input[type=search]::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.search-page__form-row input[type=search]::placeholder {
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.search-page__form-row input[type=search]:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(0 147 68 / var(--tw-ring-opacity));
}
.search-page__form-row button {
  height: 50px;
  cursor: pointer;
  border-radius: 48px;
  border-width: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(0 147 68 / var(--tw-bg-opacity));
  padding-left: 2rem;
  padding-right: 2rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.search-page__form-row button:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(1 121 53 / var(--tw-bg-opacity));
}
.search-page__form-row button:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(0 147 68 / var(--tw-ring-opacity));
  --tw-ring-offset-width: 2px;
}
.search-page__suggestions-heading {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.search-page__suggestions-list {
  margin: 0px;
  display: grid;
  list-style-type: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 0.75rem;
  padding: 0px;
}
@media not all and (min-width: 768px) {
  .search-page__suggestions-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.search-page__suggestions-list a {
  --tw-text-opacity: 1;
  color: rgb(0 147 68 / var(--tw-text-opacity));
  text-decoration-line: underline;
  text-underline-offset: 4px;
}
.search-page__suggestions-list a:hover {
  --tw-text-opacity: 1;
  color: rgb(1 121 53 / var(--tw-text-opacity));
}

*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

::before,
::after {
  --tw-content: '';
}

html,
:host {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  line-height: inherit;
}

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
  text-decoration: inherit;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button,
select {
  text-transform: none;
}

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

:-moz-focusring {
  outline: auto;
}

:-moz-ui-invalid {
  box-shadow: none;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
dialog {
  padding: 0;
}

textarea {
  resize: vertical;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

button,
[role="button"] {
  cursor: pointer;
}
:disabled {
  cursor: default;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

img,
video {
  max-width: 100%;
  height: auto;
}
[hidden] {
  display: none;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
.\!container {
  width: 100% !important;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {
  .\!container {
    max-width: 640px !important;
  }
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .\!container {
    max-width: 768px !important;
  }
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .\!container {
    max-width: 1024px !important;
  }
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .\!container {
    max-width: 1280px !important;
  }
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .\!container {
    max-width: 1536px !important;
  }
  .container {
    max-width: 1536px;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.visible {
  visibility: visible;
}
.collapse {
  visibility: collapse;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.left-0 {
  left: 0px;
}
.left-1 {
  left: 0.25rem;
}
.top-0 {
  top: 0px;
}
.z-50 {
  z-index: 50;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.contents {
  display: contents;
}
.hidden {
  display: none;
}
.h-1\.5 {
  height: 0.375rem;
}
.h-12 {
  height: 3rem;
}
.h-full {
  height: 100%;
}
.w-0 {
  width: 0px;
}
.w-12 {
  width: 3rem;
}
.w-3 {
  width: 0.75rem;
}
.w-full {
  width: 100%;
}
.flex-shrink {
  flex-shrink: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.flex-grow {
  flex-grow: 1;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.resize {
  resize: both;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-\[25px\] {
  gap: 25px;
}
.overflow-hidden {
  overflow: hidden;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.border {
  border-width: 1px;
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-\[20px\] {
  padding-left: 20px;
  padding-right: 20px;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.pt-\[120px\] {
  padding-top: 120px;
}
.font-\[\\\'Verdana_Pro\\\'\] {
  font-family: \'Verdana Pro\';
}
.text-\[16px\] {
  font-size: 16px;
}
.font-semibold {
  font-weight: 600;
}
.italic {
  font-style: italic;
}
.leading-6 {
  line-height: 1.5rem;
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.underline {
  text-decoration-line: underline;
}
.opacity-0 {
  opacity: 0;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline {
  outline-style: solid;
}
.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow {
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.invert {
  --tw-invert: invert(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.the_content, .excerpt, .main-content, .block_content, .strategy_block_content, .need_to_know_bottom, .connect_block_content_left, .connect_block_content_right {
  overflow-wrap: break-word;
}
.the_content a, .excerpt a, .main-content a, .block_content a, .strategy_block_content a, .need_to_know_bottom a, .connect_block_content_left a, .connect_block_content_right a {
  overflow-wrap: anywhere;
}
.the_content ul,
.the_content ol, .excerpt ul,
.excerpt ol, .main-content ul,
.main-content ol, .block_content ul,
.block_content ol, .strategy_block_content ul,
.strategy_block_content ol, .need_to_know_bottom ul,
.need_to_know_bottom ol, .connect_block_content_left ul,
.connect_block_content_left ol, .connect_block_content_right ul,
.connect_block_content_right ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.the_content ul, .excerpt ul, .main-content ul, .block_content ul, .strategy_block_content ul, .need_to_know_bottom ul, .connect_block_content_left ul, .connect_block_content_right ul {
  list-style: disc outside;
}
.the_content ol, .excerpt ol, .main-content ol, .block_content ol, .strategy_block_content ol, .need_to_know_bottom ol, .connect_block_content_left ol, .connect_block_content_right ol {
  list-style: decimal outside;
}
.the_content li, .excerpt li, .main-content li, .block_content li, .strategy_block_content li, .need_to_know_bottom li, .connect_block_content_left li, .connect_block_content_right li {
  margin: 0.25rem 0;
}
.the_content ul ul, .excerpt ul ul, .main-content ul ul, .block_content ul ul, .strategy_block_content ul ul, .need_to_know_bottom ul ul, .connect_block_content_left ul ul, .connect_block_content_right ul ul {
  list-style: circle outside;
}
.the_content ul ul ul, .excerpt ul ul ul, .main-content ul ul ul, .block_content ul ul ul, .strategy_block_content ul ul ul, .need_to_know_bottom ul ul ul, .connect_block_content_left ul ul ul, .connect_block_content_right ul ul ul {
  list-style: square outside;
}

html {
  font-family: "verdana-pro", sans-serif;
}

.news_card_image {
  width: 100%;
  height: auto;
  aspect-ratio: 620/400;
}
@media (max-width: 768px) {
  .news_card_image {
    aspect-ratio: 412/309;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #006B30;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  font-weight: 700;
  border-radius: 0 0 4px 0;
  transition: top 0.3s ease;
}
.skip-link:focus {
  top: 0;
  background: #005024;
  outline: 3px solid #000000;
  outline-offset: 2px;
}

*:focus {
  outline: 3px solid #009344;
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

*:focus-visible {
  outline: 3px solid #009344;
  outline-offset: 2px;
}

a:focus-visible {
  outline: 3px solid #009344;
  outline-offset: 4px;
  border-radius: 4px;
}

button:focus-visible {
  outline: 3px solid #009344;
  outline-offset: 3px;
  border-radius: 4px;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #009344;
  outline-offset: 2px;
}

.hero-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  background-color: #111827;
}
.hero-section .overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.2);
  z-index: 10;
}
.hero-section__image-wrapper {
  position: absolute;
  inset: 0px;
}
.hero-section__image-wrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.7;
}
.hero-section__content {
  position: relative;
  z-index: 10;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  pointer-events: none;
}
.hero-section h1 {
  margin-top: 4rem;
  font-size: 3rem;
  line-height: 1;
  font-weight: 600;
}
@media (min-width: 768px) {
  .hero-section h1 {
    font-size: 3.75rem;
    line-height: 1;
  }
}
@media (min-width: 1024px) {
  .hero-section h1 {
    font-size: 4.5rem;
    line-height: 1;
  }
}
.hero-section h1 {
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 0;
  font-weight: 600;
}
.hero-section__search-wrapper {
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 100%;
  max-width: 42rem;
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  padding-left: 1rem;
  padding-right: 1rem;
  transform: translate(-50%, 50%);
  pointer-events: auto;
}
.hero-section__search-container {
  position: relative;
}
.hero-section__search-input {
  width: 100%;
  border-radius: 9999px;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 5rem;
  padding-right: 4rem;
}
.hero-section__search-input:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.hero-section__search-input {
  background-color: #ffffff;
  color: #000000;
  font-size: 1.1rem;
  font-weight: 400;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: none;
}
.hero-section__search-input:focus {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.16);
}
.hero-section__search-input::-moz-placeholder {
  color: #6d6d6d;
  font-weight: 400;
}
.hero-section__search-input::placeholder {
  color: #6d6d6d;
  font-weight: 400;
}
.hero-section__search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
.hero-section__search-input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}
.hero-section .gallery_images {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-section .gallery_images .swiper-wrapper, .hero-section .gallery_images .swiper-slide {
  height: 100%;
  width: 100%;
}
.hero-section .gallery_images img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-section .gallery_images .swiper-pagination {
  bottom: 4rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.hero-section .gallery_images .swiper-pagination-bullet {
  height: 0.25rem;
  width: 2.5rem;
  border-radius: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  opacity: 0.6;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  margin: 0 !important;
}
.hero-section .gallery_images .swiper-pagination-bullet-active {
  width: 3.5rem;
  opacity: 1;
}

.hero-section .search-icon {
  position: absolute;
  left: 2rem;
  top: 50%;
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section .search-icon svg, .hero-section .search-icon img {
  width: 100%;
  height: 100%;
  color: #000000;
  stroke-width: 2;
}
.hero-section .clear-button {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  width: 40px;
  height: 40px;
  background: #F2F2F3;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.hero-section .clear-button:hover {
  background: #e5e6e7;
}
.hero-section .clear-button svg {
  width: 24px;
  height: 24px;
  color: #000000;
  stroke-width: 2;
}

.search-dropdown {
  position: absolute;
  left: 0px;
  margin-top: 0.5rem;
  width: 100%;
  border-radius: 1rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  max-height: 296px;
  overflow-y: auto;
  z-index: 1000;
}
.search-dropdown::-webkit-scrollbar {
  width: 8px;
}
.search-dropdown::-webkit-scrollbar-track {
  background: transparent;
}
.search-dropdown::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 4px;
}
.search-dropdown::-webkit-scrollbar-thumb:hover {
  background: #d1d5db;
}
.search-dropdown .search-results {
  padding: 8px;
}
.search-dropdown .search-results .search-result-item {
  display: flex;
  cursor: pointer;
  align-items: center;
  border-radius: 0.5rem;
  padding: 1rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  border-bottom: 1px solid #f5f5f5;
}
.search-dropdown .search-results .search-result-item:hover {
  background-color: #f9f9f9;
}
.search-dropdown .search-results .search-result-item:last-child {
  border-bottom: none;
}
.search-dropdown .search-results .search-result-item .result-icon {
  width: 44px;
  height: 44px;
  background: #F2F2F3;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}
.search-dropdown .search-results .search-result-item .result-icon svg {
  width: 20px;
  height: 20px;
  color: #222;
}
.search-dropdown .search-results .search-result-item .result-content {
  flex: 1;
}
.search-dropdown .search-results .search-result-item .result-content .result-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: #000000;
  margin: 0;
}
.search-dropdown .search-results .search-result-item .result-content .result-title .highlight {
  font-weight: 600;
}
.search-dropdown .search-results .search-result-item .result-content .result-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0px;
}
.search-dropdown .search-results .search-result-item .result-content .result-meta .meta-item {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #B3B4B6;
}
.search-dropdown .search-results .search-result-item .result-content .result-meta .meta-separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #B3B4B6;
}
.search-dropdown .search-results .search-result-item .result-content .result-meta .route-arrow {
  width: 20px;
  height: 20px;
}
.search-dropdown .search-results .search-result-item .result-content .result-meta .route-arrow svg {
  width: 100%;
  height: 100%;
  color: #B3B4B6;
}
.search-dropdown .search-loading,
.search-dropdown .search-error,
.search-dropdown .no-results {
  padding: 16px 24px;
  text-align: center;
  color: #999B9D;
  font-size: 14px;
}
.search-dropdown .search-error {
  color: #dc2626;
}
.search-dropdown .search-loading {
  color: #009344;
}

.featured-section {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.featured-section__container {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
}
.featured-section__header {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.featured-section__title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.featured-section__link {
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity));
}
.featured-section__link:hover {
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity));
}
.featured-section__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .featured-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .featured-section__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.greenway-card {
  overflow: hidden;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.greenway-card:hover {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.greenway-card__image {
  height: 12rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.greenway-card__content {
  padding: 1rem;
}
.greenway-card__title {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.greenway-card__location {
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}

.discover-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.discover-section__container {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
}
.discover-section__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .discover-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.discover-section__title {
  margin-bottom: 1rem;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.discover-section__description {
  margin-bottom: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}
.discover-section__button {
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.discover-section__button:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity));
}
.discover-section__map {
  position: relative;
  height: 24rem;
  overflow: hidden;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.discover-section__map img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-section {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.news-section__container {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
}
.news-section__header {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-section__title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.news-section__link {
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity));
}
.news-section__link:hover {
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity));
}
.news-section__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .news-section__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.news-card {
  overflow: hidden;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.news-card:hover {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.news-card__image {
  height: 12rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-card__content {
  padding: 1.5rem;
}
.news-card__title {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.news-card__excerpt {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}
.news-card__link {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity));
}
.news-card__link:hover {
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity));
}

.resources-section-strategy {
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.resources-section-strategy__container {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  max-width: 48rem;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
.resources-section-strategy .transport_logo {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  height: 5rem;
}
.resources-section-strategy .gray_btn {
  margin-left: auto;
  margin-right: auto;
}
.resources-section-strategy p {
  --tw-text-opacity: 1;
  color: rgb(109 109 109 / var(--tw-text-opacity));
}
.resources-section-strategy__title {
  margin-bottom: 1rem;
  font-size: 3rem;
  line-height: 1;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 147 68 / var(--tw-text-opacity));
}
.resources-section-strategy__description {
  margin-bottom: 3rem;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}
.resources-section-strategy__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .resources-section-strategy__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.resources-section-strategy__logo-link {
  display: flex;
  justify-content: center;
}
.resources-section-strategy__logo-link img {
  height: 4rem;
  -o-object-fit: contain;
     object-fit: contain;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.resources-section-strategy__logo-link img:hover {
  opacity: 0.8;
}
.resources-section-strategy__strategy {
  margin-top: 3rem;
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
  padding-top: 3rem;
}
.resources-section-strategy__strategy-logo {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  height: 5rem;
}
.resources-section-strategy__strategy-title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.resources-section-strategy__strategy-description {
  margin-bottom: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}
.resources-section-strategy__strategy-button {
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity));
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.resources-section-strategy__strategy-button:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity));
}

.site-footer {
  --tw-bg-opacity: 1;
  background-color: rgb(1 121 53 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.site-footer__container {
  padding-left: 5rem;
  padding-right: 5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media not all and (min-width: 1280px) {
  .site-footer__container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media not all and (min-width: 768px) {
  .site-footer__container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.site-footer__main {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: flex-start;
  gap: 2rem;
}
@media (max-width: 960px) {
  .site-footer__main {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
}
.site-footer .footer_logo {
  grid-column: span 4 / span 4;
}
@media (max-width: 960px) {
  .site-footer .footer_logo {
    grid-column: span 12 / span 12;
  }
}
.site-footer .footer_logo img {
  height: 6rem;
}
.site-footer__grid {
  grid-column: span 7 / span 7;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}
@media (max-width: 960px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}
@media (max-width: 640px) {
  .site-footer__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.site-footer h3 {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.site-footer .menu > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.site-footer .menu li {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.site-footer li a {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.site-footer li a:hover {
  --tw-text-opacity: 1;
  color: rgb(187 247 208 / var(--tw-text-opacity));
}
.site-footer__bottom {
  border-top-width: 1px;
  border-color: rgb(0 0 0 / 0.1);
  --tw-bg-opacity: 1;
  background-color: rgb(1 121 53 / var(--tw-bg-opacity));
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 5rem;
  padding-right: 5rem;
}
@media not all and (min-width: 1280px) {
  .site-footer__bottom {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media not all and (min-width: 768px) {
  .site-footer__bottom {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 960px) {
  .site-footer__bottom {
    padding-bottom: 5.5rem;
  }
}
.site-footer__bottom-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}
@media (max-width: 960px) {
  .site-footer__bottom-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
  }
}
.site-footer__copyright {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(255 255 255 / 0.9);
}
.site-footer__bottom-links {
  display: flex;
  gap: 2rem;
}
@media (max-width: 640px) {
  .site-footer__bottom-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}
@media not all and (min-width: 1024px) {
  .site-footer .footer_logo {
    height: auto;
    width: 5rem;
  }
}
.site-footer__bottom-link {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(255 255 255 / 0.9);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.site-footer__bottom-link:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.map-page {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.map-page .menu-toggle-btn {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  background: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s ease;
  z-index: 999;
}
.map-page .menu-toggle-btn:hover {
  background: #f9f9f9;
}
.map-page .menu-toggle-btn svg {
  width: 24px;
  height: 24px;
  color: #000000;
}
.map-page .map-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.map-page .map-sidebar {
  position: absolute;
  top: 0;
  left: 0;
  width: 396px;
  height: 100vh;
  background: #ffffff;
  z-index: 100;
  overflow-y: auto;
  overflow-x: hidden;
  transition: transform 0.3s ease;
}
.map-page .map-sidebar::-webkit-scrollbar {
  width: 8px;
}
.map-page .map-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.map-page .map-sidebar::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 4px;
}
.map-page .map-sidebar::-webkit-scrollbar-thumb:hover {
  background: #d1d5db;
}
.map-page .map-sidebar.collapsed {
  transform: translateX(-100%);
}
.map-page .map-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid #F2F2F3;
}
.map-page .map-sidebar__back-btn, .map-page .map-sidebar__close-btn {
  border-radius: 0.5rem;
  padding: 0.5rem;
  background: #F2F2F3;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.map-page .map-sidebar__back-btn:hover, .map-page .map-sidebar__close-btn:hover {
  background: #e5e6e7;
}
.map-page .map-sidebar__back-btn svg, .map-page .map-sidebar__close-btn svg {
  width: 24px;
  height: 24px;
  color: #000000;
}
.map-page .map-sidebar__title {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 1.5rem;
}
.map-page .map-sidebar__title h1 {
  font-family: "Verdana Pro", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  color: #000000;
  margin: 0 0 8px 0;
}
.map-page .map-sidebar__title .route-endpoints {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #B3B4B6;
  font-size: 16px;
}
.map-page .map-sidebar__title .route-endpoints svg {
  width: 20px;
  height: 20px;
  transform: rotate(90deg);
}
.map-page .route-stats {
  background: rgba(242, 242, 243, 0.6);
  margin: 0 24px 24px 24px;
  padding: 24px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.map-page .route-stats .stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.map-page .route-stats .stat-item .stat-label {
  font-size: 16px;
  color: #999B9D;
  font-weight: 400;
}
.map-page .route-stats .stat-item .stat-value {
  font-size: 18px;
  color: #000000;
  font-weight: 400;
}
.map-page .route-stats .stat-item .difficulty-badge {
  background: #E5F4EC;
  color: #009344;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 18px;
  align-self: flex-start;
}
.map-page .route-stats .stat-item .difficulty-badge.leisure {
  background: #E5F4EC;
  color: #009344;
}
.map-page .elevation-section {
  padding: 0 24px 24px 24px;
}
.map-page .elevation-section h3 {
  font-size: 18px;
  color: #000000;
  margin: 0 0 16px 0;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
}
.map-page .elevation-section .elevation-status {
  font-size: 12px;
  color: #999B9D;
  font-weight: 400;
}
.map-page .elevation-section .elevation-chart-container {
  height: 180px;
  background: #ffffff;
  border-radius: 8px;
  padding: 16px;
}
.map-page .map-controls {
  position: absolute;
  right: 24px;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
}
.map-page .map-controls .map-control-btn {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}
.map-page .map-controls .map-control-btn:hover {
  background: #f9f9f9;
}
.map-page .map-controls .map-control-btn.active {
  background: #009344;
  color: #ffffff;
}
.map-page .map-controls .map-control-btn.active svg {
  color: #ffffff;
}
.map-page .map-controls .map-control-btn svg {
  width: 24px;
  height: 24px;
  color: #000000;
  transition: color 0.2s ease;
}
.map-page .map-controls .map-control-btn img {
  width: 24px;
  height: 24px;
}

.waypoint-marker {
  width: 12px;
  height: 12px;
  cursor: pointer;
}
.waypoint-marker .marker-inner {
  width: 100%;
  height: 100%;
  background: #009344;
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.waypoint-marker .marker-inner.start {
  background: #009344;
  width: 14px;
  height: 14px;
}
.waypoint-marker .marker-inner.end {
  background: #009344;
  width: 14px;
  height: 14px;
}
.waypoint-marker:hover .marker-inner {
  transform: scale(1.2);
  transition: transform 0.2s ease;
}

.mapboxgl-popup .mapboxgl-popup-content {
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
.mapboxgl-popup .mapboxgl-popup-content .popup-content {
  display: flex;
  gap: 0.75rem;
  padding: 0.5rem;
  min-width: 280px;
}
.mapboxgl-popup .mapboxgl-popup-content .popup-content .popup-image {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.mapboxgl-popup .mapboxgl-popup-content .popup-content .popup-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mapboxgl-popup .mapboxgl-popup-content .popup-content .popup-details {
  flex: 1;
  gap: 0px;
  padding: 0px;
}
.mapboxgl-popup .mapboxgl-popup-content .popup-content .popup-details h4 {
  font-size: 16px;
  color: #000000;
  margin: 0 0 4px 0;
  font-weight: 400;
}
.mapboxgl-popup .mapboxgl-popup-content .popup-content .popup-details .popup-coords {
  font-size: 14px;
  color: #CCCDCE;
  margin: 0 0 8px 0;
}
.mapboxgl-popup .mapboxgl-popup-content .popup-content .popup-details .popup-images {
  display: flex;
  gap: 0.25rem;
}
.mapboxgl-popup .mapboxgl-popup-content .popup-content .popup-details .popup-images .image-icon {
  width: 20px;
  height: 20px;
  background: #F2F2F3;
  border-radius: 4px;
}
.mapboxgl-popup .mapboxgl-popup-tip {
  border-top-color: #ffffff;
}

.user-location-marker {
  width: 20px;
  height: 20px;
}
.user-location-marker .dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #007AFF;
  border: 2px solid white;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.user-location-marker .pulse {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(0, 122, 255, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .map-page .map-sidebar {
    width: 100vw;
    max-width: 100vw;
    z-index: 1000;
    box-shadow: 2px 0 16px rgba(0, 0, 0, 0.2);
  }
  .map-page .menu-toggle-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 250 !important;
    width: 48px;
    height: 48px;
  }
  .map-page .map-controls {
    right: 16px;
    top: 16px;
  }
}

.hover\:bg-gray-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}

/*# sourceMappingURL=main.css.map */