:root {
  --thisis-blue: #203a6e;
  --thisis-deep: #1e2d5a;
  --thisis-gold: #c9a84c;
  --thisis-cream: #f0ede6;
  --thisis-soft: #faf7f2;
  --thisis-ink: #111111;
  --thisis-muted: #5d6270;
  --thisis-line: rgba(32, 58, 110, 0.16);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--thisis-ink);
  background: #fff;
  font-family: Questrial, Inter, Arial, sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 {
  font-family: Bungee, Inter, sans-serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.thisis-announcement {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  min-height: 42px;
  padding: 8px 18px;
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
}
.thisis-announcement__icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--thisis-gold);
  font-size: 16px;
  line-height: 1;
}
.thisis-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(170px, 240px) minmax(0, 1fr) auto;
  align-items: center;
  min-height: 112px;
  column-gap: 28px;
  padding: 18px clamp(10px, 2.4vw, 34px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--thisis-line);
  backdrop-filter: blur(14px);
}
.thisis-logo {
  justify-self: start;
}
.thisis-nav {
  justify-self: center;
}
.thisis-menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.thisis-menu li {
  position: relative;
}
.thisis-menu a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 42px;
  color: var(--thisis-deep);
  font-family: Bungee, Inter, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}
.thisis-menu > li.current-menu-item > a,
.thisis-menu > li.current_page_item > a,
.thisis-menu > li:first-child > a:hover,
.thisis-menu a:hover {
  color: var(--thisis-gold);
}
.thisis-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 80;
  display: grid;
  min-width: 240px;
  margin: 0;
  padding: 12px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--thisis-line);
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease;
}
.thisis-menu li:hover > .sub-menu,
.thisis-menu li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.thisis-menu .sub-menu a {
  display: flex;
  min-height: 0;
  padding: 10px 12px;
  border-radius: 4px;
  color: var(--thisis-deep);
  font-family: Questrial, Inter, sans-serif;
  font-size: 15px;
  text-transform: none;
}
.thisis-menu .sub-menu a:hover {
  color: var(--thisis-deep);
  background: var(--thisis-soft);
}
.thisis-caret {
  color: var(--thisis-gold);
  font-family: Questrial, Inter, sans-serif;
  font-size: 13px;
}
.thisis-logo img { width: 214px; }
.thisis-header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}
.thisis-header-cta {
  min-width: 166px;
  padding: 13px 22px;
  color: #fff;
  background: var(--thisis-gold);
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.24);
  font-family: Bungee, Inter, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}
.thisis-cart-link {
  display: none;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #0b1836;
  border-radius: 50%;
  background: #fff;
}
.thisis-floating-cart {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: none;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #fff;
  background: var(--thisis-deep);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.2);
}
.thisis-floating-cart__icon {
  font-size: 25px;
  line-height: 1;
}
.thisis-floating-cart__count,
.thisis-floating-cart .thisis-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  color: #fff;
  background: var(--thisis-gold);
  border: 2px solid #fff;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
}
.thisis-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
}
.thisis-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: var(--thisis-deep);
}
.thisis-mobile-panel {
  display: none;
  position: fixed;
  inset: 118px 0 auto;
  z-index: 45;
  padding: 22px;
  background: #fff;
  border-bottom: 1px solid var(--thisis-line);
}
.thisis-mobile-panel .thisis-menu {
  display: grid;
  gap: 16px;
}
.tc-hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  max-height: 620px;
  height: 64vw;
  overflow: hidden;
  font-family: Inter, sans-serif;
}
.tc-hero picture,
.tc-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.tc-hero__bg {
  object-fit: cover;
  object-position: center;
}
.tc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 18, 40, 0.72) 0%, rgba(10, 18, 40, 0.45) 45%, rgba(10, 18, 40, 0) 75%);
}
.tc-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 58%;
  padding: 0 6% 80px;
}
.tc-hero__title {
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(26px, 3.4vw, 50px);
  text-transform: none;
}
.tc-hero__subtitle {
  max-width: 440px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.55;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.tc-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.tc-hero__btn,
.thisis-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  border: 0;
  font-family: Bungee, sans-serif;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.tc-hero__btn--primary,
.thisis-button--gold {
  color: #fff;
  background: var(--thisis-gold);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.28);
}
.tc-hero__btn--secondary,
.thisis-button--outline-dark {
  color: var(--thisis-gold);
  background: transparent;
  border: 2px solid var(--thisis-gold);
}
.thisis-button--blue {
  color: #fff;
  background: var(--thisis-deep);
}
.tc-hero__reviews {
  position: absolute;
  bottom: 24px;
  left: 6%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
}
.thisis-stars {
  color: var(--thisis-gold);
  letter-spacing: 1px;
}
.thisis-section {
  padding: 64px clamp(20px, 5vw, 72px);
}
.thisis-section-title {
  max-width: 900px;
  margin-bottom: 30px;
}
.thisis-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.thisis-eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--thisis-gold);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.thisis-section-title h2,
.thisis-split h2,
.thisis-blue h2 {
  color: var(--thisis-deep);
  font-size: clamp(28px, 4vw, 52px);
}
.thisis-section-title p,
.thisis-richtext p {
  max-width: 720px;
  margin-top: 18px;
  color: var(--thisis-muted);
  font-size: 17px;
}
.thisis-icon-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding: 24px clamp(20px, 5vw, 72px);
  background: var(--thisis-blue);
}
.thisis-icon-bar__item {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 96px;
  padding: 12px;
  color: #fff;
  text-align: center;
  font-size: 15px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.thisis-icon-bar img {
  height: 36px;
  margin-bottom: 9px;
  object-fit: contain;
}
.thisis-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto 28px;
}
.thisis-process {
  background: var(--thisis-cream);
}
.thisis-tab-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}
.thisis-tab-buttons button {
  padding: 13px 28px;
  border: 0;
  border-radius: 999px;
  color: var(--thisis-deep);
  background: #e0ddd5;
  font-family: Bungee, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  opacity: 0.72;
}
.thisis-tab-buttons .is-active {
  color: #fff;
  background: var(--thisis-gold);
  opacity: 1;
}
.thisis-process-grid {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 360px) 1fr;
  gap: 34px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.thisis-feature-col {
  display: grid;
  gap: 22px;
}
.thisis-feature-col article {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
}
.thisis-feature-col span {
  grid-row: span 2;
  color: var(--thisis-deep);
  font-family: Bungee, sans-serif;
}
.thisis-feature-col h3 {
  color: var(--thisis-deep);
  font-size: 15px;
  text-transform: uppercase;
}
.thisis-feature-col p {
  color: #3a3a3a;
  font-size: 14px;
}
.thisis-process-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
}
.thisis-blue {
  color: #fff;
  background: var(--thisis-deep);
}
.thisis-blue h2,
.thisis-blue .thisis-eyebrow {
  color: #fff;
}
.thisis-blue .thisis-richtext p {
  color: rgba(255,255,255,0.78);
}
.thisis-culture,
.thisis-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.thisis-award-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: center;
  justify-items: center;
}
.thisis-award-logos img {
  max-height: 92px;
  object-fit: contain;
}
.thisis-split--cream {
  background: var(--thisis-cream);
}
.thisis-split--soft {
  background: var(--thisis-soft);
}
.thisis-split--blue {
  color: #fff;
  background: var(--thisis-deep);
}
.thisis-split--blue h2,
.thisis-split--blue .thisis-eyebrow {
  color: #fff;
}
.thisis-split--blue .thisis-richtext p {
  color: rgba(255,255,255,0.78);
}
.thisis-split.is-reverse .thisis-media-card {
  order: 2;
}
.thisis-media-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.thisis-media-card img {
  width: 100%;
  object-fit: cover;
}
.thisis-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #fff;
  background: var(--thisis-gold);
  border-radius: 50%;
  font-size: 24px;
}
.thisis-split .thisis-button {
  margin-top: 26px;
}
.thisis-compare {
  background: linear-gradient(180deg, rgba(32,58,110,0.16), #fff);
}
.thisis-compare-table {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 180px;
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--thisis-line);
  border-radius: 12px;
  background: #fff;
}
.thisis-compare-table > * {
  display: grid;
  align-items: center;
  min-height: 62px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--thisis-line);
}
.thisis-compare-table > *:nth-last-child(-n + 3) {
  border-bottom: 0;
}
.thisis-compare-table img {
  justify-self: center;
  max-width: 150px;
}
.thisis-compare-table strong {
  justify-content: center;
  color: var(--thisis-deep);
  text-align: center;
}
.thisis-compare-table b,
.thisis-compare-table i {
  justify-content: center;
  font-size: 32px;
  font-style: normal;
}
.thisis-compare-table b { color: var(--thisis-gold); }
.thisis-compare-table i { color: #ba3a3a; }
.thisis-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.thisis-review-grid article {
  padding: 22px;
  background: linear-gradient(180deg, rgba(32,58,110,0.14), #fff);
  border: 1px solid var(--thisis-line);
  border-radius: 12px;
}
.thisis-review-grid h3 {
  margin-top: 14px;
  color: var(--thisis-ink);
  font-family: Questrial, sans-serif;
  font-size: 18px;
  line-height: 1.3;
}
.thisis-review-grid p {
  margin-top: 12px;
  color: rgba(0,0,0,0.62);
}
.thisis-review-grid strong {
  display: block;
  margin-top: 18px;
}
.thisis-faq {
  max-width: 980px;
  margin: 0 auto;
}
.thisis-faq details {
  border-top: 1px solid var(--thisis-line);
}
.thisis-faq details:last-child {
  border-bottom: 1px solid var(--thisis-line);
}
.thisis-faq summary {
  cursor: pointer;
  padding: 24px 0;
  color: var(--thisis-deep);
  font-size: 20px;
  font-weight: 700;
}
.thisis-faq details p {
  padding-bottom: 24px;
  color: var(--thisis-muted);
}
.thisis-newsletter {
  background: linear-gradient(180deg, rgba(32,58,110,0.16), #fff);
}
.thisis-newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto;
}
.thisis-newsletter-form label {
  grid-column: 1 / -1;
  color: var(--thisis-deep);
  font-weight: 700;
}
.thisis-newsletter-form input,
.thisis-newsletter-form button {
  min-height: 54px;
  border-radius: 999px;
}
.thisis-newsletter-form input {
  padding: 0 20px;
  border: 1px solid var(--thisis-line);
}
.thisis-newsletter-form button {
  padding: 0 26px;
  color: #fff;
  background: var(--thisis-deep);
  border: 0;
  font-family: Bungee, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
.thisis-page {
  padding: 80px clamp(20px, 5vw, 72px);
}
.thisis-page__inner {
  max-width: 980px;
  margin: 0 auto;
}
.thisis-page h1 {
  margin-bottom: 28px;
  color: var(--thisis-deep);
  font-size: clamp(34px, 5vw, 64px);
}
.thisis-page__content > * + * {
  margin-top: 1.2em;
}
.thisis-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.thisis-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}
.thisis-contact-grid article {
  padding: 24px;
  background: var(--thisis-cream);
  border-radius: 12px;
}
.thisis-contact-grid h2 {
  margin-bottom: 10px;
  color: var(--thisis-deep);
  font-size: 20px;
}
.thisis-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  padding: 58px clamp(20px, 5vw, 72px);
  color: #fff;
  background: #080808;
}
.thisis-footer img {
  width: 170px;
  margin-bottom: 20px;
}
.thisis-footer h3 {
  margin-bottom: 14px;
  color: var(--thisis-gold);
  font-family: Questrial, sans-serif;
  font-size: 18px;
}
.thisis-footer .thisis-menu {
  display: grid;
  gap: 8px;
}
.thisis-footer a,
.thisis-footer p,
.thisis-footer div {
  color: rgba(255,255,255,0.78);
}
@media (max-width: 980px) {
  .thisis-header {
    grid-template-columns: auto 1fr auto;
    min-height: 78px;
  }
  .thisis-menu-toggle { display: block; }
  .thisis-nav { display: none; }
  .thisis-logo { justify-self: center; }
  .thisis-header-cta { display: none; }
  .thisis-header-actions {
    min-width: 42px;
  }
  .thisis-mobile-panel.is-open { display: block; }
  .thisis-mobile-panel .thisis-menu a {
    justify-content: space-between;
    width: 100%;
    min-height: 0;
    font-size: 14px;
  }
  .thisis-mobile-panel .thisis-menu .sub-menu {
    position: static;
    min-width: 0;
    margin-top: 10px;
    padding: 0 0 0 14px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .thisis-mobile-panel .thisis-menu .sub-menu a {
    padding: 7px 0;
    font-size: 15px;
  }
  .thisis-floating-cart {
    display: grid;
  }
  .thisis-icon-bar { grid-template-columns: repeat(2, 1fr); }
  .thisis-product-grid,
  .thisis-process-grid,
  .thisis-culture,
  .thisis-split,
  .thisis-review-grid,
  .thisis-contact-grid,
  .thisis-post-grid,
  .thisis-footer {
    grid-template-columns: 1fr 1fr;
  }
  .thisis-process-image {
    order: -1;
    grid-column: 1 / -1;
    max-height: 420px;
  }
}
@media (max-width: 768px) {
  .thisis-announcement {
    justify-content: flex-start;
    font-size: 13px;
  }
  .thisis-header { min-height: 66px; padding: 12px 16px; }
  .thisis-mobile-panel { inset: 106px 0 auto; }
  .thisis-logo img { width: 128px; }
  .thisis-cart-link {
    display: none;
  }
  .tc-hero {
    height: 100svh;
    min-height: 600px;
    max-height: none;
  }
  .tc-hero__overlay {
    background: linear-gradient(180deg, rgba(10,18,40,0) 35%, rgba(10,18,40,0.62) 66%, rgba(10,18,40,0.84) 100%);
  }
  .tc-hero__content {
    justify-content: flex-end;
    max-width: 100%;
    padding: 0 6% 90px;
  }
  .tc-hero__title { font-size: clamp(22px, 7vw, 32px); }
  .tc-hero__buttons { flex-direction: column; }
  .tc-hero__btn { width: 100%; }
  .tc-hero__reviews {
    bottom: 20px;
    align-items: flex-start;
  }
  .thisis-section { padding: 56px 20px; }
  .thisis-icon-bar,
  .thisis-product-grid,
  .thisis-process-grid,
  .thisis-culture,
  .thisis-split,
  .thisis-award-logos,
  .thisis-review-grid,
  .thisis-contact-grid,
  .thisis-post-grid,
  .thisis-footer {
    grid-template-columns: 1fr;
  }
  .thisis-feature-col article { grid-template-columns: 38px 1fr; }
  .thisis-compare-table {
    grid-template-columns: 1fr 82px 92px;
    font-size: 14px;
  }
  .thisis-compare-table > * {
    min-height: 62px;
    padding: 12px;
  }
  .thisis-compare-table img { max-width: 74px; }
  .thisis-newsletter-form { grid-template-columns: 1fr; }
  .thisis-newsletter-form button { width: 100%; }
  .thisis-blog-hero { padding: 48px 20px; }
  .thisis-blog-archive__inner { padding: 32px 20px; }
  .thisis-single-post__inner { padding: 32px 20px; }
  .thisis-single-post__nav { grid-template-columns: 1fr; }
  .thisis-single-post__nav-link--next { text-align: left; }
}

/* ─────────────────────────────────────────────
   BLOG / KENNISBANK
───────────────────────────────────────────── */
.thisis-blog-hero {
  padding: 66px clamp(20px, 5vw, 72px) 62px;
  background: #eef0f5;
  text-align: center;
}
.thisis-blog-hero__inner {
  max-width: 840px;
  margin: 0 auto;
}
.thisis-blog-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  color: #050505;
  margin-bottom: 16px;
}
.thisis-blog-hero__desc {
  font-size: 17px;
  color: #333;
  line-height: 1.7;
}
.thisis-blog-archive {
  padding: 60px clamp(20px, 5vw, 72px);
}
.thisis-blog-archive__inner {
  max-width: 1164px;
  margin: 0 auto;
}
.thisis-post-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(17,24,39,.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  list-style: none;
}
.thisis-post-card__image {
  display: block;
  overflow: hidden;
}
.thisis-post-card__image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform .22s ease;
}
.thisis-post-card:hover .thisis-post-card__image img {
  transform: scale(1.035);
}
.thisis-post-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.thisis-post-card__date {
  font-size: 13px;
  color: var(--thisis-muted);
  margin-bottom: 8px;
  display: block;
}
.thisis-post-card h2 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.thisis-post-card h2 a:hover { color: var(--thisis-blue); }
.thisis-post-card__excerpt {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.thisis-post-card__read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--thisis-blue);
  margin-top: auto;
}
.thisis-post-card__read-more:hover { text-decoration: underline; }
.thisis-pagination {
  text-align: center;
}
.thisis-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.thisis-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 6px;
  background: #eef0f5;
  font-size: 15px;
  color: var(--thisis-ink);
  transition: background .15s;
}
.thisis-pagination .page-numbers.current,
.thisis-pagination .page-numbers:hover {
  background: var(--thisis-blue);
  color: #fff;
}
.thisis-no-posts {
  text-align: center;
  color: var(--thisis-muted);
  font-size: 17px;
  padding: 40px 0;
}

/* Single post */
.thisis-single-post {
  padding: 0 clamp(20px, 5vw, 72px) 80px;
  max-width: 860px;
  margin: 0 auto;
}
.thisis-single-post__inner {
  padding-top: 56px;
}
.thisis-single-post__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--thisis-muted);
}
.thisis-single-post__cat {
  background: var(--thisis-blue);
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.thisis-single-post h1 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 32px;
}
.thisis-single-post__hero-image {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}
.thisis-single-post__hero-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}
.thisis-single-post__content {
  font-size: 17px;
  line-height: 1.8;
  color: #222;
}
.thisis-single-post__content h2,
.thisis-single-post__content h3 {
  margin-top: 36px;
  margin-bottom: 14px;
  line-height: 1.25;
}
.thisis-single-post__content p { margin-bottom: 20px; }
.thisis-single-post__content ul,
.thisis-single-post__content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.thisis-single-post__content img {
  border-radius: 8px;
  margin: 20px 0;
  width: 100%;
}
.thisis-single-post__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--thisis-line);
}
.thisis-single-post__nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.thisis-single-post__nav-link--next { text-align: right; }
.thisis-single-post__nav-link span {
  font-size: 13px;
  color: var(--thisis-muted);
}
.thisis-single-post__nav-link strong {
  font-size: 15px;
  color: var(--thisis-blue);
}
.thisis-single-post__nav-link:hover strong { text-decoration: underline; }
