*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

:root {
  --wrap: 1050px;
  --blue: #087db1;
  --navy: #0E79B2;
  --dark: #2f3438;
  --red: #F55B47;
  --teal: #169f97;
  --yellow: #f4c400;
  --ink: #1e2226;
  --muted: #6b7280;
  --light-muted: #9ca3af;
  --line: #e5e7eb;
  --dashed: #d1d5db;
  --serif: "Domine", serif;
  --inter: "Inter", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--inter);
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  line-height: 1.5;
  min-width: 320px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

img {
  display: block;
  width: 100%;
  border-radius: 4px;
}

button,
input {
  font: inherit;
}

.shell {
  width: min(calc(100% - 48px), var(--wrap));
  margin: 0 auto;
}


.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  border-radius: 4px;
}

.tag-blue {
  background: #0E79B2;
}

.tag-red {
  background: #f05a4a;
}

.tag-dark {
  background: #2a2e33;
}

.tag-teal {
  background: #169f97;
}

.tag-xyz {
  background: #f4c400;
  color: #fff;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 48px), var(--wrap));
  margin: 0 auto;
  padding: 12px 0 0 0;
}

.brand {
  display: block;
  width: 210px;
  flex-shrink: 0;
}

.brand img {
  width: 100%;
  height: auto;
}

.hdr-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.hdr-top-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hdr-top-row>img {
  width: 115px;
  height: 13px;
  flex-shrink: 0;
}

  .hdr-top-row a {
    position: relative;
    top: 2px;
  }

  .hdr-top-row a rect {
    transition: all .3s ease-in-out;
  }

  .hdr-top-row a:hover rect {
    fill: #0B72B5;
  }

.search-box {
  display: flex;
  align-items: center;
  width: 245px;
  height: 34px;
}

.search-box input {
  flex: 1;
  height: 100%;
  border: 0;
  outline: 0;
  padding: 0 12px;
  font-size: 13px;
  color: #374151;
  border: 1px solid #d1d5db;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  transition: all .3s ease-in-out;
}

  .search-box input:focus {
    border: 1px solid #333;
  }

.search-box button {
  width: 40px;
  height: 100%;
  border: 0;
  background: transparent;
  color: #374151;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-toggle-box {
  width: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.site-header.nav-open .nav-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  align-items: center;
}

  .main-nav a {
    padding: 12px 0;
  }

.main-nav>a:hover {
  color: var(--red);
}

.nav-posts-wrap {
  position: relative;
}

.nav-posts-trigger {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  height: 30px;
  color: inherit;
}

.caret {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  line-height: 1;
}

.nav-posts-trigger.active {
  color: var(--red);
  pointer-events: none;
}

.nav-posts-trigger.active .caret {
  color: var(--red);
}

.nav-posts-trigger.active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
}

.posts-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: -60px;
  z-index: 999;
  width: 210px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .10);
  display: none;
}

.nav-posts-wrap:hover .posts-dropdown {
  display: block;
}

.posts-dropdown a {
  display: block;
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #4b5563;
  border-bottom: 1px solid #f0f0f0;
}

.posts-dropdown a:last-child {
  border-bottom: 0;
}

.posts-dropdown a:nth-child(1):hover {
  color: #0E79B2;
}

.posts-dropdown a:nth-child(2):hover {
  color: #333;
}

.posts-dropdown a:nth-child(3):hover {
  color: var(--teal);
}

.posts-dropdown a:nth-child(4):hover {
  color: var(--yellow);
}

.posts-dropdown a:nth-child(5):hover {
  color: var(--red);
}

.nav-contribute {
  height: 35px;
  padding: 0 20px !important;
  border-radius: 20px;
  background: var(--red);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

  .nav-contribute:hover,
  .navbtn-active {
    background: #333;
  }

.ad-banner {
  width: min(calc(100% - 48px), 1050px);
  height: auto;
  margin: 36px auto 26px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 14px;
  font-family: var(--serif);
}

.ad-square {
  background: #eee;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 14px;
  font-family: var(--serif);
}

.ad-square.white {
  background: #fff;
}


.hero {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 22px;
  padding-bottom: 32px;
}

.hero-main {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: #c8e8f5;
  border-radius: 4px;
}

.hero-main>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main>.tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 80px 26px 26px;
  background: linear-gradient(to bottom, transparent, rgba(10, 15, 22, .86));
  color: #fff;
}

.hero-overlay h1 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

  .hero-overlay h1:hover {
    text-decoration: underline;
  }

.hero-overlay h1 u {
  text-decoration: underline;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
}

.hero-author {
  color: #f9c033;
}

.hero-author u {
  text-decoration: underline;
}

.hero-pipe {
  color: #f9c033;
}

.hero-time {
  color: #f9c033;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.side-story {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  cursor: pointer;
}

  .side-story:hover h3,
  .cat-stack-item:hover h4,
  .cat-strip-item:hover h4,
  .hooks-feature:hover h3 {
    color: var(--red);
    text-decoration: underline;
  }

.side-story:first-child {
  padding-top: 0;
}

.side-story:last-child {
  border-bottom: 0;
}

.side-story img {
  width: 100px;
  height: 74px;
  object-fit: cover;
  background: #e2eef4;
  flex-shrink: 0;
  border-radius: 4px;
}

.side-story h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #1a1e24;
  margin-bottom: 4px;
  transition: all .3s ease-in-out;
  text-wrap: balance;
}

.side-story h3 u {
  text-decoration: underline;
}

.side-story time {
  font-size: 13px;
  font-weight: 400;
  color: var(--light-muted);
}

.book-hero {
  position: relative;
  overflow: hidden;
  background:
    url("assets/images/effects/Effect1.png") right bottom / 300px 200px no-repeat,
    linear-gradient(120deg, #F1DEFF 0%, #9CD6FF 25%, #88D8FF 50%, #DCEFFF 75%, #EAF4FF 100%);
  padding: 40px 0;
}

.book-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 280px 420px;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.book-tag {
  position: absolute;
  top: -40px;
  left: 0;
  border-radius: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.book-img-wrap {
  display: flex;
  justify-content: center;
}

.book-img-wrap img {
  object-fit: contain;
}

.book-text h2 {
  margin-top: 0;
  font-size: 32px;
  font-weight: 600;
  color: #333;
  line-height: 1.1;
  margin-bottom: 16px;
}

.book-text p {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  color: #333;
  line-height: 1.55;
  margin-bottom: 24px;
}

.book-btns {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 125px;
  height: 45px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
}

.btn-navy {
  background: #446ABE;
  color: #fff;
  transition: all .3s ease-in-out;
}

  .btn-navy:hover {
    background: #333;
  }

.btn-outline {
  min-width: 200px;
  border: 1px solid #446ABE52;
  color: #446ABE;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(8px);
  transition: all .3s ease-in-out;
}

  .btn-outline:hover {
    background: #446ABE;
    border: 1px solid #446ABE;
    color: #FFF;
  }


.latest {
  padding: 48px 0 50px;
}

.latest-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.latest-heading h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

.latest-divider {
  display: block;
  width: 0;
  height: 28px;
  border-left: 1px solid #d1d5db;
}

.latest-heading p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lcard {
  min-width: 0;
  margin: 0 auto;
}

.lcard-thumb {
  position: relative;
  height: 185px;
  overflow: hidden;
  background: #e2eef4;
  margin-bottom: 14px;
}

.lcard-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.lcard-tag {
  position: absolute;
  top: 0;
  right: 12px;
  padding: 5px 10px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  font-size: 10px;
  color: #fff;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: 80%;
  text-align: right;
}

.ad-square {
  border-bottom: 1px solid var(--line);
  height: 250px;
  width: 300px;
  margin: 0 auto;
}

.lcard h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  color: #1a1e24;
  margin-bottom: 9px;
  transition: all .3s ease-in-out;
}

  .lcard:hover h3 {
    color: var(--red);
    text-decoration: underline;
  }

.lcard p {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.55;
  color: #4b5563;
  margin-bottom: 14px;
}

.lcard-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.lcard-author {
  color: var(--muted);
  /* color: var(--blue);
  font-weight: 600;
  text-decoration: underline; */
}

  /* .lcard-author:hover,
  .cat-author:hover {
    color: var(--red);
  } */

.lcard-sep {
  color: var(--dashed);
  font-weight: 400;
}

.lcard-time {
  color: var(--muted);
}

.more-stories {
  display: block;
  width: 100%;
  height: 54px;
  margin-top: 36px;
  background: linear-gradient(to bottom,  #fafafa 0%,#f0f0f0 100%);
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  color: #374151;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 54px;
}

.more-stories:hover {
  background: linear-gradient(to bottom,  #f0f0f0 0%,#fafafa 100%);
}


.cat-band {
  padding: 50px 0 48px;
}

.rev-band {
  background:
    url("assets/images/effects/Effect1.png") right bottom / 300px 200px no-repeat,
    linear-gradient(120deg, #daeaf5 0%, #e8f2f8 40%, #f2ede2 100%);
}

.causes-band {
  background: #fff;
  padding-bottom: 0;
}

.baes-band {
  background: #fff;
  padding-bottom: 48px;
}

.cat-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}

.cat-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.blue-title {
  color: #0E79B2;
}

.dark-title {
  color: #1e2226;
}

.red-title {
  color: #f05a4a;
}

.see-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  min-width: 92px;
  padding: 0 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all .3s ease-in-out;
}

  .see-all-btn:hover {
    background: #333;
    color: #FFF;
  }

.see-all-blue {
  background: var(--navy);
  color: #fff;
}

.see-all-dark {
  background: transparent;
  border: 1.5px solid #ccc;
  color: var(--dark);
}

  .see-all-dark:hover {
    border: 1px solid #333;
    color: #FFF;
  }

.see-all-red {
  background: var(--red);
  color: #fff;
}

.cat-rule {
  position: relative;
  height: 3px;
  margin-bottom: 38px;
}

.blue-rule {
  background: #0E79B2;
}

  .blue-rule:after,
  .dark-rule:after,
  .teal-rule:after,
  .yellow-rule:after,
  .red-rule:after {
    content: '';
    position: absolute;
    bottom: -3px;
    display: block;
    width: 100%;
    height: 1px;
    background: #0E79B2;
  }

.dark-rule {
  background: #2a2e33;
}

  .dark-rule:after {
    background: #2a2e33;
  }

.red-rule {
  background: var(--red);
}

  .red-rule:after {
    background: var(--red);
  }

.cat-body {
  display: grid;
  grid-template-columns: 1fr 33px minmax(0, 313px) 20px minmax(0, 314px);
  column-gap: 0;
  row-gap: 18px;
  align-items: start;
}

.cat-copy {
  grid-column: 1;
  grid-row: 1;
}

.cat-center {
  grid-column: 3;
  grid-row: 1;
}

.cat-byline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.cat-author {
  /* font-weight: 600;
  text-decoration: underline; */
  color: var(--muted);
}

.blue-author {
  color: var(--blue);
}

.cat-pipe {
  color: #ccc;
}

.cat-age {
  color: var(--muted);
}

.cat-story-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.12;
  color: #1a1e24;
  margin-bottom: 16px;
  transition: all .3s ease-in-out;
  cursor: pointer;
}

  .cat-story-title:hover {
    color: var(--red);
    text-decoration: underline;
  }

.cat-excerpt {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.42;
  color: #363a3f;
  margin-bottom: 20px;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  height: 36px;
  padding: 0 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  transition: all .3s ease-in-out;
  text-align: center;
}

  .read-more-btn:hover {
    background: #333;
  }

.blue-btn {
  background: var(--navy);
  color: #fff;
}

.ghost-btn {
  background: transparent;
  border: 1.5px solid #ccc;
  color: var(--dark);
}

  .ghost-btn:hover {
    border: 1px solid #333;
    color: #FFF;
  }

.red-btn {
  background: var(--red);
  color: #fff;
}

.cat-img-wrap {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #cce0ee;
  border-radius: 4px;
}

.cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.cat-stack {
  grid-column: 5;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 20px;
  border-left: 1px dashed var(--dashed);
  min-width: 0;
}

.cat-stack-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  min-height: 84px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--dashed);
  align-items: center;
  min-width: 0;
}

.cat-stack-item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.cat-stack-item img {
  width: 100px;
  height: 74px;
  object-fit: cover;
  background: #dce8ee;
  flex-shrink: 0;
  border-radius: 4px;
}

.cat-stack-item h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #1e2226;
  margin-bottom: 4px;
  text-wrap: balance;
  transition: all .3s ease-in-out;
  cursor: pointer;
}

.cat-stack-item h4 u {
  text-decoration: underline;
}

.cat-stack-item time {
  font-size: 13px;
  color: var(--light-muted);
}

.cat-strip {
  grid-column: 1 / 4;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px dashed var(--dashed);
}

.cat-strip-item {
  position: relative;
  min-height: 112px;
  padding: 26px 42px 18px 10px;
  border-right: 1px dashed var(--dashed);
  min-width: 0;
}

.cat-strip-item:last-child {
  border-right: 0;
}

.cat-strip-item+.cat-strip-item {
  padding-left: 16px;
}

.cat-strip-item h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #1e2226;
  margin-bottom: 4px;
  text-wrap: balance;
  transition: all .3s ease-in-out;
  cursor: pointer;
}

.cat-strip-item h4 u {
  text-decoration: underline;
}

.cat-strip-item time {
  font-size: 13px;
  color: var(--light-muted);
}

.strip-arrow {
  position: absolute;
  right: 16px;
  bottom: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .3s ease-in-out;
  text-align: center;
}

  .cat-strip-item:hover .strip-arrow {
    background: var(--red);
    color: #fff;
  }

.strip-arrow::before {
  content: "\203A";
  font-size: 20px;
  transform: translate(1px, -1px);
  display: block;
}

.strip-blue {
  background: var(--navy);
}

.strip-dark {
  background: #fff;
  border: 1px solid #dfe3e8;
  color: #1e2226;
}

  .cat-strip-item:hover .strip-dark {
    border: 1px solid var(--red);
  }

.strip-red {
  background: var(--red);
}

.contrib-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  height: auto;
  min-height: 62px;
  margin: 32px auto;
  padding: 14px 24px;
  border-radius: 32px;
  background: linear-gradient(90deg, #fdf5d8 0%, #fdf8ee 50%, #fdeee6 100%);
  flex-wrap: wrap;
}

.contrib-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -10px;
  overflow: hidden;
}

.av:first-child {
  margin-left: 0;
}

.av1 {
  background: linear-gradient(135deg, #f9a07a, #e06060);
}

.av2 {
  background: linear-gradient(135deg, #6aafcf, #3d7ab5);
}

.av3 {
  background: linear-gradient(135deg, #a0d4a0, #4a9a6a);
}

.contrib-text {
  margin: 0;
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  color: #1e2226;
  min-width: 140px;
}

.contrib-text strong {
  color: var(--red);
  font-weight: 600;
}

.contrib-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 24px;
  border-radius: 20px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  transition: all .3s ease-in-out;
}

  .contrib-btn:hover {
    background: #333;
  }

.hooks-band {
  padding: 52px 0 60px;
  background:
    url("assets/images/effects/Effect1.png") right bottom / 300px 200px no-repeat,
    linear-gradient(120deg, #daf0ee 0%, #e8f4f0 40%, #f3f0e2 100%);
}

.hooks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 340px;
  gap: 32px;
  align-items: start;
}

.hooks-col-head {
  margin-bottom: 22px;
}

.hooks-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}

.teal-title {
  color: var(--teal);
}

.yellow-title {
  color: var(--yellow);
}

.hooks-rule {
  position: relative;
  height: 3px;
  border-radius: 1px;
}

.teal-rule {
  background: var(--teal);
}

  .teal-rule:after {
    background: var(--teal);
  }

.yellow-rule {
  background: var(--yellow);
}

  .yellow-rule:after {
    background: var(--yellow);
  }

.hooks-feature .hooks-thumb {
  height: 185px;
  overflow: hidden;
  background: #d8eeec;
  margin-bottom: 13px;
}

.hooks-feature .hooks-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hooks-feature h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1e24;
  margin-bottom: 8px;
  transition: all .3s ease-in-out;
  cursor: pointer;
}

.hooks-feature p {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.55;
  color: #4b5563;
  margin-bottom: 12px;
}

.hooks-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, .08);
  flex-wrap: wrap;
}

.link-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 18px;
}

.link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, .08);
  margin-top: 6px;
  background: rgba(255, 255, 255, .5);
  border-radius: 4px;
}

.teal-links a {
  border-color: rgba(22, 159, 151, .15);
  background: rgba(240, 255, 253, .5);
}

.yellow-links a {
  border-color: rgba(244, 196, 0, .18);
  background: rgba(255, 252, 220, .5);
}

.link-list a span {
  font-size: 14px;
  font-weight: 600;
  color: #1e2226;
  flex: 1;
  min-width: 0;
  line-height: 1.2;
  transition: all .3s ease-in-out;
}

  .link-list a:hover span {
    color: var(--red);
    text-decoration: underline;
  }

.link-list a span u {
  text-decoration: underline;
}

.link-list a time {
  font-size: 13px;
  color: var(--light-muted);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}

.see-all-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  transition: all .3s ease-in-out;
}

  .see-all-small:hover {
    background: #333;
    color: #fff;
  }

.teal-small {
  background: var(--teal);
}

.yellow-small {
  background: var(--yellow);
}

.hooks-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hooks-book-card {
    background:
    url("assets/images/effects/Effect1.png") right bottom / 250px 170px no-repeat,
    linear-gradient(120deg, #F1DEFF 0%, #9CD6FF 25%, #88D8FF 50%, #DCEFFF 75%, #EAF4FF 100%);
  padding: 24px 22px 22px;
  text-align: center;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.hooks-book-badge {
  position: absolute;
  left: -32px;
  top: 82%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}

  .hooks-book-badge:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    margin-left: 12px;
    width: 240px;
    height: 1px;
    background: linear-gradient(to right,  #ffffff 0%, rgba(255,255,255,0) 100%);
  }

.hooks-book-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hooks-book-card>img {
  width: 200px;
  min-height: 200px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.hooks-book-card .btn {
  min-width: 125px;
  height: 45px;
  margin-bottom: 10px;
}

.browse-link {
  display: block;
  color: #446ABE;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  transition: all .3s ease-in-out;
}

  .browse-link:hover {
    color: #333;
  }

.notify-band {
  background: #333;
  padding: 30px 0 29px;
  color: #fff;
}

.notify-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 35px;
  align-items: center;
}

.notify-text h2 {
  margin-top: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 6px;
}

.notify-text p {
  margin: 0;
  max-width: 250px;
  font-family: var(--serif);
  font-size: 14px;
  color: #dedede;
  line-height: 1.4;
}

.notify-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 24px;
  align-items: end;
}

.notify-field {
  position: relative;
  display: flex;
  flex-direction: column;
}

  .notify-field:before,
  .notify-field:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 1px;
    height: 6px;
    background: #d7d7d7;
  }

  .notify-field:after {
    left: auto;
    right: 0;
  }

.notify-field input {
  position: relative;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  outline: 0;
  color: #fff;
  font-size: 14px;
  padding: 7px 12px;
  width: 100%;
}

.notify-field input::placeholder {
  color: #999;
}

.notify-field input:hover {
  border-bottom: 1px solid #fff;
}

.notify-field:hover:before,
.notify-field:hover:after {
  background: #fff;
}

.notify-underline {
  display: none;
}

.notify-btn {
  height: 40px;
  padding: 0 20px;
  background: #fff;
  color: #222;
  border: 0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  transition: all .3s ease-in-out;
}

  .notify-btn:hover {
    background: #144E95;
    color: #fff;
  }

.site-footer {
  background: #144E95;
  color: #fff;
  padding: 52px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 240px 2px 1fr;
  gap: 30px;
  align-items: center;
  padding: 0 64px 32px 64px;
}

.footer-logo {
  display: block;
  text-align: right;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-divider-v {
  width: 2px;
  min-height: 100px;
  border-left: 1px dashed #FFFFFF3D;
  align-self: stretch;
}

.footer-about {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.55;
  color: #fff;
}

.footer-divider-h {
  height: 1px;
  border-bottom: 1px dashed #FFFFFF3D;
}

.footer-nav-row {
  padding: 0;
}

.footer-nav-inner {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 70px;
  padding: 0;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.back-top {
  position: absolute;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 35px;
  padding: 0 18px;
  border: 1px solid #FFFFFF1F;
  border-radius: 18px;
  font-size: 12px;
  font-weight: 600;
  color: #FFFFFF77 !important;
  transition: all .3s ease-in-out;
}

  .back-top span {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
  }

  .back-top:hover {
    background: #fff;
    color: #144E95 !important;
  }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  font-size: 13px;
  color: #FFFFFF66;
  flex-wrap: wrap;
  gap: 10px;
}

  .footer-bottom a {
    transition: all .3s ease-in-out;
  }

  .footer-bottom a:hover {
    color: #fff;
  }

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-sep {
  color: rgba(255, 255, 255, .4);
}

@media (max-width: 1100px) {
  .cat-body {
    grid-template-columns: minmax(200px, 1fr) 24px minmax(220px, 313px) 18px minmax(220px, 1fr);
  }

  .cat-stack {
    padding-left: 18px;
  }

  .hooks-grid {
    grid-template-columns: 1fr 1fr 280px;
    gap: 24px;
  }
}

@media (max-width: 900px) {

  .site-header {
    position: relative;
    z-index: 1000;
  }

  .hdr-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    min-height: 64px;
  }

  .brand {
    grid-column: 1;
    width: clamp(130px, 38vw, 180px);
  }

  .hdr-right {
    display: contents;
  }

  .hdr-top-row {
    grid-column: 3;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hdr-top-row>img,
  .search-box {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    border: 1px solid var(--line);
    background: #f5f5f5;
    border-radius: 4px;
    padding: 0 15px 15px 15px;
    flex: 0 0 100%;
  }

  .main-nav a {
    text-align: center;
    display: block;
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .main-nav>a,
  .nav-posts-trigger {
    width: 100%;
    min-height: 44px;
    display: block;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-contribute {
    line-height: 44px;
    font-size: 15px;
  }

  .nav-posts-trigger.active::after {
    display: none;
  }

  .nav-posts-wrap {
    width: 100%;
  }

  .posts-dropdown {
    position: static;
    display: block;
    width: 100%;
    border: 0;
    border: 1px solid var(--line);
    box-shadow: none;
    background: #f8fafc;
    border-radius: 4px;
  }

  .posts-dropdown a {
    padding: 12px 16px;
    border-bottom: 1px solid #edf0f3;
  }

  .posts-dropdown a:last-child {
    border-bottom: 0;
  }

  .nav-contribute {
    width: fit-content;
    min-width: 120px;
    height: 38px;
    margin-top: 12px;
    border-bottom: 0;
    align-self: flex-start;
  }

  .ad-banner {
    height: auto;
    margin: 24px auto 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 24px;
  }

  .hero-main {
    height: clamp(240px, 48vw, 360px);
  }

  .hero-overlay {
    padding: 50px 20px 20px;
  }

  .hero-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .side-story:nth-child(even) {
    border-right: 0;
  }

  .side-story:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .side-story:first-child {
    padding-top: 12px;
  }

  .book-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .book-img-wrap {
    margin-bottom: 20px;
  }

  .book-img-wrap img {
    width: 280px;
  }

  .book-btns {
    justify-content: center;
  }

  .latest-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .latest-heading {
    margin-bottom: 24px;
  }

  .latest-heading h2 {
    font-size: 28px;
  }

  .ad-square {
    max-width: 100%;
    min-height: 200px;
  }

  .cat-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .cat-copy,
  .cat-center,
  .cat-stack,
  .cat-strip {
    grid-column: unset;
    grid-row: unset;
    width: 100%;
    min-width: 0;
  }

  .cat-body .cat-copy {
    order: 1;
  }

  .cat-body .cat-center {
    order: 0;
  }
  
  .cat-body .cat-stack {
    order: 2;
  }

  .cat-body .cat-strip {
    order: 3;
  }

  .cat-stack {
    padding-left: 0;
    border-left: 0;
    border-top: 1px dashed var(--dashed);
    padding-top: 20px;
  }

  .cat-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px dashed var(--dashed);
    padding-top: 0;
    width: 100%;
  }

  .cat-strip-item {
    min-height: auto;
    padding: 16px 40px 16px 10px;
  }

  .hooks-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .hooks-side {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 auto;
  }

  .hooks-book-card {
    flex: 1;
    min-width: 260px;
  }

  .hooks-book-badge {
    display: none;
  }
  
  .notify-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .notify-form {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .notify-btn {
    grid-column: 1 / -1;
    width: 100%;
  }


  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
    align-items: center;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .footer-divider-v {
    display: none;
  }

  .footer-about {
    margin: 0 auto;
  }

  .footer-nav-inner {
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
  }

  .back-top {
    position: static;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .shell {
    width: calc(100% - 32px);
  }

  .cat-strip {
    grid-template-columns: 1fr;
  }

  .cat-strip-item {
    border-right: 0;
    border-bottom: 1px dashed var(--dashed);
    padding: 15px 40px 15px 10px;
  }

  .cat-strip-item+.cat-strip-item {
    padding-left: 10px;
  }

  .cat-strip-item:last-child {
    border-bottom: 0;
  }

  .hooks-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .notify-text h2 {
    font-size: 20px;
  }

  .notify-text p {
    font-size: 13px;
  }

  .footer-nav {
    gap: 24px;
    font-size: 13px;
  }

  .footer-about {
    font-size: 13px;
  }

  .hero-side {
    grid-template-columns: 1fr;
  }

  .side-story {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .side-story:last-child {
    border-bottom: 0 !important;
  }

  .strip-arrow {
    display: none;
  }

}

@media (max-width: 600px) {
  .shell {
    width: calc(100% - 24px);
  }

  .hdr-inner {
    gap: 15px;
  }

  .brand svg {
    position: relative;
    top: 3px;
    height: 40px;
  }

  .hdr-top-row a {
    display: none;
  }

  .ad-banner {
    height: auto;
    font-size: 12px;
    margin: 16px auto 14px;
  }

  .hero-main {
    height: clamp(200px, 55vw, 300px);
  }

  .hero-overlay h1 {
    font-size: 24px;
  }

  .hero-meta {
    font-size: 11px;
    gap: 6px;
  }

  .book-hero-inner {
    gap: 24px;
  }

  .book-text h2 {
    font-size: 24px;
    margin-bottom: 12px;
    text-wrap: balance;
  }

  .book-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 260px;
    min-width: 0;
  }

  .latest-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 20px;
  }

  .latest-heading h2 {
    font-size: 24px;
  }

  .latest-divider {
    display: none;
  }

  .latest-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cat-title {
    font-size: 24px;
  }

  .cat-story-title {
    font-size: 18px;
  }

  .cat-excerpt {
    font-size: 14px;
  }

  .see-all-btn {
    min-width: 80px;
    height: 32px;
    font-size: 12px;
    padding: 0 12px;
    text-align: center;
  }
  
  .contrib-bar {
    gap: 12px;
    padding: 12px;
  }

  .contrib-text {
    font-size: 14px;
  }

  .hooks-title {
    font-size: 24px;
  }

  .see-all-small {
    width: 100%;
  }

  .hooks-book-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .hooks-book-card>img {
    width: 200px;
    margin: 0 auto 14px;
  }

  .notify-text h2 {
    font-size: 18px;
  }

  .notify-text p {
    font-size: 12px;
  }

  .notify-form {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .notify-btn {
    grid-column: auto;
  }

  .footer-about {
    font-size: 13px;
    line-height: 1.5;
  }

  .footer-nav {
    gap: 16px;
    align-items: center;
  }

}

@media (max-width: 400px) {
  .shell {
    width: calc(100% - 16px);
  }

  .hero-overlay h1,
  .latest-heading h2,
  .cat-title {
    font-size: 20px;
  }

  .contrib-bar {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 12px;
  }

  .contrib-btn {
    width: 100%;
    justify-content: center;
  }

  .book-btns {
    gap: 10px;
  }

  .footer-bottom {
    font-size: 12px;
  }

  .footer-top {
      padding: 0 15px 32px 15px;
  }

  .contrib-bar {
    align-items: center;
  }
}

@media (min-width: 901px) {
  .site-header .main-nav {
    display: flex !important;
  }
}
#ls-loadmore {
	padding:0px!important;
}