/**
 * Theme Name:     Green Boy Group Child
 * Author:         Andy Wong
 * Template:       greenboygroup-custom
 * Text Domain:	   green-boy-group-child
 * Description:    Custom theme for Ingredient Wikipedia
 */

/* ==========================================================================
   SECTION 1 - PARENT THEME OVERRIDES
========================================================================== */

.page-template-template-encyclopedia .enc-hero-h1 {
  text-indent: 0;
  line-height: 1.1;
  font-size: 1.75rem;       /* matches your IndustryInc hero sizing   */
  background-image: none;   /* removes any bg-image logo the parent set */
  width: auto;
  height: auto;
  padding-bottom: 0;
  display: block;
}
@media screen and (min-width: 40em) {
  .page-template-template-encyclopedia .enc-hero-h1 {
    font-size: 2.75rem;
  }
}

/*
 * Parent theme adds padding-top to #content for the fixed mobile header.
 * On desktop the encyclopedia has its own hero band so no extra top
 * padding is needed past the theme's nav height.
 */
@media screen and (min-width: 64em) {
  .page-template-template-encyclopedia #content {
    padding-top: 0;
  }
}

/*
 * Parent input[type="search"] rule forces box-sizing: content-box.
 * Override to border-box so the search bar sizes correctly.
 */
.page-template-template-encyclopedia input[type="search"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}


/* ==========================================================================
   SECTION 2 - MAX-WIDTH WRAPPER
   Matches your 76rem (1216px) inner wrappers used on ingredients/news pages.
========================================================================== */

.page-template-template-encyclopedia .enc-wrap {
  max-width: 76rem;
  margin-left:  auto;
  margin-right: auto;
  padding-left:  1.5625rem;
  padding-right: 1.5625rem;
}
@media screen and (min-width: 40em) {
  .page-template-template-encyclopedia .enc-wrap {
    padding-left:  3.125rem;
    padding-right: 3.125rem;
  }
}


/* ==========================================================================
   SECTION 3 - HERO BAND
   Green (#009640) full-width band - mirrors .news__archive / .homepage__hero.
========================================================================== */


.page-template-template-encyclopedia .enc-hero {
  background-color: #009640;
  color: #fff;
  padding: 3.75rem 0;
}
@media screen and (min-width: 64em) {
  .page-template-template-encyclopedia .enc-hero {
    padding: 5rem 0;
  }
}

.page-template-template-encyclopedia .enc-hero-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
}

.page-template-template-encyclopedia .enc-hero-text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 320px;
          flex: 1 1 320px;
}

/* eyebrow label - IndustryInc uppercase, mirrors .cta__text h2 */
.page-template-template-encyclopedia .enc-eyebrow {
  display: block;
  margin-bottom: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 1.36px;
  font: 0.875rem / 1 "IndustryInc-Base", sans-serif;
  color: #fff;
}
@media screen and (min-width: 40em) {
  .page-template-template-encyclopedia .enc-eyebrow {
    font-size: 1.0625rem;
  }
}

.page-template-template-encyclopedia .enc-hero-sub {
  font-size: 1.1875rem;
  line-height: 1.68;
  color: #fff;
  margin-bottom: 0;
}


/* ==========================================================================
   SECTION 4 - SEARCH BOX
   White input + dark button - mirrors .footer__lower-nav-optin layout.
========================================================================== */

.page-template-template-encyclopedia .enc-search-box {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 300px;
          flex: 1 1 300px;
  max-width: 480px;
}

.page-template-template-encyclopedia .enc-search-label {
  display: block;
  margin-bottom: 0.25rem;
  font: 0.875rem "IndustryInc-Base", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.12px;
  color: rgba(255, 255, 255, .8);
}

.page-template-template-encyclopedia .enc-search-row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* Override the parent's full-width, border-1px-white input rule */
.page-template-template-encyclopedia .enc-search-row input[type="search"] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: auto;          /* override parent width:100% */
  height: 2.625rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #fff;
  border-right: 0;
  background: #fff;
  font-family: "FFBalanceWebProRegular", sans-serif;
  font-size: 1rem;
  color: #292311;
  outline: none;
  border-radius: 0;
  -webkit-appearance: textfield;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: 0;
  -webkit-transition: border-color .25s ease-in-out;
       -o-transition: border-color .25s ease-in-out;
          transition: border-color .25s ease-in-out;
}
.page-template-template-encyclopedia .enc-search-row input[type="search"]:focus {
  border-color: #ff6941;
  background-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.page-template-template-encyclopedia .enc-search-btn {
  height: 2.625rem;
  padding: 0 1rem;
  background: #292311;
  border: 1px solid #292311;
  color: #fff;
  font-family: "IndustryInc-Base", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1.12px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all .3s ease-in-out;
       -o-transition: all .3s ease-in-out;
          transition: all .3s ease-in-out;
  white-space: normal;
  line-height: 1;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
}
.page-template-template-encyclopedia .enc-search-btn:hover {
  background: #ff6941;
  border-color: #ff6941;
}

/* live-search dropdown */
.page-template-template-encyclopedia .enc-drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #cbc8b9;
  -webkit-box-shadow: 0 8px 24px rgba(41, 35, 17, .22);
          box-shadow: 0 8px 24px rgba(41, 35, 17, .22);
  z-index: 200;
  max-height: 320px;
  overflow-y: auto;
}
.page-template-template-encyclopedia .enc-drop.open {
  display: block;
}
.page-template-template-encyclopedia .enc-drop-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #ededed;
  color: #292311;
  text-decoration: none;
  -webkit-transition: background .15s;
       -o-transition: background .15s;
          transition: background .15s;
}
.page-template-template-encyclopedia .enc-drop-item:hover {
  background: #cbc8b9;
  color: #292311;
}
.page-template-template-encyclopedia .enc-drop-badge {
  font-family: "IndustryInc-Base", sans-serif;
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 2px 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 3px;
}
.page-template-template-encyclopedia .enc-drop-badge.ingredient { background: rgba(0,150,64,.15);   color: #009640; }
.page-template-template-encyclopedia .enc-drop-badge.article    { background: rgba(255,105,65,.15); color: #ff6941; }
.page-template-template-encyclopedia .enc-drop-badge.guide      { background: #cbc8b9;              color: #292311; }
.page-template-template-encyclopedia .enc-drop-title {
  display: block;
  font-family: "IndustryInc-Base", sans-serif;
  font-size: 0.875rem;
  letter-spacing: .03em;
  color: #292311;
}
.page-template-template-encyclopedia .enc-drop-sub  { font-size: 0.8125rem; color: #999; }
.page-template-template-encyclopedia .enc-drop-empty {
  padding: 1rem;
  text-align: center;
  color: #999;
  font-style: italic;
}


/* ==========================================================================
   SECTION 5 - SUB-NAV TABS
   Beige band with orange underline - mirrors .ingredients__breakdown-grid-nav.
========================================================================== */

.page-template-template-encyclopedia .enc-subnav {
  background-color: #cbc8b9;
  border-bottom: 2px solid #ededed;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.page-template-template-encyclopedia .enc-subnav::-webkit-scrollbar { display: none; }

.page-template-template-encyclopedia .enc-subnav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  padding: 0 1.5625rem;
}
@media screen and (min-width: 40em) {
  .page-template-template-encyclopedia .enc-subnav-inner {
    padding: 0 3.125rem;
  }
}

.page-template-template-encyclopedia .enc-subnav a {
  display: inline-block;
  padding: 0.75rem 1.125rem;
  font-family: "IndustryInc-Base", sans-serif;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 1.12px;
  color: #292311;
  border-bottom: 3px solid transparent;
  -webkit-transition: all .3s ease-in-out;
       -o-transition: all .3s ease-in-out;
          transition: all .3s ease-in-out;
  white-space: nowrap;
  text-decoration: none;
}
.page-template-template-encyclopedia .enc-subnav a:hover,
.page-template-template-encyclopedia .enc-subnav a.active {
  color: #ff6941;
  border-bottom-color: #ff6941;
}


/* ==========================================================================
   SECTION 6 - BODY GRID (main + sidebar)
========================================================================== */

.page-template-template-encyclopedia .enc-body-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 280px;
      grid-template-columns: 1fr 280px;
  max-width: 95rem;
  margin: 0 auto;
  min-height: 70vh;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 63.9375em) {
  .page-template-template-encyclopedia .enc-body-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   SECTION 7 - MAIN COLUMN
========================================================================== */

.page-template-template-encyclopedia .enc-main {
  padding: 2.5rem 1.5625rem 4rem;
  border-right: 1px solid #ededed;
}
@media screen and (min-width: 40em) {
  .page-template-template-encyclopedia .enc-main {
    padding: 2.5rem 3.125rem 4rem;
  }
}
@media screen and (max-width: 63.9375em) {
  .page-template-template-encyclopedia .enc-main {
    border-right: none;
    border-bottom: 1px solid #ededed;
  }
}

/* section header block */
.page-template-template-encyclopedia .enc-sec-block {
  margin-bottom: 2rem;
  margin-top: 3.75rem;
}
.page-template-template-encyclopedia .enc-sec-block:first-child {
  margin-top: 0;
}

.page-template-template-encyclopedia .enc-sec-overline {
  display: block;
  margin-bottom: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 1.36px;
  font: 0.875rem / 1 "IndustryInc-Base", sans-serif;
  color: #ff6941;
}
@media screen and (min-width: 40em) {
  .page-template-template-encyclopedia .enc-sec-overline {
    font-size: 1.0625rem;
  }
}

.page-template-template-encyclopedia .enc-sec-title {
  font-size: 1.5rem;
  font-family: "FFBalanceWebProRegular", sans-serif;
  color: #292311;
  font-weight: normal;
  margin-bottom: 0;
  border-bottom: 1px solid #ededed;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 40em) {
  .page-template-template-encyclopedia .enc-sec-title {
    font-size: 2.0625rem;
  }
}

/* notice / intro box - beige bg */
.page-template-template-encyclopedia .enc-notice {
  background-color: #cbc8b9;
  padding: 1rem 1.25rem;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  line-height: 1.68;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page-template-template-encyclopedia .enc-notice-icon {
  font-size: 1.125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
}
.page-template-template-encyclopedia .enc-notice p { margin: 0; }


/* ==========================================================================
   SECTION 8 - CATEGORY CARDS
   Hover-lift card - mirrors .about__milestones-grid-item-inner.
========================================================================== */

.page-template-template-encyclopedia .enc-cat-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -1.0625rem 0.5rem;
}
.page-template-template-encyclopedia .enc-cat-card {
  padding: 0 1.0625rem;
  width: 100%;
  margin-bottom: 2.125rem;
}
@media screen and (min-width: 40em) {
  .page-template-template-encyclopedia .enc-cat-card { width: 50%; }
}
@media screen and (min-width: 64em) {
  .page-template-template-encyclopedia .enc-cat-card { width: 33.33%; }
}

.page-template-template-encyclopedia .enc-cat-inner {
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px rgba(41, 35, 17, .18);
          box-shadow: 0 0 20px rgba(41, 35, 17, .18);
  padding: 1.875rem 1.875rem 2.5rem;
  height: 100%;
  -webkit-transition: all .3s ease-in-out;
       -o-transition: all .3s ease-in-out;
          transition: all .3s ease-in-out;
  border-top: 3px solid #ff6941;
}
.page-template-template-encyclopedia .enc-cat-inner:hover {
  -webkit-transform: translateY(-12px);
      -ms-transform: translateY(-12px);
       -o-transform: translateY(-12px);
          transform: translateY(-12px);
  -webkit-box-shadow: 0 0 50px rgba(41, 35, 17, .22);
          box-shadow: 0 0 50px rgba(41, 35, 17, .22);
}

.page-template-template-encyclopedia .enc-cat-icon {
  display: block;
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.page-template-template-encyclopedia .enc-cat-name {
  font-family: "IndustryInc-Base", sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #292311;
  margin-bottom: 0.25rem;
}
.page-template-template-encyclopedia .enc-cat-name a {
  color: inherit;
  text-decoration: none;
}
.page-template-template-encyclopedia .enc-cat-count {
  display: block;
  font-family: "IndustryInc-Base", sans-serif;
  font-size: 0.6875rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}
.page-template-template-encyclopedia .enc-cat-links {
  list-style: none;
  margin: 0;
  font-size: 1rem;
  line-height: 1.68;
}
.page-template-template-encyclopedia .enc-cat-links li { margin-bottom: 0.1rem; }
.page-template-template-encyclopedia .enc-cat-links a  { color: #292311; }
.page-template-template-encyclopedia .enc-cat-links a:hover { color: #ff6941; }

.page-template-template-encyclopedia .enc-cat-more {
  display: inline-block;
  margin-top: 0.625rem;
  font-family: "IndustryInc-Base", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.12px;
  color: #ff6941;
}
.page-template-template-encyclopedia .enc-cat-more:hover { color: #ff4614; }


/* ==========================================================================
   SECTION 9 - FEATURED GRID
   Orange-top-border card - mirrors .news__events-item date box.
========================================================================== */

.page-template-template-encyclopedia .enc-feat-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -0.6875rem 0.5rem;
}
.page-template-template-encyclopedia .enc-feat-item {
  padding: 0 0.6875rem;
  width: 100%;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 40em) {
  .page-template-template-encyclopedia .enc-feat-item { width: 50%; }
}
@media screen and (min-width: 64em) {
  .page-template-template-encyclopedia .enc-feat-item { width: 33.33%; }
}

.page-template-template-encyclopedia .enc-feat-img {
  border-top: 34px solid #ff6941;
  -webkit-box-shadow: 0 0 20px rgba(41, 35, 17, .18);
          box-shadow: 0 0 20px rgba(41, 35, 17, .18);
  background: #cbc8b9;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: visible;
  margin-bottom: 1.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-box-shadow .3s ease-in-out;
          transition: box-shadow .3s ease-in-out;
}
.page-template-template-encyclopedia .enc-feat-item:hover .enc-feat-img {
  -webkit-box-shadow: 0 0 40px rgba(41, 35, 17, .28);
          box-shadow: 0 0 40px rgba(41, 35, 17, .28);
}
.page-template-template-encyclopedia .enc-feat-img img {
  width: 100%; height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-template-template-encyclopedia .enc-feat-img-ph {
  font-style: italic;
  font-size: 0.875rem;
  color: #999;
}

.page-template-template-encyclopedia .enc-feat-type {
  margin-bottom: 0.3125rem;
  text-transform: uppercase;
  letter-spacing: 1.36px;
  font: 0.875rem / 1 "IndustryInc-Base", sans-serif;
  color: #ff6941;
}
.page-template-template-encyclopedia .enc-feat-title {
  font-size: 1.25rem;
  font-family: "FFBalanceWebProRegular", sans-serif;
  font-weight: normal;
  color: #292311;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.page-template-template-encyclopedia .enc-feat-title a       { color: #292311; }
.page-template-template-encyclopedia .enc-feat-title a:hover { color: #ff6941; text-decoration: none; }
.page-template-template-encyclopedia .enc-feat-excerpt {
  font-size: 1rem;
  line-height: 1.68;
  margin-bottom: 0.5rem;
}
.page-template-template-encyclopedia .enc-feat-date {
  text-transform: uppercase;
  letter-spacing: 1.36px;
  font: 0.875rem / 1 "IndustryInc-Base", sans-serif;
  color: #999;
}


/* ==========================================================================
   SECTION 10 - ALPHABET BAR
   Each letter tile uses your .button border style.
========================================================================== */

.page-template-template-encyclopedia .enc-alpha-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
  margin: 1.25rem 0 1.875rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #ededed;
}
.page-template-template-encyclopedia .enc-alpha-bar a,
.page-template-template-encyclopedia .enc-alpha-bar span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2rem;
  height: 2rem;
  font-family: "IndustryInc-Base", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 1px;
  border: 1px solid #292311;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out;
       -o-transition: all .3s ease-in-out;
          transition: all .3s ease-in-out;
  color: #292311;
}
.page-template-template-encyclopedia .enc-alpha-bar a:hover {
  background-color: #292311;
  color: #fff;
}
.page-template-template-encyclopedia .enc-alpha-bar span {
  border-color: #cbc8b9;
  color: #cbc8b9;
  cursor: default;
}


/* ==========================================================================
   SECTION 11 - INDEX SECTIONS
========================================================================== */

.page-template-template-encyclopedia .enc-alpha-sec  { margin-bottom: 2.5rem; }
.page-template-template-encyclopedia .enc-alpha-letter {
  font: 2.25rem / 1 "IndustryInc-Base", sans-serif;
  color: #ff6941;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #ededed;
}
.page-template-template-encyclopedia .enc-entry-list {
  list-style: none;
  margin: 0;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 0 1.25rem;
}
.page-template-template-encyclopedia .enc-entry-list li  { font-size: 1rem; line-height: 1.95; }
.page-template-template-encyclopedia .enc-entry-list a   { color: #292311; }
.page-template-template-encyclopedia .enc-entry-list a:hover { color: #ff6941; }

.page-template-template-encyclopedia .enc-type-pill {
  font-family: "IndustryInc-Base", sans-serif;
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 1px 4px;
  margin-left: 4px;
  vertical-align: middle;
}
.page-template-template-encyclopedia .enc-type-pill.ingredient { background: rgba(0,150,64,.12);   color: #009640; }
.page-template-template-encyclopedia .enc-type-pill.article    { background: rgba(255,105,65,.12); color: #ff6941; }


/* ==========================================================================
   SECTION 12 - SIDEBAR
========================================================================== */

.page-template-template-encyclopedia .enc-sidebar {
  padding: 2.5rem 1.5625rem;
  background: #cbc8b9;
}
@media screen and (min-width: 40em) {
  .page-template-template-encyclopedia .enc-sidebar { padding: 2.5rem; }
}

.page-template-template-encyclopedia .enc-sb-block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #999;
}
.page-template-template-encyclopedia .enc-sb-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.page-template-template-encyclopedia .enc-sb-overline {
  display: block;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.36px;
  font: 0.875rem / 1 "IndustryInc-Base", sans-serif;
  color: #292311;
  border-bottom: 2px solid #292311;
  padding-bottom: 0.375rem;
}

.page-template-template-encyclopedia .enc-stats-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.page-template-template-encyclopedia .enc-stat-box {
  background: #fff;
  padding: 1rem 0.5rem;
  text-align: center;
  -webkit-box-shadow: 0 0 12px rgba(41, 35, 17, .1);
          box-shadow: 0 0 12px rgba(41, 35, 17, .1);
}
.page-template-template-encyclopedia .enc-stat-num {
  display: block;
  font: 2rem / 1 "IndustryInc-Base", sans-serif;
  color: #ff6941;
  margin-bottom: 0.25rem;
}
.page-template-template-encyclopedia .enc-stat-lbl {
  font-family: "IndustryInc-Base", sans-serif;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #292311;
}

/* sidebar link lists - mirrors .footer__lower-nav ul */
.page-template-template-encyclopedia .enc-sb-list {
  list-style: none;
  margin: 0;
}
.page-template-template-encyclopedia .enc-sb-list li {
  border-bottom: 1px solid rgba(153, 153, 153, .35);
  font-size: 1rem;
  line-height: 1;
}
.page-template-template-encyclopedia .enc-sb-list li:last-child { border-bottom: none; }
.page-template-template-encyclopedia .enc-sb-list a {
  display: block;
  padding: 0.625rem 0;
  color: #292311;
  -webkit-transition: color .3s ease-in-out;
       -o-transition: color .3s ease-in-out;
          transition: color .3s ease-in-out;
}
.page-template-template-encyclopedia .enc-sb-list a:hover {
  color: #ff6941;
  text-decoration: none;
}
.page-template-template-encyclopedia .enc-sb-count {
  font-family: "IndustryInc-Base", sans-serif;
  font-size: 0.625rem;
  color: #999;
  margin-left: 4px;
}

/* tag cloud - your .button style on each tag */
.page-template-template-encyclopedia .enc-tag-cloud {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.375rem;
}
.page-template-template-encyclopedia .enc-tag-cloud a {
  display: inline-block;
  border: 1px solid #292311;
  background-color: transparent;
  padding: 0.25rem 0.5rem;
  font-family: "IndustryInc-Base", sans-serif;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 1.12px;
  color: #292311;
  -webkit-transition: all .3s ease-in-out;
       -o-transition: all .3s ease-in-out;
          transition: all .3s ease-in-out;
  text-decoration: none;
}
.page-template-template-encyclopedia .enc-tag-cloud a:hover {
  background-color: #ff6941;
  border-color: #ff6941;
  color: #fff;
}


/* ==========================================================================
   SECTION 13 - FOOTER CTA BAND
   Mirrors your .footer__cta orange band exactly.
========================================================================== */

.page-template-template-encyclopedia .enc-foot-cta {
  background-color: #ff6941;
  padding: 1.625rem 1.25rem;
  color: #fff;
  font-family: "IndustryInc-Base", sans-serif;
}
.page-template-template-encyclopedia .enc-foot-cta-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  max-width: 76rem;
  margin: 0 auto;
}
.page-template-template-encyclopedia .enc-foot-cta p {
  margin: 0;
  letter-spacing: 1.36px;
  font-size: 0.9375rem;
  text-transform: uppercase;
}
@media screen and (max-width: 39.9375em) {
  .page-template-template-encyclopedia .enc-foot-cta p {
    width: 100%;
    text-align: center;
  }
}