/*
Theme Name: unslop
Theme URI: https://unslop.example
Author: unslop
Author URI: https://unslop.example
Description: Custom theme for unslop — a dark, editorial one-page marketing site with an editable homepage (Home Sections, Pricing Plans, FAQ Items custom post types), dynamic menus, and Customizer controls for logos, theme colors, and footer content.
Version: 1.1.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: unslop
*/

/* ==========================================================================
   Base site styles (colors below are defaults — overridden live by
   Appearance > Customize > Theme Colors via an inline :root block in
   inc/customizer.php's unslop_customizer_css() output)
   ========================================================================== */

 :root {
      --dark: #1f2122;
      --panel: #26272a;
      --panel-2: #28292a;
      --panel-border: #3a3b3c;
      --light-grey: #a6a6a6;
      --white: #ffffff;
      --orange: #ec6723;
      --orange-dim: rgba(236, 103, 35, 0.12);
      --blue: #0071e3;
      --text-muted: #9a9a95;
      --text-faint: #6c6d68;
      --maxw: 1180px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--dark);
      color: var(--white);
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
      position: relative;
    }

    /* ambient background: fixed grid + soft color wash, sits behind all content */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background:
        radial-gradient(1100px 620px at 18% -8%, rgba(236, 103, 35, 0.14), transparent 62%),
        radial-gradient(900px 640px at 100% 8%, rgba(0, 113, 227, 0.08), transparent 60%),
        radial-gradient(1000px 700px at 82% 100%, rgba(236, 103, 35, 0.07), transparent 55%),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0px, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 72px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0px, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 72px);
      -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.25) 75%, transparent 100%);
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.25) 75%, transparent 100%);
    }

    img {
      max-width: 100%;
      display: block;
    }

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

    .wrap {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 32px;
    }

    section {
      position: relative;
      isolation: isolate;
    }

    /* soft radial glows anchored to specific sections, scroll with content */
    .hero::before,
    .pricing::before,
    .cta-band::before {
      content: '';
      position: absolute;
      z-index: -1;
      pointer-events: none;
      left: 50%;
      width: min(1000px, 140vw);
      height: 560px;
      transform: translateX(-50%);
      border-radius: 50%;
      filter: blur(4px);
    }

    .hero::before {
      top: -140px;
      background: radial-gradient(closest-side, rgba(236, 103, 35, 0.20), transparent 72%);
    }

    .pricing::before {
      top: -40px;
      background: radial-gradient(closest-side, rgba(0, 113, 227, 0.13), transparent 72%);
    }

    .cta-band::before {
      top: 40px;
      background: radial-gradient(closest-side, rgba(236, 103, 35, 0.16), transparent 72%);
    }

    /* ---------- utility buttons ---------- */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: inherit;
      font-size: 15px;
      font-weight: 600;
      padding: 13px 26px;
      border-radius: 999px;
      border: 1.5px solid transparent;
      cursor: pointer;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
      white-space: nowrap;
    }

    .btn:active {
      transform: scale(0.97);
    }

    .btn-white {
      background: var(--white);
      color: #161718;
    }

    .btn-white:hover {
      box-shadow: 0 8px 24px rgba(255, 255, 255, 0.18);
      transform: translateY(-1px);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border-color: var(--orange);
    }

    .btn-outline:hover {
      background: var(--orange-dim);
    }

    .btn-dark {
      background: #161718;
      color: var(--white);
      border-color: #161718;
    }

    .btn-dark:hover {
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
      transform: translateY(-1px);
    }

    .btn-sm {
      padding: 10px 18px;
      font-size: 13.5px;
    }

    /* secondary button for light (card) backgrounds — outlined dark,
       for use next to a filled .btn-dark primary */
    .btn-secondary {
      background: transparent;
      color: #161718;
      border-color: #161718;
    }

    .btn-secondary:hover {
      background: rgba(22, 23, 24, 0.08);
    }

    /* ---------- nav ---------- */
    header.nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(31, 33, 34, 0.82);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid transparent;
      background-image: linear-gradient(rgba(31, 33, 34, 0.82), rgba(31, 33, 34, 0.82)),
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14) 50%, transparent);
      background-origin: border-box;
      background-clip: padding-box, border-box;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 32px;
      max-width: var(--maxw);
      margin: 0 auto;
    }

    .nav-logo img {
      height: 50px;
      width: auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
    }

    .nav-links a {
      font-size: 14.5px;
      font-weight: 500;
      color: #d6d6d3;
      transition: color .15s ease;
    }

    .nav-links a:hover {
      color: var(--white);
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      width: 34px;
      height: 34px;
    }

    .nav-toggle span {
      width: 20px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: transform .25s ease, opacity .25s ease;
    }

    .nav-toggle.open span:first-child {
      transform: translateY(3.5px) rotate(45deg);
    }

    .nav-toggle.open span:last-child {
      transform: translateY(-3.5px) rotate(-45deg);
    }

    /* ---------- hero ---------- */
    .hero {
      padding: 96px 0 64px;
      text-align: center;
      min-height: 100vh;
      min-height: calc(100svh - var(--nav-h, 82px));
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero .wrap {
      width: 100%;
    }

    .hero-annot {
      font-size: 13px;
      color: var(--text-faint);
      letter-spacing: .02em;
      margin-bottom: 14px;
    }

    .hero h1 {
      font-size: clamp(34px, 5.6vw, 64px);
      line-height: 1.12;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin: 0 0 26px;
    }

    .hero h1 .rotate-wrap {
      /*! display: inline-block; */
      /*! position: relative; */
      /*! vertical-align: top; */
      /*! text-align: left; */
      white-space: nowrap;
    }

    .rotate-word {
      color: var(--orange);
      /*! display: inline-block; */
      white-space: nowrap;
    }

    .rotate-word .rw-inner {
      display: inline-block;
      white-space: nowrap;
      transition: opacity .32s ease, transform .32s ease;
    }

    .rotate-word .rw-inner.out {
      opacity: 0;
      transform: translateY(8px);
    }

    .hero .lead {
      max-width: 640px;
      margin: 0 auto 34px;
      font-size: 17px;
      line-height: 1.6;
      color: var(--text-muted);
    }

    .hero .lead p {
      margin: 0;
    }

    /* ---------- feature sections ---------- */
    .feature {
      padding: 88px 0;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
    }

    .feature-grid.reverse .feature-copy {
      order: 2;
    }

    .feature-grid.reverse .feature-visual {
      order: 1;
    }

    .feature-copy h2 {
      font-size: clamp(26px, 3.2vw, 38px);
      line-height: 1.18;
      font-weight: 700;
      letter-spacing: -0.01em;
      margin: 0 0 18px;
    }

    .feature-copy p {
      font-size: 16px;
      line-height: 1.7;
      color: var(--text-muted);
      margin: 0 0 28px;
      max-width: 480px;
    }

    .feature-copy .foot-note {
      font-size: 12.5px;
      color: var(--text-faint);
      font-style: italic;
      margin-top: 14px;
    }

    .feature.centered {
      text-align: center;
    }

    .feature.centered .feature-copy {
      max-width: 640px;
      margin: 0 auto;
    }

    .feature.centered .feature-copy p {
      margin-left: auto;
      margin-right: auto;
    }

    .feature.centered .feature-visual {
      margin-top: 44px;
    }

    .feature-visual {
      background: var(--panel);
      border: 1px solid var(--panel-border);
      border-radius: 20px;
      overflow: hidden;
      aspect-ratio: 528/690;
      position: relative;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 40px 80px -30px rgba(0, 0, 0, 0.55);
    }

    .feature-visual iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
      background: var(--panel);
    }

    .brand-word {
      font-family: 'Inter', sans-serif;
    }

    .brand-o {
      color: var(--orange);
    }

    /* "unslop it before you ship it" heading: the "o" reads better in
       white against this section's layout than the brand orange. */
    #extension .brand-o {
      color: var(--white);
    }

    /* ---------- pricing ---------- */
    .pricing {
      padding: 100px 0 88px;
      text-align: center;
    }

    .pricing h2 {
      font-size: clamp(28px, 3.6vw, 40px);
      font-weight: 700;
      letter-spacing: -0.01em;
      line-height: 1.2;
      margin: 0 0 34px;
    }

    .toggle-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-bottom: 52px;
      position: relative;
    }

    .toggle-row span {
      font-size: 14.5px;
      font-weight: 500;
      color: var(--text-muted);
    }

    .toggle-row span.active {
      color: var(--white);
    }

    .switch {
      width: 46px;
      height: 26px;
      border-radius: 999px;
      background: #3a3b3c;
      position: relative;
      border: none;
      cursor: pointer;
      padding: 0;
      flex-shrink: 0;
    }

    .switch::after {
      content: '';
      position: absolute;
      top: 3px;
      left: 3px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--white);
      transition: left .22s ease;
    }

    .switch.on {
      background: var(--orange);
    }

    .switch.on::after {
      left: 23px;
    }

    .plans {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      text-align: left;
    }

    .plan {
      position: relative;
      background: #e9e9e7;
      color: #161718;
      border-radius: 18px;
      padding: 34px 30px 30px;
      border: 2px solid transparent;
      display: flex;
      flex-direction: column;
      box-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.5);
    }

    /* invisible placeholder the same size as .plan-price, so the bullet
       list in the price-less "Coming soon" card lines up with the two
       priced cards next to it */
    .plan-price-spacer {
      visibility: hidden;
    }

    .plan.hi {
      background: #efefed;
      border-color: var(--orange);
      box-shadow: 0 24px 60px -18px rgba(236, 103, 35, 0.35);
    }

    .plan-kind {
      font-size: 14px;
      color: #6b6f72;
      margin-bottom: 6px;
    }

    .plan-name {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .plan-price {
      font-size: 38px;
      font-weight: 800;
      margin-bottom: 22px;
      letter-spacing: -0.01em;
    }

    .plan-price .price-period {
      font-size: 15px;
      font-weight: 500;
      color: #6b6f72;
    }

    .plan ul {
      list-style: none;
      margin: 0 0 28px;
      padding: 0;
      flex: 1;
    }

    .plan ul li {
      position: relative;
      padding-left: 22px;
      margin-bottom: 13px;
      font-size: 14.5px;
      line-height: 1.55;
      color: #3c4043;
    }

    .plan ul li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 7px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--orange);
    }

    .plan .btn {
      align-self: flex-start;
    }

    /* ---------- site popups (Contact, Notify me) ---------- */
    body.popup-open {
      overflow: hidden;
    }

    .site-popup[hidden] {
      display: none;
    }

    .site-popup {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .site-popup-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(15, 16, 17, 0.72);
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(3px);
    }

    .site-popup-panel {
      position: relative;
      width: 100%;
      max-width: 460px;
      max-height: calc(100vh - 48px);
      overflow-y: auto;
      background: #ffffff;
      color: #161718;
      border-radius: 20px;
      padding: 40px 32px 32px;
      box-shadow: 0 40px 100px -24px rgba(0, 0, 0, 0.6);
    }

    .site-popup-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: none;
      border: none;
      border-radius: 50%;
      font-size: 22px;
      line-height: 1;
      color: #6b6f72;
      cursor: pointer;
    }

    .site-popup-close:hover {
      background: rgba(22, 23, 24, 0.06);
    }

    .site-popup-title {
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -0.01em;
      margin: 0 0 20px;
    }

    .site-popup-body .popup-form-notice {
      font-size: 14.5px;
      line-height: 1.6;
      color: #4a4d50;
      margin: 0;
    }

    .site-popup-body .popup-form-notice a {
      color: var(--blue);
      text-decoration: underline;
    }

    /* Contact Form 7's default markup, restyled to match the site */
    .site-popup-body .wpcf7-form p {
      margin: 0 0 16px;
    }

    .site-popup-body .wpcf7-form label {
      display: block;
      font-size: 12.5px;
      font-weight: 600;
      color: #6b6f72;
      margin-bottom: 6px;
    }

    .site-popup-body .wpcf7-form input[type="text"],
    .site-popup-body .wpcf7-form input[type="email"],
    .site-popup-body .wpcf7-form input[type="tel"],
    .site-popup-body .wpcf7-form textarea,
    .site-popup-body .wpcf7-form select {
      width: 100%;
      padding: 11px 13px;
      border-radius: 9px;
      border: 1.5px solid #d8d8d5;
      background: #ffffff;
      font-family: inherit;
      font-size: 14.5px;
      color: #161718;
    }

    .site-popup-body .wpcf7-form textarea {
      min-height: 110px;
      resize: vertical;
    }

    .site-popup-body .wpcf7-form input:focus,
    .site-popup-body .wpcf7-form textarea:focus,
    .site-popup-body .wpcf7-form select:focus {
      outline: none;
      border-color: var(--orange);
    }

    .site-popup-body .wpcf7-form .wpcf7-submit {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: inherit;
      font-size: 15px;
      font-weight: 600;
      padding: 13px 26px;
      border-radius: 999px;
      border: 1.5px solid #161718;
      background: #161718;
      color: #ffffff;
      cursor: pointer;
      transition: transform .18s ease, box-shadow .18s ease;
    }

    .site-popup-body .wpcf7-form .wpcf7-submit:hover {
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
      transform: translateY(-1px);
    }

    .site-popup-body .wpcf7-form .wpcf7-submit:disabled {
      opacity: .6;
      cursor: default;
      transform: none;
      box-shadow: none;
    }

    .site-popup-body .wpcf7-spinner {
      vertical-align: middle;
      margin-left: 10px;
    }

    .site-popup-body .wpcf7-not-valid-tip {
      color: #c0392b;
      font-size: 12.5px;
      margin-top: 4px;
    }

    .site-popup-body .wpcf7-form-control-wrap {
      display: block;
    }

    .site-popup-body .wpcf7-response-output {
      margin: 18px 0 0;
      padding: 12px 14px;
      border-radius: 10px;
      font-size: 13.5px;
      line-height: 1.5;
      border: 1px solid #d8d8d5;
      color: #4a4d50;
    }

    /* CF7 leaves this element in the DOM even before a submission — hide
       the empty box rather than showing an ownerless border. */
    .site-popup-body .wpcf7-response-output:empty {
      display: none;
    }

    .site-popup-body .wpcf7-form.sent .wpcf7-response-output {
      border-color: #1c7c4d;
      color: #1c7c4d;
      background: rgba(28, 124, 77, 0.08);
    }

    .site-popup-body .wpcf7-form.failed .wpcf7-response-output,
    .site-popup-body .wpcf7-form.aborted .wpcf7-response-output {
      border-color: #c0392b;
      color: #c0392b;
      background: rgba(192, 57, 43, 0.08);
    }

    @media (max-width: 640px) {
      .site-popup-panel {
        padding: 36px 22px 26px;
      }
    }

    /* ---------- FAQ ---------- */
    .faq {
      padding: 88px 32px;
      max-width: 820px;
      margin: 0 auto;
    }

    .faq h2 {
      text-align: center;
      font-size: clamp(26px, 3.2vw, 36px);
      font-weight: 700;
      margin: 0 0 48px;
    }

    .faq-item {
      border-bottom: 1px solid var(--panel-border);
    }

    .faq-item:first-child {
      border-top: 1px solid var(--panel-border);
    }

    .faq-q {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 24px 4px;
      font-family: inherit;
      font-size: 16.5px;
      font-weight: 600;
      color: var(--white);
    }

    .faq-q .chev {
      flex-shrink: 0;
      transition: transform .25s ease;
      color: var(--text-muted);
    }

    .faq-item.open .faq-q .chev {
      transform: rotate(180deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .32s ease, padding .32s ease;
      padding: 0 4px;
      font-size: 15px;
      line-height: 1.7;
      color: var(--text-muted);
    }

    .faq-item.open .faq-a {
      max-height: 220px;
      padding: 0 4px 26px;
    }

    /* ---------- CTA banner ---------- */
    .cta-band {
      padding: 0 0 100px;
    }

    .cta-inner {
      background: var(--orange);
      border-radius: 26px;
      padding: 76px 40px;
      text-align: center;
    }

    .cta-inner h2 {
      font-size: clamp(26px, 3.6vw, 40px);
      font-weight: 700;
      line-height: 1.25;
      margin: 0 0 34px;
      letter-spacing: -0.01em;
    }

    .cta-inner .btn-white:hover {
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    /* ---------- footer ---------- */
    footer {
      padding: 56px 0 30px;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 40px;
      margin-bottom: 44px;
    }

    .footer-logo img {
      height: 50px;
      margin-bottom: 10px;
    }

    .footer-powered {
      font-size: 13px;
      color: var(--text-faint);
    }

    .footer-cols {
      display: flex;
      gap: 64px;
      flex-wrap: wrap;
    }

    .footer-col a {
      display: block;
      font-size: 14.5px;
      color: #d6d6d3;
      margin-bottom: 14px;
      transition: color .15s ease;
    }

    .footer-col a:hover {
      color: var(--white);
    }

    .footer-rule {
      border: none;
      border-top: 1px solid var(--panel-border);
      margin: 0 0 26px;
    }

    .footer-bottom {
      text-align: center;
      font-size: 13px;
      color: var(--text-faint);
    }

    /* ---------- responsive ---------- */
    @media (max-width:900px) {
      .feature-grid {
        grid-template-columns: 1fr;
      }

      .feature-grid.reverse .feature-copy {
        order: 1;
      }

      .feature-grid.reverse .feature-visual {
        order: 2;
      }

      .feature-copy {
        text-align: center;
      }

      .feature-copy p {
        margin-left: auto;
        margin-right: auto;
      }

      .plans {
        grid-template-columns: 1fr;
      }

      .nav-links {
        display: none;
      }

      .nav-toggle {
        display: flex;
      }

      .mobile-menu {
        max-height: 0;
        overflow: hidden;
        border-top: 0 solid transparent;
        transition: max-height .28s ease, border-color .28s ease;
      }

      .mobile-menu.open {
        max-height: 220px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
      }

      .mobile-menu-inner {
        padding: 18px 32px 22px;
        display: flex;
        flex-direction: column;
        gap: 4px;
      }

      .mobile-menu-inner a {
        padding: 10px 0;
        font-size: 15.5px;
        font-weight: 500;
        color: #d6d6d3;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }

      .mobile-menu-inner a:last-child {
        border-bottom: 0;
      }
    }

    .mobile-menu {
      display: none;
    }

    @media (max-width:900px) {
      .mobile-menu {
        display: block;
      }
    }

    @media (max-width:640px) {
      .wrap {
        padding: 0 20px;
      }

      .hero {
        padding: 64px 0 48px;
      }

      .feature {
        padding: 64px 0;
      }

      .faq {
        padding: 64px 20px;
      }

      .cta-inner {
        padding: 56px 24px;
      }

      .footer-top {
        flex-direction: column;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      * {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
      }
    }
/* ==========================================================================
   WordPress-specific additions
   ========================================================================== */

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
  border: 0; padding: 0; margin: -1px;
}
.skip-link {
  position: absolute; top: -80px; left: 8px; z-index: 999999;
  background: var(--white); color: #161718; padding: 12px 18px; border-radius: 8px;
  font-weight: 600; text-decoration: none; transition: top .15s ease;
}
.skip-link:focus { top: 8px; }

/* rich text typed into the WYSIWYG editor (hero lead / feature paragraph) */
.feature-copy .entry-content p,
.hero .entry-content p { margin: 0 0 28px; }
.entry-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.entry-content img { max-width: 100%; border-radius: 12px; height: auto; }
.entry-content ul, .entry-content ol { text-align: left; }

/* empty-state placeholder for a feature visual with no embed code yet */
.feature-visual .visual-placeholder {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; padding: 24px; text-align: center;
  color: var(--text-faint); font-size: 13.5px; line-height: 1.6;
}

/* generic content page (page.php) */
.page-content-wrap { max-width: 760px; margin: 0 auto; padding: 120px 32px 100px; }
.page-content-wrap .page-title { font-size: clamp(28px,4vw,44px); font-weight: 700; letter-spacing: -0.01em; margin: 0 0 28px; }
.page-content-wrap .entry-content { font-size: 16.5px; line-height: 1.75; color: var(--text-muted); }
.page-content-wrap .entry-content h2 { color: var(--white); font-size: 26px; margin: 40px 0 16px; }
.page-content-wrap .entry-content h3 { color: var(--white); font-size: 20px; margin: 32px 0 14px; }

@media (max-width: 640px) {
  .page-content-wrap { padding: 100px 20px 72px; }
}
