:root {
  --cypress: #06534f;
  --bright-pine: #03a171;
  --sapling: #bcdc9f;
  --riverglass: #75d1f4;
  --cypress-dark: #043b38;
  --cypress-mid: #07635e;
  --white: #fff;
  --off-white: #f7f9f7;
  --border-light: #d8e8d8;
  --text-dark: #1a2e1a;
  --text-mid: #3a503a;
  --text-muted: #6a8a6a;
}

.node__content {
  width: 100% !important;
  margin: 0 !important;
}

.hero-band {
  background: var(--cypress);
  padding: 55px 5%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  @media (max-width: 564px) {
    grid-template: none;
  }
  @media (max-width: 420px) {
    padding: 5%;
  }
}

.hero-taxonomy {
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--sapling);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero-name {
  font-size: 32px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 4px;
}

.hero-sci {
  font-size: 16px;
  color: var(--sapling);
  font-style: italic;
  margin-bottom: 16px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  border: 0.5px solid;
}

.tag-pine {
  background: rgba(3, 161, 113, 0.2);
  color: var(--sapling);
  border-color: var(--bright-pine);
}

.tag-sapling {
  background: rgba(188, 220, 159, 0.15);
  color: var(--sapling);
  border-color: rgba(188, 220, 159, 0.5);
}

.tag-river {
  background: rgba(117, 209, 244, 0.15);
  color: var(--riverglass);
  border-color: rgba(117, 209, 244, 0.4);
}

.stats-panel {
  background: rgba(0, 0, 0, 0.25);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px 18px;
  min-width: 190px;
}

.stats-panel h3 {
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--sapling);
  text-transform: uppercase;
  margin-bottom: 10px;
  @media (max-width: 564px) {
    margin-top: 10px
  }
}

.stat-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.07);
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stat-val {
  font-size: 16px;
  color: var(--sapling);
  font-weight: 500;
  text-align: right;
}

.about-section {
  padding: 25px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  border-bottom: 0.5px solid var(--border-light);
  margin: auto;
  max-width: 1400px;
  @media (max-width: 564px) {
    grid-template: none;
  }
}

.about-text {
  /*font-size: 1.25vw;*/
  /*line-height: 1.75vw;*/
  padding: 28px 24px;
  border-right: 0.5px solid var(--border-light);
  color: #555; /*dark grey text*/
}

.eyebrow {
  font-size: 20px;
  letter-spacing: 0.08em;
  /*color: var(--bright-pine);*/
  color: #02865e;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--bright-pine);
}

.about-text h2 {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 8px;
}

.about-text h2 em {
  color: var(--cypress);
  font-style: normal;
}

.green-rule {
  width: 32px;
  height: 2px;
  background: var(--bright-pine);
  margin-bottom: 16px;
}

.about-text p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.specs-panel {
  padding: 24px 20px;
  background: var(--off-white);
}

.specs-panel h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid var(--border-light);
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 0.5px solid var(--border-light);
  font-size: 16px;
  align-items: start;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-key {
  /*color: var(--text-muted);*/
  color: #455a45;
  opacity: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 16px;
  padding-top: 1px;
}

.spec-val {
  /*color: var(--text-dark);*/
  color: #555; /*Dark grey text*/
  font-weight: 500;
  text-align: right;
}


.seasonal-section {
  padding: 25px 5%;
  background: var(--white);
  border-bottom: 0.5px solid var(--border-light);
}

.seasonal-section h2 {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 20px;
  margin-top: 6px;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.season-card {
  border-radius: 8px;
  padding: 14px;
  background: var(--off-white);
  border: 0.5px solid var(--border-light);
  border-top: 2px solid var(--bright-pine);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.season-card.spring {
  border-top-color: var(--bright-pine);
}

.season-card.summer {
  border-top-color: #d4a017;
}

.season-card.fall {
  border-top-color: #c45e2a;
}

.season-card.winter {
  border-top-color: var(--riverglass);
}

.season-name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.season-body {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 6px;
}

.season-tip {
  font-size: 14px;
  color: var(--cypress);
  font-style: italic;
}


.accordion {
  border: 0.5px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  /*display: flex;*/
  justify-content: space-between;
  align-items: center;
  padding: 20px 16px;
  background: var(--off-white);
  border: none;
  cursor: pointer;
  font-size: 25px;
  font-weight: 500;
  color: var(--text-dark);
  /*text-align: left;*/
}

.accordion-trigger:hover, .accordion-trigger:active, .accordion-trigger:focus {
  background: var(--off-white) !important;
  color: var(--text-dark) !important;
}

.accordion-trigger svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
  stroke-width: 2;
  fill: none;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.accordion-trigger.open svg {
  transform: rotate(180deg);
}

.accordion-body {
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 0;
  margin-bottom: 1.5em;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
  max-height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease, max-height .8s ease;
  transform: translateY(-10px);
  background: var(--white);
  border-top: 0.5px solid var(--border-light);
  border-bottom: 0.5px solid var(--border-light);
}

.accordion-body.open {
  max-height: 800px;
  opacity: 1;
  transform: translateY(0);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 0;
  /*margin-bottom: 0;*/

  @media (max-width: 700px) {
    grid-template-columns: 1fr;
    max-height: max-content;
  }
}

.block-resource-search-form-tree-page-block {

  .form-actions {
    margin: 0 !important;
    background: var(--cypress-dark);
    text-align: center;
  }

  .resource-search-tree-page-form {
    width: 100%;
    background: var(--cypress-dark);
    padding: 32px 10%;
    align-items: center;
    text-align: center;
    h3 {
      color: var(--white);
      margin-bottom: 0;
    }
    h2.tree-page-form-header {
      color: var(--white);
      font-size: 2.2vw;
    }
    .resource-search-tree-page-input-wrapper {
      display: grid;
      grid-template-columns: 1fr 0.2fr;
      width: 50%;
      margin: auto;
    }

    .resource-search-input-tree-page-form {
      background: white;
      border-radius: 10px;
      padding: 10px 15px 10px;
      width: 100%;
      box-sizing: border-box;
      outline: none;
      border: 2px solid #06534f;
      color: #333;
      font-size: 16px;
    }
  }
  .form-actions {
    margin: 0 !important;
    background: var(--cypress-dark);
    align-self: center;
  }

  .button {
    border-radius: 10px;
    text-align: center !important;
    background: var(--bright-pine);
    border: solid var(--white) !important;
    margin-bottom: 0;
    &:hover {
      background: var(--cypress-mid);
      color: var(--riverglass);
      transition: background 250ms ease, color 250ms ease;
    }
  }

  .zone-matched-verbiage {
    font-size: 1.3rem;
    width: 50%;
    margin: 20px auto 0 auto;
    color: white;
  }
  .zone-pills-verbiage {
    font-size: 2.5vh;
    margin-bottom: 10px;
    color: white;
    font-weight: bold;
  }

  .zone-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-self: center;
  }

  .zone-pill {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    border: 0.5px solid rgba(255, 255, 255, 0.15);
  }

  .zone-pill.active {
    background: var(--bright-pine);
    color: var(--white);
    border-color: var(--bright-pine);
  }
}

.view-tree-page-images-eva {
  .views-row {
    .views-field-field-tree-image-media-multiref {
      padding: 5em;
      background: #043b38;
      display: flex;
      justify-content: space-evenly;
      flex-direction: column;

      @media(max-width: 1280px) {
        padding: 4vw 5vw;
      }
      .field-content {
        gap: 24px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        img {
          border-radius: 15px;
        }
      }
    }
  }
}