﻿/* overrides.css: last-loaded rules win, fixes hero proportions */

.hero{
  padding: 16px 0;
  display: flex;
  align-items: center;
}

.grid-12{
  align-items: center;
}

.hero .h1{
  color: #4D4D4D;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.8px;
}

.nowrap{ white-space: nowrap; }

.hero-kicker{
  margin-top: 10px;
  max-width: 56ch;
  line-height: 1.5;
}

/* make image bigger but viewport-bound, and sit lower */
.hero-image{
  border: 0 !important;
  background: transparent !important;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 220px);
  object-fit: contain;
  align-self: end;
}

/* tighten button area if present */
.actions{
  margin-top: 12px;
}

@media (max-width: 991px){
  .hero{
    padding: 18px 0;
  }
  .hero-image{
    max-height: 44vh;
    align-self: auto;
  }
}
/* stop hero overlap */
.hero .grid-12{
  column-gap: 72px;
}

.hero .col-7,
.hero .col-8{
  min-width: 0;
}

.hero .h1{
  overflow-wrap: anywhere;
}

.hero .col-5 img,
.hero .col-4 img{
  max-width: 100%;
}
/* FORCE HERO INTO 2-COLUMN LAYOUT (prevents text under image) */
.hero .grid-12{
  display: grid !important;
  grid-template-columns: minmax(520px, 1fr) minmax(360px, 0.9fr) !important;
  gap: 72px !important;
  align-items: center !important;
}

/* neutralize col spans inside hero */
.hero .col-7,
.hero .col-5{
  grid-column: auto !important;
}

/* keep headline inside its column */
.hero .h1{
  max-width: 18ch;
}

/* keep image bounded */
.hero-image{
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
/* push hero image further right */
.hero .col-5{
  display: flex;
  justify-content: flex-end;
  padding-left: 40px; /* increases separation from text */
}

.hero-image{
  max-width: 88%;
}
/* ===== LAYERED HERO ===== */

.hero{
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}

.hero-wrap{
  position: relative;
  min-height: 78vh;
}

.hero-text{
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero .h1{
  color: #4D4D4D;
  font-size: clamp(42px, 4.8vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.8px;
}

.hero-kicker{
  margin-top: 16px;
  line-height: 1.5;
  max-width: 54ch;
}

/* IMAGE BEHIND TEXT */
.hero-image-layer{
  position: absolute;
  right: -40px;
  top: 0;
  height: 100%;
  display: flex;
  align-items: flex-start; /* aligns with Inherently */
  z-index: 1;
  pointer-events: none;
}

.hero-image-layer img{
  height: 92%;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
}
/* ===== MOBILE HERO FIX ===== */

@media (max-width: 991px){

  .hero-wrap{
    min-height: auto;
  }

  .hero-image-layer{
    position: relative;
    right: auto;
    top: auto;
    height: auto;
    margin-top: 32px;
    justify-content: center;
  }

  .hero-image-layer img{
    height: auto;
    max-width: 90%;
    opacity: 1;
  }

  .hero-text{
    max-width: 100%;
  }

  .hero{
    padding: 32px 0;
  }
}
.hero{
  background: linear-gradient(to right, #ffffff 65%, #f8f8f8 100%);
}
.grid-12{
  align-items: start;
}
/* CLEAN 6-PANEL ABOUT */

.about-panel{
  padding: 32px 0;
}

.about-grid{
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(360px, 0.9fr);
  gap: 60px;
  align-items: start;
  min-height: calc(100vh - 72px);
}

.about-text p{
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 14px 0;
  color: #4D4D4D;
}

.about-quote{
  margin-top: 20px;
  padding-left: 22px;
  border-left: 3px solid #F75C03;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 300;
  color: #4D4D4D;
}

.about-quote.final{
  font-size: 34px;
  font-weight: 400;
}

.about-image{
  align-self: start;
}

.about-image img{
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.about-final{
  background: linear-gradient(to right, #ffffff 60%, #f7f7f7 100%);
}

@media (max-width: 991px){
  .about-grid{
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 24px;
  }
  .about-image img{
    max-height: 50vh;
  }
  .about-quote{
    font-size: 24px;
  }
}

/* Logo section — match text height but no crop */
.about-image-logo{
  align-self: stretch;          /* match text column height */
  display: flex;
  align-items: center;          /* vertical center */
  justify-content: center;
}

.about-image-logo img{
  max-width: 90%;
  max-height: 60%;
  height: auto;
  width: auto;
  object-fit: contain;
}
.accent-text{
  color: #F75C03 !important;
  font-weight: 500;
}
.footer-logo{
  height: 28px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}

.footer-tagline{
  color: #4D4D4D;
  max-width: 360px;
  line-height: 1.5;
}

.footer-copy{
  margin-top: 10px;
  color: #999;
  font-size: 13px;
}
/* ===== SPEAKING: DESIGNER LAYOUT ===== */

.speak-hero{
  padding: 44px 0 32px;
}

.speak-grid{
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(360px, 0.9fr);
  gap: 64px;
  align-items: start;
}

.speak-title{
  font-size: 52px;
  letter-spacing: -0.6px;
  margin: 0;
  color: #4D4D4D;
}

.speak-lede{
  margin-top: 14px;
  color: #4D4D4D;
  max-width: 56ch;
  line-height: 1.6;
}

.speak-proof{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(17,17,17,.10);
  max-width: 56ch;
}

.speak-proof-line{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #4D4D4D;
  font-size: 15px;
  line-height: 1.55;
  margin: 10px 0;
}

.speak-proof-line .dot{
  width: 6px;
  height: 6px;
  margin-top: 8px;
  background: #F75C03;
  flex: 0 0 6px;
}

.speak-right{
  padding-top: 8px;
}

.speak-cards{
  display: grid;
  gap: 18px;
}

.speak-card{
  border-top: 1px solid rgba(17,17,17,.14);
  padding-top: 16px;
  text-decoration: none;
}

.speak-card-title{
  font-size: 16px;
  font-weight: 600;
  color: #4D4D4D;
}

.speak-card-desc{
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: #4D4D4D;
  max-width: 46ch;
}

.speak-card-meta{
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(77,77,77,.85);
}

.speak-note{
  margin-top: 26px;
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 14px;
  align-items: start;
}

.accent-bar{
  width: 3px;
  background: #F75C03;
  height: 100%;
}

.speak-note-text{
  margin: 0;
  color: #4D4D4D;
}

@media (max-width: 991px){
  .speak-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .speak-title{ font-size: 40px; }
}
/* ===== SPEAKING (scoped, cannot be overridden) ===== */
.page-speaking .spk{
  padding: 48px 0 40px;
}

.page-speaking .spk-grid{
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(360px, 0.9fr);
  gap: 72px;
  align-items: start;
}

.page-speaking .spk-title{
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.7px;
  margin: 0;
  color: #4D4D4D;
  font-weight: 700;
}

.page-speaking .spk-lede{
  margin-top: 14px;
  max-width: 60ch;
  color: #4D4D4D;
  line-height: 1.65;
  font-size: 18px;
}

.page-speaking .spk-bullets{
  margin: 18px 0 0 0;
  padding: 18px 0 0 0;
  list-style: none;
  border-top: 1px solid rgba(17,17,17,.10);
  max-width: 60ch;
}

.page-speaking .spk-bullets li{
  margin: 10px 0;
  padding-left: 18px;
  position: relative;
  color: #4D4D4D;
  font-size: 15px;
  line-height: 1.55;
}

.page-speaking .spk-bullets li::before{
  content: "";
  width: 6px;
  height: 6px;
  background: #F75C03;
  position: absolute;
  left: 0;
  top: 9px;
}

.page-speaking .spk-right{
  padding-top: 10px;
}

.page-speaking .spk-card{
  border-top: 1px solid rgba(17,17,17,.14);
  padding-top: 16px;
  margin-bottom: 18px;
}

.page-speaking .spk-card-title{
  font-size: 16px;
  font-weight: 600;
  color: #4D4D4D;
}

.page-speaking .spk-card-desc{
  margin-top: 10px;
  color: #4D4D4D;
  font-size: 14px;
  line-height: 1.75;
  max-width: 46ch;
}

.page-speaking .spk-card-meta{
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(77,77,77,.85);
}

.page-speaking .spk-note{
  margin-top: 22px;
  padding-left: 18px;
  border-left: 3px solid #F75C03;
  color: #4D4D4D;
  line-height: 1.65;
}

@media (max-width: 991px){
  .page-speaking .spk-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .page-speaking .spk-title{
    font-size: 40px;
  }
}
/* Speaking: force base type color */
.page-speaking{
  color: #4D4D4D;
}

.page-speaking .spk-title,
.page-speaking .spk-card-title{
  color: #4D4D4D; /* keep headings high-contrast */
}

.page-speaking .spk-lede,
.page-speaking .spk-bullets li,
.page-speaking .spk-card-desc,
.page-speaking .spk-note{
  color: #4D4D4D;
}
.page-speaking .spk-core{
  margin-top: 28px;
  max-width: 720px;
}

.page-speaking .spk-core p{
  font-size: 20px;
  line-height: 1.6;
  color: #4D4D4D;
  margin: 0;
}
/* SPEAKING — 1 SCREEN FIT */

.page-speaking .spk-core p{
  font-size: 18px;
  line-height: 1.32;   /* tighter */
}

.page-speaking .blocks{
  gap: 28px;           /* reduce vertical spacing */
  margin-top: 28px;
}

.page-speaking .block{
  padding-top: 16px;   /* tighter */
}

.page-speaking .spk-note{
  margin-top: 24px;    /* tighter */
  font-size: 18px;
  line-height: 1.32;   /* tighter */
}

/* tighten hero spacing on speaking page */
.page-speaking .hero{
  padding: 28px 0 18px;
}
/* ===== SPEAKING: FORCE 1-SCREEN FIT ===== */

.page-speaking .spk{ padding: 28px 0 18px !important; }

.page-speaking .spk-grid{
  gap: 48px !important;
  align-items: start !important;
}

.page-speaking .spk-title{
  font-size: 48px !important;
  line-height: 1.02 !important;
  margin: 0 !important;
}

.page-speaking .spk-lede{
  margin-top: 10px !important;
  font-size: 17px !important;
  line-height: 1.48 !important;
}

.page-speaking .spk-core{
  margin-top: 14px !important;
}

.page-speaking .spk-core p{
  font-size: 17px !important;
  line-height: 1.42 !important;
  margin: 0 !important;
}

.page-speaking .actions{
  margin-top: 12px !important;
}

.page-speaking .spk-right{ padding-top: 4px !important; }

.page-speaking .spk-card{
  padding-top: 12px !important;
  margin-bottom: 12px !important;
}

.page-speaking .spk-card-desc{
  margin-top: 8px !important;
  line-height: 1.6 !important;
}

.page-speaking .spk-card-meta{
  margin-top: 8px !important;
}

.page-speaking .spk-note{
  margin-top: 14px !important;
  font-size: 18px !important;
  line-height: 1.35 !important;
  padding-left: 18px !important;
}

/* Fit within viewport height on desktop */
@media (min-width: 992px){
  .page-speaking .spk{
    min-height: calc(100vh - 72px) !important;
    display: flex !important;
    align-items: center !important;
  }
}
.accent-soft{
  color: #F75C03;
  letter-spacing: 0.08em;
}
.page-speaking .spk-left{
  position: relative;
  padding-left: 22px;
}

.page-speaking .spk-left::before{
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: #F75C03;
  opacity: 0.6;
}
.page-speaking{
  background: linear-gradient(to right, #ffffff 62%, #fafafa 100%);
}
.page-speaking .accent-text{
  color: #F75C03;
  font-weight: 600;
}
.page-speaking .spk-left::before{
  top: 18px;
  bottom: 18px;
  opacity: 0.55;
}
.page-speaking .spk-core .accent-text{
  color: rgba(247, 92, 3, 0.85) !important;
  font-weight: 600;
}
/* ===== COACHING (match Speaking style) ===== */

.page-coaching{
  background: linear-gradient(to right, #ffffff 65%, #f8f8f8 100%);
}

.page-coaching .cch{
  padding: 28px 0 18px;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
}

.page-coaching .cch-grid{
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(360px, 0.9fr);
  gap: 48px;
  align-items: start;
}

.page-coaching .cch-title{
  font-size: 48px;
  line-height: 1.02;
  letter-spacing: -0.7px;
  margin: 0;
  color: #4D4D4D;
  font-weight: 700;
}

.page-coaching .cch-lede{
  margin-top: 10px;
  font-size: 17px;
  line-height: 1.48;
  color: #4D4D4D;
  max-width: 60ch;
}

.page-coaching .cch-core{
  margin-top: 14px;
  max-width: 60ch;
}

.page-coaching .cch-core p{
  margin: 0;
  font-size: 17px;
  line-height: 1.42;
  color: #4D4D4D;
}

.page-coaching .cch-left{
  position: relative;
  padding-left: 22px;
}

.page-coaching .cch-left::before{
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: #F75C03;
  opacity: 0.55;
}

/* Quadrant grid */
.page-coaching .quad{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 2px;
}

.page-coaching .qcard{
  border-top: 1px solid rgba(17,17,17,.14);
  padding-top: 12px;
  min-height: 150px;
}

.page-coaching .qtitle{
  font-size: 15px;
  font-weight: 600;
  color: #4D4D4D;
}

.page-coaching .qdesc{
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #4D4D4D;
  max-width: 32ch;
}

/* Note */
.page-coaching .cch-note{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 14px;
  align-items: start;
}

.page-coaching .cch-bar{
  width: 3px;
  background: #F75C03;
}

.page-coaching .cch-note-text{
  font-size: 18px;
  line-height: 1.35;
  color: #4D4D4D;
}

/* Mobile */
@media (max-width: 991px){
  .page-coaching .cch{
    min-height: auto;
    padding: 32px 0;
    display: block;
  }
  .page-coaching .cch-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .page-coaching .cch-title{
    font-size: 40px;
  }
  .page-coaching .quad{
    grid-template-columns: 1fr;
  }
}
/* ===== COACHING (final, scoped) ===== */

.page-coaching{
  background: linear-gradient(to right, #ffffff 65%, #f8f8f8 100%);
  color: #4D4D4D;
}

.page-coaching .cch{
  padding: 28px 0 18px;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
}

.page-coaching .cch-grid{
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(360px, 0.9fr);
  gap: 48px;
  align-items: start;
}

.page-coaching .cch-left{
  position: relative;
  padding-left: 22px;
}

.page-coaching .cch-left::before{
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: #F75C03;
  opacity: 0.55;
}

.page-coaching .cch-title{
  font-size: 48px;
  line-height: 1.02;
  letter-spacing: -0.7px;
  margin: 0;
  font-weight: 700;
  color: #4D4D4D;
}

.page-coaching .cch-lede{
  margin-top: 10px;
  font-size: 17px;
  line-height: 1.48;
  color: #4D4D4D;
  max-width: 62ch;
}

.page-coaching .cch-core{
  margin-top: 12px;
  max-width: 62ch;
}

.page-coaching .cch-core p{
  margin: 0;
  font-size: 16px;
  line-height: 1.42;
}

.page-coaching .actions{
  margin-top: 12px;
}

/* Quadrant grid */
.page-coaching .quad{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 2px;
}

.page-coaching .qcard{
  border-top: 1px solid rgba(17,17,17,.14);
  padding-top: 12px;
  min-height: 132px;
}

.page-coaching .qtitle{
  font-size: 15px;
  font-weight: 600;
  color: #4d4d4d;
}

.page-coaching .qdesc{
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #4D4D4D;
  max-width: 34ch;
}

/* What this does */
.page-coaching .cch-what{
  margin-top: 16px;
  max-width: 62ch;
}

.page-coaching .cch-subhead{
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(77,77,77,.9);
  margin: 18px 0 10px;
}

.page-coaching .cch-list{
  margin: 0;
  padding-left: 18px;
  color: #4D4D4D;
}

.page-coaching .cch-list li{
  margin: 8px 0;
  line-height: 1.45;
  font-size: 14px;
}

.page-coaching .cch-small{
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #4D4D4D;
}

/* Testimonials */
.page-coaching .cch-testimonials{
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.page-coaching .tcard{
  border-top: 1px solid rgba(17,17,17,.10);
  padding-top: 12px;
}

.page-coaching .tquote{
  font-size: 14px;
  line-height: 1.6;
  color: #4D4D4D;
}

.page-coaching .tauthor{
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(77,77,77,.85);
}

/* Note */
.page-coaching .cch-note{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 14px;
  align-items: start;
}

.page-coaching .cch-bar{
  width: 3px;
  background: #F75C03;
}

.page-coaching .cch-note-text{
  font-size: 18px;
  line-height: 1.35;
  color: #4D4D4D;
}

/* Accent */
.page-coaching .accent-text{
  color: #F75C03 !important;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 991px){
  .page-coaching .cch{
    min-height: auto;
    padding: 32px 0;
    display: block;
  }
  .page-coaching .cch-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .page-coaching .cch-title{
    font-size: 40px;
  }
  .page-coaching .quad{
    grid-template-columns: 1fr;
  }
}
/* overrides.css (append at end) */
/* Tighten coaching grid row height so both testimonials align and buttons stay visible */

.page-coaching.cch-fit-page .cch-fit-quad{
  flex: 0 0 auto !important;                 /* stop it from expanding */
  grid-auto-rows: minmax(0, 1fr) !important; /* equal shorter rows */
  gap: 8px !important;
  margin: 0 0 8px 0 !important;
}

.page-coaching.cch-fit-page .cch-fit-quad .qcard{
  padding: 8px 10px !important;
}

.page-coaching.cch-fit-page .cch-fit-quad .qtitle{
  margin: 0 0 4px 0 !important;
  font-size: 0.96rem !important;
  line-height: 1.1 !important;
}

.page-coaching.cch-fit-page .cch-fit-quad .qdesc{
  font-size: 0.88rem !important;
  line-height: 1.15 !important;
}

/* Clamp testimonials so they align and don't push buttons down */
.page-coaching.cch-fit-page .tquote{
  font-size: 0.90rem !important;
  line-height: 1.18 !important;
}

.page-coaching.cch-fit-page .cch-fit-tleft .tquote,
.page-coaching.cch-fit-page .cch-fit-tright .tquote{
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 4 !important;  /* reduce height */
  overflow: hidden !important;
}

.page-coaching.cch-fit-page .tcard{
  padding: 9px 11px !important;
}

.page-coaching.cch-fit-page .cch-fit-tleft,
.page-coaching.cch-fit-page .cch-fit-tright{
  margin-top: 8px !important;
}

/* Ensure right buttons stay visible */
.page-coaching.cch-fit-page .cch-fit-actions{
  margin-top: auto !important;
  padding-top: 8px !important;
}

/* If still tight on your laptop, this will force-fit */
@media (max-height: 760px) and (min-width: 980px){
  .page-coaching.cch-fit-page .cch-fit-container{ height: calc(100vh - 110px) !important; }
  .page-coaching.cch-fit-page .cch-fit-grid{ gap: 12px !important; }
  .page-coaching.cch-fit-page .cch-fit-quad{ gap: 7px !important; }
  .page-coaching.cch-fit-page .cch-fit-quad .qcard{ padding: 7px 9px !important; }
  .page-coaching.cch-fit-page .cch-fit-quad .qdesc,
  .page-coaching.cch-fit-page .tquote{ font-size: 0.86rem !important; }
  .page-coaching.cch-fit-page .cch-fit-tleft .tquote,
  .page-coaching.cch-fit-page .cch-fit-tright .tquote{ -webkit-line-clamp: 3 !important; }
}
/* overrides.css (append at end) */
/* Fix: align testimonials to same baseline + center buttons */

.page-coaching.cch-fit-page .cch-fit-left,
.page-coaching.cch-fit-page .cch-fit-right{
  display: grid !important;
  grid-template-rows: auto 1fr auto auto !important; /* title+copy | quad spacer | testimonial | actions */
  row-gap: 8px !important;
  align-content: start !important;
}

/* LEFT: put title+copy in row 1, spacer row 2, testimonial row 3 */
.page-coaching.cch-fit-page .cch-fit-left .cch-title,
.page-coaching.cch-fit-page .cch-fit-left .cch-core{
  grid-row: 1 !important;
}
.page-coaching.cch-fit-page .cch-fit-left .cch-fit-tleft{
  grid-row: 3 !important;
  margin-top: 0 !important;
}

/* RIGHT: quadrants occupy the spacer row 2, testimonial row 3, actions row 4 */
.page-coaching.cch-fit-page .cch-fit-right .cch-fit-quad{
  grid-row: 2 !important;
  margin: 0 !important;
}
.page-coaching.cch-fit-page .cch-fit-right .cch-fit-tright{
  grid-row: 3 !important;
  margin-top: 0 !important;
}
.page-coaching.cch-fit-page .cch-fit-right .cch-fit-actions{
  grid-row: 4 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Ensure both testimonials start at same height */
.page-coaching.cch-fit-page .cch-fit-tleft,
.page-coaching.cch-fit-page .cch-fit-tright{
  align-self: start !important;
}

/* Center the buttons block and the buttons inside */
.page-coaching.cch-fit-page .cch-fit-actions{
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  text-align: center !important;
}

/* If .btn is full-width somewhere, normalize */
.page-coaching.cch-fit-page .cch-fit-actions .btn{
  width: auto !important;
}

/* Optional: keep both testimonials visually equal height */
.page-coaching.cch-fit-page .cch-fit-tleft .tcard,
.page-coaching.cch-fit-page .cch-fit-tright .tcard{
  min-height: 92px !important;
}
/* overrides.css (append at end) */
/* Reset the broken grid alignment changes and do a minimal, stable fix:
   1) Force both testimonials to the same height (so their top edges align visually)
   2) Center the buttons block */

.page-coaching.cch-fit-page .cch-fit-left,
.page-coaching.cch-fit-page .cch-fit-right{
  display: flex !important;
  flex-direction: column !important;
}

/* Make the testimonial blocks identical height so their top lines align */
.page-coaching.cch-fit-page .cch-fit-tleft .tcard,
.page-coaching.cch-fit-page .cch-fit-tright .tcard{
  height: 112px !important;      /* adjust if needed: 104 / 112 / 120 */
  overflow: hidden !important;
}

/* Clamp both testimonials to same number of lines */
.page-coaching.cch-fit-page .cch-fit-tleft .tquote,
.page-coaching.cch-fit-page .cch-fit-tright .tquote{
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 4 !important;
  overflow: hidden !important;
}

/* Keep quadrants compact so the right column doesn't push the testimonial down */
.page-coaching.cch-fit-page .cch-fit-quad{
  flex: 0 0 auto !important;
}

/* Buttons: truly centered */
.page-coaching.cch-fit-page .cch-fit-actions{
  margin-top: auto !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px !important;
  width: 100% !important;
}

.page-coaching.cch-fit-page .cch-fit-actions .btn{
  width: auto !important;
}
/* Compress quadrant height */
.page-coaching .cch-fit-quad{
  gap: 8px !important;
}

.page-coaching .cch-fit-quad .qcard{
  padding: 8px 10px !important;
}

.page-coaching .cch-fit-quad .qdesc{
  font-size: 0.86rem !important;
  line-height: 1.15 !important;
}

/* Reduce left column text density */
.page-coaching .cch-core-main{
  font-size: 1rem !important;
  line-height: 1.25 !important;
}

.page-coaching .cch-core-sub{
  font-size: 0.92rem !important;
  line-height: 1.2 !important;
  margin: 6px 0 !important;
}
.page-coaching .cch-fit-actions{
  display:flex !important;
  justify-content:center !important;
  gap:14px !important;
  margin-top:auto !important;
}
.page-coaching .cch-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 32;
  align-items:start;
}

.page-coaching .quad{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}

.page-coaching .actions{
  display:flex;
  justify-content:center;
  gap:16px;
  margin-top:16px;
}
/* === Compress Coaching Quadrants === */

.page-coaching .quad{
  gap:12px !important;
}

.page-coaching .qcard{
  padding:6px 10px !important;     /* reduce internal height */
  border-top:1px solid #e6e6e6;    /* keep the visual line */
}

.page-coaching .cch-fit-grid{
  grid-template-columns: 1.1fr 0.9fr;
}

.page-coaching .cch-fit-right{
  max-width: 520px;
}
.page-coaching .tcard{
  background:#ffffff;
  border-left:3px solid #F75C03;
  padding:14px 16px;
  margin-top:14px;
}

.page-coaching .tquote{
  font-size:0.92rem;
  line-height:1.25;
}

.page-coaching .tauthor{
  font-size:0.82rem;
  letter-spacing:1px;
  margin-top:8px;
}
.page-coaching .cch-fit-actions{
  display:flex;
  justify-content:center;
  gap:16px;
  margin-top:20px;
}

.page-coaching .btn{
  padding:10px 20px;
  border:1px solid #F75C03;
  background:transparent;
  color:#4D4D4D;
  transition:all 0.2s ease;
}

.page-coaching .btn:hover{
  background:#F75C03;
  color:#ffffff;
}
/* Tighten quadrant block */
.page-coaching .quad{
  gap:10px !important;
  margin-bottom:12px !important;
}

.page-coaching .qcard{
  padding:6px 10px !important;
  background:#f8f8f8 !important;
  border-left:2px solid #F75C03 !important;
}

.page-coaching .qtitle{
  font-size:0.92rem !important;
  margin:0 0 3px 0 !important;
  line-height:1.1 !important;
}

.page-coaching .qdesc{
  font-size:0.82rem !important;
  line-height:1.15 !important;
  margin:0 !important;
}
/* Make both testimonials same vertical offset */
.page-coaching .cch-fit-left,
.page-coaching .cch-fit-right{
  display:flex !important;
  flex-direction:column !important;
}

.page-coaching .cch-testimonials{
  margin-top:auto !important;
}
/* Page-level button centering */
.page-coaching .global-actions{
  display:flex;
  justify-content:center;
  gap:18px;
  margin-top:24px;
  width:100%;
}
.refined-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  column-gap:40px;
  row-gap:22px;
  align-items:start;
}

.right-quad .quad{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.right-quad .qcard{
  padding:8px 12px;
  background:#fafafa;
  border-left:3px solid #F75C03;
}

.right-quad .qdesc{
  font-size:0.84rem;
  line-height:1.15;
}

.left-testimonial .tcard,
.right-testimonial .tcard{
  background:#ffffff;
  border-left:3px solid #F75C03;
  padding:14px;
}

.page-buttons{
  grid-column:1 / -1;
  display:flex;
  justify-content:center;
  gap:20px;
  margin-top:8px;
}

.left-buttons{
  grid-column:1 / 2;
  display:flex;
  gap:16px;
  margin-top:12px;
}
.left-buttons{
  grid-column:1 / 2;
  display:flex;
  justify-content:flex-start;  /* or center */
  gap:16px;
  margin-top:12px;
}
.left-quote{
  margin-top:24px;
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.left-quote .quote-bar{
  width:3px;
  background:#F75C03;
  height:100%;
}

.left-quote .quote-text{
  font-size:0.95rem;
  line-height:1.35;
}
/* Give breathing room */
.page-speaking .spk-note{
  margin-top:32px;
  padding-top:18px;
  border-top:1px solid #e6e6e6;
  max-width:420px;
}

/* Strengthen visual emphasis */
.page-speaking .spk-note{
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.page-speaking .spk-note::before{
  content:"";
  width:3px;
  background:#F75C03;
  height:100%;
  display:block;
}

/* Make it feel like a declaration */
.page-speaking .spk-note{
  font-size:1rem;
  line-height:1.35;
  font-weight:500;
}
.page-speaking .spk-note{
  font-size:1.05rem;
  font-weight:600;
}


/* SPEAKING_CARDS_COACHING_STYLE_START */

/* Speaking cards styled like Coaching quadrants/testimonials */
.page-speaking .spk-right{
  max-width: 560px;
}

.page-speaking .spk-card{
  background: #f8f8f8;
  border-left: 3px solid #F75C03;
  border-top: 1px solid #e6e6e6;
  padding: 12px 14px;
  margin: 0 0 14px 0;
}

.page-speaking .spk-card-title{
  font-weight: 600;
  margin: 0 0 6px 0;
  line-height: 1.15;
}

.page-speaking .spk-card-desc{
  font-size: 0.92rem;
  line-height: 1.28;
  margin: 0 0 8px 0;
}

.page-speaking .spk-card-meta{
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.75;
  margin: 0;
}

/* Subtle hover like Coaching blocks */
.page-speaking .spk-card:hover{
  background: #f2f2f2;
}

/* Keep spacing consistent with left column */
.page-speaking .spk-grid{
  align-items: start;
}

/* Optional: tighten on short screens */
@media (max-height: 760px){
  .page-speaking .spk-card{
    padding: 10px 12px;
    margin-bottom: 12px;
  }
  .page-speaking .spk-card-desc{
    font-size: 0.9rem;
  }
}

/* SPEAKING_CARDS_COACHING_STYLE_END */



/* SPEAKING_MATCH_COACHING_START */

/* ================================
   SPEAKING: MATCH COACHING VISUALS
   Benchmark = Coaching page
   ================================= */

/* 1) Same column proportions as Coaching */
.page-speaking .spk-grid{
  display:grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  gap: 40px !important;
  align-items: start !important;
}

/* 2) Same "left rail" feel as Coaching */
.page-speaking .spk-left{
  border-left: 3px solid #F75C03 !important;
  padding-left: 18px !important;
}

/* 3) Buttons: match Coaching density */
.page-speaking .actions{
  display:flex !important;
  gap: 16px !important;
  margin-top: 14px !important;
}
.page-speaking .actions .btn{
  padding: 10px 22px !important;
}

/* 4) Quote block: make it look like Coaching testimonial styling */
.page-speaking .spk-note{
  margin-top: 22px !important;
  padding: 14px 16px !important;
  background: #ffffff !important;
  border-left: 3px solid #F75C03 !important;
  border-top: 1px solid #e6e6e6 !important;
  max-width: 520px !important;
}
.page-speaking .spk-note{
  font-weight: 500 !important;
  line-height: 1.35 !important;
}

/* 5) Speaking cards: match Coaching quadrant cards */
.page-speaking .spk-right{
  max-width: 560px !important;
}

.page-speaking .spk-card{
  background: #f8f8f8 !important;
  border-left: 3px solid #F75C03 !important;
  border-top: 1px solid #e6e6e6 !important;
  padding: 12px 14px !important;
  margin: 0 0 14px 0 !important;
}

.page-speaking .spk-card-title{
  font-weight: 600 !important;
  margin: 0 0 6px 0 !important;
  line-height: 1.15 !important;
}

.page-speaking .spk-card-desc{
  font-size: 0.92rem !important;
  line-height: 1.28 !important;
  margin: 0 0 8px 0 !important;
}

.page-speaking .spk-card-meta{
  font-size: 0.75rem !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  opacity: 0.75 !important;
  margin: 0 !important;
}

/* Subtle hover like Coaching blocks */
.page-speaking .spk-card:hover{
  background: #f2f2f2 !important;
}

/* 6) Tighten on short screens */
@media (max-height: 760px){
  .page-speaking .spk-card{
    padding: 10px 12px !important;
    margin-bottom: 12px !important;
  }
  .page-speaking .spk-card-desc{
    font-size: 0.9rem !important;
  }
  .page-speaking .spk-note{
    padding: 12px 14px !important;
  }
}

/* SPEAKING_MATCH_COACHING_END */

/* SPEAKING FIXES */
.page-speaking .spk-left{
  border-left: none !important;
  padding-left: 0 !important;
}
/* Quote block: single flow + BSF no-wrap */
.page-speaking .spk-note{
  margin-top: 22px !important;
  display: block !important;
  max-width: 520px !important;
}

.page-speaking .spk-note .accent-text{
  white-space: nowrap !important;
}

.page-speaking .spk-note{
  word-break: normal !important;
  overflow-wrap: normal !important;
}
.page-speaking .bsf{ white-space: nowrap !important; }
/* FINAL: Remove all vertical rails from Speaking left column */

.page-speaking .spk-left{
  border-left: none !important;
  padding-left: 0 !important;
}

.page-speaking .spk-left::before{
  content: none !important;
  display: none !important;
}

.page-speaking .spk{
  border-left: none !important;
}

.page-speaking .spk-grid{
  border-left: none !important;
}



/* CONSULTING_MATCH_SCHEMA_START */

/* ================================
   CONSULTING: LOCKED VISUAL SCHEMA
   Matches Coaching + Speaking
   ================================= */

/* Layout */
.page-consulting .cns{
  padding-top: 26px !important;
  padding-bottom: 18px !important;
}

.page-consulting .cns-grid{
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  gap: 40px !important;
  align-items: start !important;
}

/* Left column */
.page-consulting .cns-title{
  margin: 0 0 12px 0 !important;
  line-height: 1 !important;
}

.page-consulting .cns-core p{
  margin: 0 0 12px 0 !important;
  line-height: 1.4 !important;
  max-width: 56ch !important;
}

/* Buttons (match Coaching/Speaking density) */
.page-consulting .cns-actions{
  display: flex !important;
  gap: 16px !important;
  margin-top: 16px !important;
}

.page-consulting .cns-actions .btn{
  padding: 10px 22px !important;
}

/* Right column */
.page-consulting .cns-right{
  max-width: 560px !important;
}

/* Cards (match Speaking cards + Coaching quadrants language) */
.page-consulting .cns-card{
  background: #f8f8f8 !important;
  border-left: 3px solid #F75C03 !important;
  border-top: 1px solid #e6e6e6 !important;
  padding: 12px 14px !important;
  margin: 0 0 14px 0 !important;
}

.page-consulting .cns-card-title{
  font-weight: 600 !important;
  margin: 0 0 6px 0 !important;
  line-height: 1.15 !important;
}

.page-consulting .cns-card-desc{
  font-size: 0.92rem !important;
  line-height: 1.28 !important;
  margin: 0 !important;
}

.page-consulting .cns-card:hover{
  background: #f2f2f2 !important;
}

/* Short screens */
@media (max-height: 760px){
  .page-consulting .cns-grid{ gap: 32px !important; }
  .page-consulting .cns-card{ padding: 10px 12px !important; margin-bottom: 12px !important; }
  .page-consulting .cns-card-desc{ font-size: 0.9rem !important; }
}

/* CONSULTING_MATCH_SCHEMA_END */
/* Case Study block – matches Coaching testimonial language */

.page-consulting .cns-case{
  background:#ffffff;
  border-left:3px solid #F75C03;
  border-top:1px solid #e6e6e6;
  padding:14px 16px;
  margin-top:18px;
}

.page-consulting .cns-case-title{
  font-weight:600;
  line-height:1.25;
  margin-bottom:8px;
}

.page-consulting .cns-case-link{
  font-size:0.82rem;
  letter-spacing:1px;
  text-transform:uppercase;
  text-decoration:none;
  border-bottom:1px solid #F75C03;
  padding-bottom:2px;
}

.page-consulting .cns-case-link:hover{
  opacity:0.7;
}
/* OSFN webapp thumbnails */
.osfn-thumb-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.osfn-thumb{
  display:block;
  background:#fff;
  border:1px solid #e6e6e6;
  border-radius:12px;
  overflow:hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.osfn-thumb img{
  width:100%;
  height:auto;
  display:block;
}

/* “smaller thumbnails” control */
.osfn-thumb-grid{
  max-width: 980px;
}

@media (hover:hover){
  .osfn-thumb:hover{
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.10);
  }
}

/* Responsive */
@media (max-width: 1100px){
  .osfn-thumb-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px){
  .osfn-thumb-grid{ grid-template-columns: 1fr; }
}



/* CONSULTING_LOCK_SCHEMA_START */

/* Text color aligned with Coaching/Speaking */
.page-consulting,
.page-consulting p,
.page-consulting div,
.page-consulting a,
.page-consulting li{
  color:#4D4D4D !important;
}

/* Layout */
.page-consulting .cns-grid-2row{
  display:grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  grid-template-rows: auto auto !important;
  column-gap: 40px !important;
  row-gap: 22px !important;
  align-items:start !important;
}

/* Buttons */
.page-consulting .cns-actions{
  display:flex !important;
  gap:16px !important;
  margin-top:14px !important;
}
.page-consulting .cns-actions .btn{
  padding:10px 22px !important;
}

/* Cards (same as locked Speaking cards) */
.page-consulting .cns-right{ max-width:560px !important; }
.page-consulting .cns-card{
  background:#f8f8f8 !important;
  border-left:3px solid #F75C03 !important;
  border-top:1px solid #e6e6e6 !important;
  padding:12px 14px !important;
  margin:0 0 14px 0 !important;
}
.page-consulting .cns-card-title{
  font-weight:600 !important;
  margin:0 0 6px 0 !important;
  line-height:1.15 !important;
}
.page-consulting .cns-card-desc{
  font-size:0.92rem !important;
  line-height:1.28 !important;
  margin:0 !important;
}

/* Case studies: match Coaching testimonial language */
.page-consulting .cns-case{
  background:#ffffff !important;
  border-left:3px solid #F75C03 !important;
  border-top:1px solid #e6e6e6 !important;
  padding:14px 16px !important;
}
.page-consulting .cns-case-title{
  font-weight:600 !important;
  line-height:1.25 !important;
  margin:0 0 8px 0 !important;
}
.page-consulting .cns-case-link{
  font-size:0.82rem !important;
  letter-spacing:1px !important;
  text-transform:uppercase !important;
  text-decoration:none !important;
  border-bottom:1px solid #F75C03 !important;
  padding-bottom:2px !important;
}
.page-consulting .cns-case-link:hover{ opacity:0.75 !important; }

/* CONSULTING_LOCK_SCHEMA_END */



/* OSFN_MATCH_SCHEMA_START */

/* ================================
   OSFN: MATCH COACHING/SPEAKING SCHEMA
   ================================= */

/* text color alignment */
.page-osfn,
.page-osfn p,
.page-osfn div,
.page-osfn a{
  color:#4D4D4D !important;
}

.page-osfn .osfn{
  padding-top: 26px !important;
  padding-bottom: 18px !important;
}

.page-osfn .osfn-grid{
  display:grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  gap: 40px !important;
  align-items: start !important;
}

/* Logo */
.page-osfn .osfn-logo-wrap{
  margin-bottom: 16px !important;
}
.page-osfn .osfn-logo{
  max-width: 220px !important;
  height: auto !important;
  display:block !important;
}

/* Left copy */
.page-osfn .osfn-core p{
  margin: 0 0 12px 0 !important;
  line-height: 1.4 !important;
  max-width: 60ch !important;
}

/* Right column cards: same language as Coaching/Speaking */
.page-osfn .osfn-right{
  max-width: 560px !important;
}

.page-osfn .osfn-card{
  background:#f8f8f8 !important;
  border-left:3px solid #F75C03 !important;
  border-top:1px solid #e6e6e6 !important;
  padding:12px 14px !important;
  margin:0 0 14px 0 !important;
}

.page-osfn .osfn-card-title{
  font-weight:600 !important;
  margin:0 0 6px 0 !important;
  line-height:1.15 !important;
}

.page-osfn .osfn-card-desc{
  font-size:0.92rem !important;
  line-height:1.28 !important;
  margin:0 !important;
}

.page-osfn .osfn-card:hover{
  background:#f2f2f2 !important;
}

/* Responsive */
@media (max-width: 980px){
  .page-osfn .osfn-grid{
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }
  .page-osfn .osfn-right{ max-width: none !important; }
}

@media (max-height: 760px){
  .page-osfn .osfn-card{ padding:10px 12px !important; margin-bottom:12px !important; }
  .page-osfn .osfn-card-desc{ font-size:0.9rem !important; }
}

/* OSFN_MATCH_SCHEMA_END */


/* OSFN MODULES PAGE */

.page-osfn-modules{
  color:#4D4D4D !important;
}

.page-osfn-modules .osfn-mod-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 24px;
}

@media (max-width: 900px){
  .page-osfn-modules .osfn-mod-grid{
    grid-template-columns: 1fr;
  }
}

.osfn-actions{
  margin-top:18px !important;
}



/* OSFN_MODULE_THUMBS_START */

.page-osfn-modules,
.page-osfn-modules p,
.page-osfn-modules a,
.page-osfn-modules div{
  color:#4D4D4D !important;
}

/* Thumbnail grid */
.page-osfn-modules .osfn-thumb-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
  max-width: 980px;
}

/* Thumbnail card */
.page-osfn-modules .osfn-thumb{
  display:block;
  background:#ffffff;
  border:1px solid #e6e6e6;
  border-radius:12px;
  overflow:hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.page-osfn-modules .osfn-thumb img{
  width:100%;
  height:auto;
  display:block;
}

/* Hover */
@media (hover:hover){
  .page-osfn-modules .osfn-thumb:hover{
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.10);
  }
}

/* Responsive */
@media (max-width: 1100px){
  .page-osfn-modules .osfn-thumb-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px){
  .page-osfn-modules .osfn-thumb-grid{ grid-template-columns: 1fr; }
}

/* OSFN_MODULE_THUMBS_END */


/* OSFN MODULE WHITEPAPER LINKS */

.module-actions{
display:flex;
flex-wrap:wrap;
gap:16px;
margin-top:16px;
}

.wp-link{
font-size:0.82rem;
letter-spacing:1px;
text-transform:uppercase;
text-decoration:none;
border-bottom:1px solid #F75C03;
padding-bottom:2px;
color:#4D4D4D;
}

.wp-link:hover{
opacity:0.7;
}



/* OSFN_MODULES_LOCKED_START */

/* OSFN MODULES: LOCKED LAYOUT + STYLING */

.page-osfn-modules,
.page-osfn-modules p,
.page-osfn-modules a,
.page-osfn-modules div{
  color:#4D4D4D !important;
}

/* Each module: thumbnail left, content right */
.page-osfn-modules .module-block{
  display:grid !important;
  grid-template-columns: 360px 1fr !important;
  gap: 40px !important;
  align-items: start !important;
  margin: 0 0 56px 0 !important;
}

/* Thumbnail */
.page-osfn-modules .module-thumb{
  width: 100% !important;
}
.page-osfn-modules .module-thumb img{
  width:100% !important;
  height:auto !important;
  display:block !important;
  border-radius:14px !important;
  border:1px solid #e6e6e6 !important;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08) !important;
}

/* Title + copy */
.page-osfn-modules .module-title{
  margin: 0 0 12px 0 !important;
  line-height: 1.05 !important;
}
.page-osfn-modules .module-content p{
  margin: 0 0 12px 0 !important;
  line-height: 1.45 !important;
  max-width: 70ch !important;
}

/* Actions row */
.page-osfn-modules .module-actions{
  display:flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  margin-top: 14px !important;
  align-items: center !important;
}

/* Whitepaper link */
.page-osfn-modules .wp-link{
  font-size:0.82rem !important;
  letter-spacing:1px !important;
  text-transform:uppercase !important;
  text-decoration:none !important;
  border-bottom:1px solid #F75C03 !important;
  padding-bottom:2px !important;
  color:#4D4D4D !important;
}
.page-osfn-modules .wp-link:hover{ opacity:0.75 !important; }

/* Responsive */
@media (max-width: 980px){
  .page-osfn-modules .module-block{
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
}

/* OSFN_MODULES_LOCKED_END */




/* OSFN_MODULES_SPEAKING_STYLE_START */

.page-osfn-modules,
.page-osfn-modules p,
.page-osfn-modules a,
.page-osfn-modules div{
  color:#4D4D4D !important;
}

.page-osfn-modules .module-block{
  display:grid !important;
  grid-template-columns: 360px 1fr !important;
  gap: 40px !important;
  align-items: start !important;
  margin: 0 0 56px 0 !important;
}

/* Thumbnail: clean, like webapp screenshot */
.page-osfn-modules .module-thumb img{
  width:100% !important;
  height:auto !important;
  display:block !important;
  border-radius:12px !important;
  border:1px solid #e6e6e6 !important;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08) !important;
}

/* Content: Speaking-like separators */
.page-osfn-modules .module-content{
  border-top: 1px solid #e6e6e6 !important;
  padding-top: 12px !important;
}

.page-osfn-modules .module-title{
  margin: 0 0 12px 0 !important;
  line-height: 1.05 !important;
}

.page-osfn-modules .module-content p{
  margin: 0 0 12px 0 !important;
  line-height: 1.45 !important;
  max-width: 78ch !important;
}

/* Actions: same density as Speaking */
.page-osfn-modules .module-actions{
  display:flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  margin-top: 14px !important;
  align-items: center !important;
}

/* Whitepaper link: same language as your case-study links */
.page-osfn-modules .wp-link{
  font-size:0.82rem !important;
  letter-spacing:1px !important;
  text-transform:uppercase !important;
  text-decoration:none !important;
  border-bottom:1px solid #F75C03 !important;
  padding-bottom:2px !important;
  color:#4D4D4D !important;
}
.page-osfn-modules .wp-link:hover{ opacity:0.75 !important; }

@media (max-width: 980px){
  .page-osfn-modules .module-block{
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .page-osfn-modules .module-content{
    border-top: 1px solid #e6e6e6 !important;
  }
}

/* OSFN_MODULES_SPEAKING_STYLE_END */



/* OSFN_MODULE_POINTS_SPEAKING_START */

.page-osfn-modules,
.page-osfn-modules p,
.page-osfn-modules a,
.page-osfn-modules div{
  color:#4D4D4D !important;
}

.page-osfn-modules .module-block{
  display:grid !important;
  grid-template-columns: 360px 1fr !important;
  gap: 40px !important;
  align-items: start !important;
  margin: 0 0 56px 0 !important;
}

.page-osfn-modules .module-thumb img{
  width:100% !important;
  height:auto !important;
  display:block !important;
  border-radius:12px !important;
  border:1px solid #e6e6e6 !important;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08) !important;
}

/* Title */
.page-osfn-modules .module-title{
  margin: 0 0 12px 0 !important;
  line-height: 1.05 !important;
}

/* 4 blocks like Speaking cards */
.page-osfn-modules .module-points{
  margin-top: 8px !important;
}

.page-osfn-modules .mp-item{
  padding: 12px 0 !important;
  border-top: 1px solid #e6e6e6 !important;
}

.page-osfn-modules .mp-title{
  font-weight: 600 !important;
  margin: 0 0 6px 0 !important;
  line-height: 1.15 !important;
}

.page-osfn-modules .mp-desc{
  font-size: 0.92rem !important;
  line-height: 1.35 !important;
  margin: 0 !important;
  max-width: 82ch !important;
}

/* Actions */
.page-osfn-modules .module-actions{
  display:flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  margin-top: 14px !important;
  align-items: center !important;
}

/* Whitepaper link */
.page-osfn-modules .wp-link{
  font-size:0.82rem !important;
  letter-spacing:1px !important;
  text-transform:uppercase !important;
  text-decoration:none !important;
  border-bottom:1px solid #F75C03 !important;
  padding-bottom:2px !important;
  color:#4D4D4D !important;
}
.page-osfn-modules .wp-link:hover{ opacity:0.75 !important; }

@media (max-width: 980px){
  .page-osfn-modules .module-block{
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
}

/* OSFN_MODULE_POINTS_SPEAKING_END */

/* OSFN MODULES – FINAL TUNING */

/* 1) Thumbnail height matches text height */
.page-osfn-modules .module-block{
  align-items: stretch !important;          /* was start */
}

.page-osfn-modules .module-thumb{
  height: 100% !important;
}

.page-osfn-modules .module-thumb img{
  height: 100% !important;
  object-fit: cover !important;            /* fills height without distortion */
}

/* 2) Remove heading above each module */
.page-osfn-modules .module-title{
  display: none !important;
}

/* 3) Restore grey background + orange vertical line on each point block */
.page-osfn-modules .mp-item{
  background: #f8f8f8 !important;
  border-left: 3px solid #F75C03 !important;
  border-top: 1px solid #e6e6e6 !important;
  padding: 12px 14px !important;
  margin: 0 0 14px 0 !important;
}

/* Remove the old "top rule only" look */
.page-osfn-modules .module-points .mp-item{
  border-right: none !important;
  border-bottom: none !important;
}

/* Keep spacing consistent */
.page-osfn-modules .module-points{
  margin-top: 0 !important;
}
/* FIX: stop thumbnail cropping */
.page-osfn-modules .module-thumb{
  background:#ffffff !important;
  border:1px solid #e6e6e6 !important;
  border-radius:12px !important;
  padding:10px !important;
  overflow:hidden !important;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08) !important;
}

.page-osfn-modules .module-thumb img{
  width:100% !important;
  height:100% !important;
  object-fit: contain !important;   /* no cropping */
  display:block !important;
  border-radius:8px !important;     /* inner radius */
  box-shadow:none !important;       /* avoid double shadow */
  border:none !important;
}

/* keep height match without forcing crop */
.page-osfn-modules .module-block{
  align-items: stretch !important;
}
/* FORCE inner thumbnail to scale properly */
.page-osfn-modules .module-thumb{
  width:100% !important;
  height:auto !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:16px !important;
  box-sizing:border-box !important;
}

.page-osfn-modules .module-thumb > div{
  width:100% !important;
  height:auto !important;
  max-width:100% !important;
}

/* remove fixed Tailwind sizes inside thumbnail */
.page-osfn-modules .module-thumb *{
  max-width:100% !important;
}

/* ensure image/content scales proportionally */
.page-osfn-modules .module-thumb img{
  width:100% !important;
  height:auto !important;
  object-fit:contain !important;
}
/* OSFN MODULE THUMB: make the screenshot fill the frame */
.page-osfn-modules .module-thumb{
  padding: 0 !important;
  overflow: hidden !important;
  background: #fff !important;
  border: 1px solid #e6e6e6 !important;
  border-radius: 12px !important;
}

.page-osfn-modules .module-thumb img{
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;         /* allows it to fill */
  object-position: left !important;
  transform: scale(0.75) !important;    /* removes internal white margin */
  transform-origin: center !important;
}
/* FINAL: clean, controlled thumbnail layout */

.page-osfn-modules .module-block{
  align-items: start !important;   /* stop stretch */
}

/* Fixed width column */
.page-osfn-modules .module-thumb{
  width: 360px !important;
  aspect-ratio: 4 / 5 !important;   /* consistent shape */
  background: #ffffff !important;
  border: 1px solid #e6e6e6 !important;
  border-radius: 14px !important;
  padding: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08) !important;
}

/* Image scales proportionally */
.page-osfn-modules .module-thumb img{
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}


/* WRITING PAGE */

.page-writing{
  color:#4D4D4D;
}

.page-writing .writing-block{
  display:grid;
  grid-template-columns: 1fr 360px;
  gap:40px;
  margin-bottom:60px;
}

.page-writing .writing-card{
  background:#f8f8f8;
  border-left:3px solid #F75C03;
  padding:18px;
  border-radius:10px;
}

.page-writing .writing-card-title{
  font-weight:600;
  margin-bottom:8px;
}

.page-writing .writing-link a{
  text-decoration:none;
  border-bottom:1px solid #F75C03;
  font-size:0.85rem;
  letter-spacing:1px;
}

@media (max-width: 900px){
  .page-writing .writing-block{
    grid-template-columns:1fr;
  }
}



/* WRITING_PAGE_START */

.page-writing,
.page-writing p,
.page-writing a,
.page-writing div{
  color:#4D4D4D !important;
}

.page-writing .w-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
  margin-top: 18px;
}

.page-writing .w-cover{
  background:#ffffff;
  border:1px solid #e6e6e6;
  border-radius:14px;
  padding:14px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

.page-writing .w-cover img{
  width:100%;
  height:auto;
  display:block;
  border-radius:10px;
}

.page-writing .w-book-note{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #e6e6e6;
}

.page-writing .w-archive{
  margin-top: 16px;
  background:#f8f8f8;
  border-left:3px solid #F75C03;
  border-top:1px solid #e6e6e6;
  padding: 12px 14px;
}

.page-writing .w-archive-title{
  font-weight:600;
  margin: 0 0 6px 0;
}

.page-writing .w-archive-link a{
  font-size:0.82rem;
  letter-spacing:1px;
  text-transform:uppercase;
  text-decoration:none;
  border-bottom:1px solid #F75C03;
  padding-bottom:2px;
}

.page-writing .w-feed{
  border-top:1px solid #e6e6e6;
  padding-top:12px;
}

.page-writing .w-feed-title{
  font-weight:600;
  margin-bottom: 10px;
}

.page-writing .w-feed-item{
  background:#f8f8f8;
  border-left:3px solid #F75C03;
  border-top:1px solid #e6e6e6;
  padding:12px 14px;
  margin:0 0 14px 0;
}

.page-writing .w-feed-item-title{
  font-weight:600;
  margin:0 0 6px 0;
  line-height:1.2;
}

.page-writing .w-feed-item-meta{
  font-size:0.78rem;
  letter-spacing:1px;
  text-transform:uppercase;
  opacity:0.75;
}

@media (max-width: 980px){
  .page-writing .w-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* WRITING_PAGE_END */



/* WRITING_PAGE_V2_START */

.page-writing,
.page-writing p,
.page-writing a,
.page-writing div{
  color:#4D4D4D !important;
}

/* Section 1 layout */
.page-writing .w2-grid{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items:start;
  margin-top: 18px;
}

/* Smaller cover */
.page-writing .w2-cover{
  width: 260px;
  max-width: 100%;
  background:#ffffff;
  border:1px solid #e6e6e6;
  border-radius:14px;
  padding:12px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

.page-writing .w2-cover img{
  width:100%;
  height:auto;
  display:block;
  border-radius:10px;
}

/* Copy rhythm */
.page-writing .w2-bookcopy p,
.page-writing .w2-intent p{
  margin: 0 0 12px 0;
  line-height: 1.45;
  max-width: 78ch;
}

.page-writing .w2-actions{
  display:flex;
  gap:16px;
  margin-top: 14px;
}

/* Testimonials match Coaching */
.page-writing .w2-testimonials{
  margin-top: 16px;
}

.page-writing .w2-testimonials .tcard{
  background:#ffffff;
  border-left:3px solid #F75C03;
  border-top:1px solid #e6e6e6;
  padding:14px 16px;
  margin: 0 0 14px 0;
}

.page-writing .w2-testimonials .tquote{
  font-size:0.92rem;
  line-height:1.35;
}

.page-writing .w2-testimonials .tauthor{
  margin-top: 10px;
  font-size:0.82rem;
  letter-spacing:1px;
  text-transform:none;
}

/* Section 2 layout */
.page-writing .w3-grid{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items:start;
  margin-top: 56px;
  padding-top: 18px;
  border-top: 1px solid #e6e6e6;
}

.page-writing .w3-feed{
  border-top:1px solid #e6e6e6;
  padding-top:12px;
}

.page-writing .w3-feed-title{
  font-weight:600;
  margin-bottom: 10px;
}

.page-writing .w3-feed-item{
  background:#f8f8f8;
  border-left:3px solid #F75C03;
  border-top:1px solid #e6e6e6;
  padding:12px 14px;
  margin:0 0 14px 0;
}

.page-writing .w3-feed-item-title{
  font-weight:600;
  margin:0 0 6px 0;
  line-height:1.2;
}

.page-writing .w3-feed-item-title a{
  text-decoration:none;
  color:#4D4D4D;
}

.page-writing .w3-feed-item-title a:hover{
  opacity:0.8;
}

.page-writing .w3-feed-item-meta{
  font-size:0.78rem;
  letter-spacing:1px;
  text-transform:uppercase;
  opacity:0.75;
}

/* Mobile */
@media (max-width: 980px){
  .page-writing .w2-grid,
  .page-writing .w3-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* WRITING_PAGE_V2_END */

.page-writing,
.page-writing p,
.page-writing a,
.page-writing div{
  color:#4D4D4D !important;
}

/* Two-column schema */
.page-writing .w-schema{
  display:grid !important;
  grid-template-columns: 420px 1fr !important;
  gap: 44px !important;
  align-items:start !important;
  margin-top: 18px !important;
}

/* Left cover smaller + not dominating */
.page-writing .w-cover{
  width: 320px !important;
  max-width: 100% !important;
  background:#ffffff !important;
  border:1px solid #e6e6e6 !important;
  border-radius:14px !important;
  padding:12px !important;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08) !important;
}

.page-writing .w-cover img{
  width:100% !important;
  height:auto !important;
  display:block !important;
  border-radius:10px !important;
}

.page-writing .w-bookcopy p{
  margin: 0 0 12px 0 !important;
  line-height: 1.45 !important;
  max-width: 62ch !important;
}

.page-writing .w-intent p{
  margin: 0 0 12px 0 !important;
  line-height: 1.45 !important;
  max-width: 78ch !important;
}

.page-writing .w-actions{
  display:flex !important;
  gap:16px !important;
  margin-top: 14px !important;
}

/* Testimonials like Coaching */
.page-writing .w-testimonials{
  margin-top: 16px !important;
}

.page-writing .w-testimonials .tcard{
  background:#ffffff !important;
  border-left:3px solid #F75C03 !important;
  border-top:1px solid #e6e6e6 !important;
  padding:14px 16px !important;
  margin: 0 0 14px 0 !important;
}

.page-writing .w-testimonials .tquote{
  font-size:0.92rem !important;
  line-height:1.35 !important;
}

.page-writing .w-testimonials .tauthor{
  margin-top: 10px !important;
  font-size:0.82rem !important;
  letter-spacing:1px !important;
}

/* Rants and Views section separation */
.page-writing .w-rants{
  margin-top: 56px !important;
  padding-top: 18px !important;
  border-top: 1px solid #e6e6e6 !important;
}

.page-writing .w-feed{
  border-top:1px solid #e6e6e6 !important;
  padding-top:12px !important;
}

.page-writing .w-feed-title{
  font-weight:600 !important;
  margin-bottom: 10px !important;
}

.page-writing .w-feed-item{
  background:#f8f8f8 !important;
  border-left:3px solid #F75C03 !important;
  border-top:1px solid #e6e6e6 !important;
  padding:12px 14px !important;
  margin:0 0 14px 0 !important;
}

.page-writing .w-feed-item-title{
  font-weight:600 !important;
  margin:0 0 6px 0 !important;
  line-height:1.2 !important;
}

.page-writing .w-feed-item-title a{
  text-decoration:none !important;
  color:#4D4D4D !important;
}

.page-writing .w-feed-item-title a:hover{
  opacity:0.8 !important;
}

.page-writing .w-feed-item-meta{
  font-size:0.78rem !important;
  letter-spacing:1px !important;
  text-transform:uppercase !important;
  opacity:0.75 !important;
}

/* Mobile */
@media (max-width: 980px){
  .page-writing .w-schema{
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
}
/* WRITING: symmetry + smaller cover + keep book section within one screen */

.page-writing .wgrid{
  grid-template-columns: 1fr 1fr !important;   /* symmetry like Coaching */
  column-gap: 44px !important;
}

/* smaller cover */
.page-writing .w-cover{
  max-width: 300px !important;
  padding: 10px !important;
}

/* keep cover from forcing layout width */
.page-writing .w-cover img{
  width: 100% !important;
  height: auto !important;
}

/* prevent left testimonial from becoming a narrow column */
.page-writing .w-test-left,
.page-writing .w-test-right{
  grid-column: auto !important;
}

/* tighten book section vertically so it fits before Rants */
.page-writing .w-rightcopy p{
  margin: 0 0 10px 0 !important;
  line-height: 1.38 !important;
}

.page-writing .w-homing{
  margin-top: 8px !important;
  padding-top: 10px !important;
}

.page-writing .wgrid{
  row-gap: 14px !important;
}

.page-writing .w-test .tcard{
  padding: 12px 14px !important;
}

.page-writing .w-test .tquote{
  font-size: 0.9rem !important;
  line-height: 1.32 !important;
}

/* optional: keep buttons compact */
.page-writing .w-buttons{
  margin-top: 2px !important;
  margin-bottom: 2px !important;
}



/* WRITING_SCHEMA_V3_START */

.page-writing,
.page-writing p,
.page-writing a,
.page-writing div{
  color:#4D4D4D !important;
}

/* Book grid */
.page-writing .w-book-grid{
  display:grid !important;
  grid-template-columns: 420px 1fr !important;
  gap: 44px !important;
  align-items:start !important;
  margin-top: 18px !important;
}

/* Smaller cover */
.page-writing .w-cover{
  width: 280px !important;
  max-width: 100% !important;
  background:#ffffff !important;
  border:1px solid #e6e6e6 !important;
  border-radius:14px !important;
  padding:12px !important;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08) !important;
}

.page-writing .w-cover img{
  width:100% !important;
  height:auto !important;
  display:block !important;
  border-radius:10px !important;
}

/* Copy rhythm */
.page-writing .w-bookcopy p,
.page-writing .w-intent p{
  margin: 0 0 12px 0 !important;
  line-height: 1.45 !important;
  max-width: 78ch !important;
}

/* Buttons between content and testimonial */
.page-writing .w-actions{
  display:flex !important;
  gap:16px !important;
  margin-top: 14px !important;
  margin-bottom: 16px !important;
}

/* Testimonials styled like Coaching */
.page-writing .w-testimonial .tcard{
  background:#ffffff !important;
  border-left:3px solid #F75C03 !important;
  border-top:1px solid #e6e6e6 !important;
  padding:14px 16px !important;
  margin: 0 !important;
}

.page-writing .w-testimonial .tquote{
  font-size:0.92rem !important;
  line-height:1.35 !important;
}

.page-writing .w-testimonial .tauthor{
  margin-top: 10px !important;
  font-size:0.82rem !important;
  letter-spacing:1px !important;
}

/* Left testimonial spacing */
.page-writing .w-testimonial-left{
  margin-top: 16px !important;
}

/* Rants and Views */
.page-writing .w-rants-grid{
  display:grid !important;
  grid-template-columns: 420px 1fr !important;
  gap: 44px !important;
  align-items:start !important;
  margin-top: 56px !important;
  padding-top: 18px !important;
  border-top: 1px solid #e6e6e6 !important;
}

.page-writing .w-feed{
  border-top:1px solid #e6e6e6 !important;
  padding-top:12px !important;
}

.page-writing .w-feed-title{
  font-weight:600 !important;
  margin-bottom: 10px !important;
}

.page-writing .w-feed-item{
  background:#f8f8f8 !important;
  border-left:3px solid #F75C03 !important;
  border-top:1px solid #e6e6e6 !important;
  padding:12px 14px !important;
  margin:0 0 14px 0 !important;
}

.page-writing .w-feed-item-title{
  font-weight:600 !important;
  margin:0 0 6px 0 !important;
  line-height:1.2 !important;
}

.page-writing .w-feed-item-title a{
  text-decoration:none !important;
  color:#4D4D4D !important;
}

.page-writing .w-feed-item-title a:hover{
  opacity:0.8 !important;
}

.page-writing .w-feed-item-meta{
  font-size:0.78rem !important;
  letter-spacing:1px !important;
  text-transform:uppercase !important;
  opacity:0.75 !important;
}

/* Mobile */
@media (max-width: 980px){
  .page-writing .w-book-grid,
  .page-writing .w-rants-grid{
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
}

/* WRITING_SCHEMA_V3_END */



/* WRITING_SCHEMA_V4_START */

.page-writing,
.page-writing p,
.page-writing a,
.page-writing div{
  color:#4D4D4D !important;
}

/* Main grid:
   Row1: cover | right copy
   Row2: buttons (span 2)
   Row3: testimonials (2 cols)
*/
.page-writing .wgrid{
  display:grid !important;
  grid-template-columns: 380px 1fr !important;
  grid-template-rows: auto auto auto !important;
  column-gap: 44px !important;
  row-gap: 20px !important;
  align-items:start !important;
  margin-top: 18px !important;
}

/* Cover */
.page-writing .w-cover{
  background:#ffffff !important;
  border:1px solid #e6e6e6 !important;
  border-radius:14px !important;
  padding:12px !important;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08) !important;
}

.page-writing .w-cover img{
  width:100% !important;
  height:auto !important;
  display:block !important;
  border-radius:10px !important;
}

/* Right copy */
.page-writing .w-rightcopy p{
  margin: 0 0 12px 0 !important;
  line-height: 1.45 !important;
  max-width: 82ch !important;
}

.page-writing .w-homing{
  margin-top: 10px !important;
  padding-top: 12px !important;
  border-top: 1px solid #e6e6e6 !important;
}

/* Buttons centered across page */
.page-writing .w-buttons{
  grid-column: 1 / -1 !important;
  display:flex !important;
  justify-content:center !important;
  gap:16px !important;
  margin-top: 6px !important;
  margin-bottom: 6px !important;
}

/* Testimonials aligned */
.page-writing .w-test .tcard{
  background:#ffffff !important;
  border-left:3px solid #F75C03 !important;
  border-top:1px solid #e6e6e6 !important;
  padding:14px 16px !important;
}

.page-writing .w-test .tquote{
  font-size:0.92rem !important;
  line-height:1.35 !important;
}

.page-writing .w-test .tauthor{
  margin-top: 10px !important;
  font-size:0.82rem !important;
  letter-spacing:1px !important;
}

.page-writing .w-test-left{
  grid-column: 1 / 2 !important;
}

.page-writing .w-test-right{
  grid-column: 2 / 3 !important;
}

/* Rants and Views section */
.page-writing .w-rants{
  display:grid !important;
  grid-template-columns: 380px 1fr !important;
  gap: 44px !important;
  align-items:start !important;
  margin-top: 56px !important;
  padding-top: 18px !important;
  border-top: 1px solid #e6e6e6 !important;
}

.page-writing .w-feed{
  border-top:1px solid #e6e6e6 !important;
  padding-top:12px !important;
}

.page-writing .w-feed-title{
  font-weight:600 !important;
  margin-bottom: 10px !important;
}

.page-writing .w-feed-item{
  background:#f8f8f8 !important;
  border-left:3px solid #F75C03 !important;
  border-top:1px solid #e6e6e6 !important;
  padding:12px 14px !important;
  margin:0 0 14px 0 !important;
}

.page-writing .w-feed-item-title{
  font-weight:600 !important;
  margin:0 0 6px 0 !important;
  line-height:1.2 !important;
}

.page-writing .w-feed-item-title a{
  text-decoration:none !important;
  color:#4D4D4D !important;
}

.page-writing .w-feed-item-title a:hover{
  opacity:0.8 !important;
}

.page-writing .w-feed-item-meta{
  font-size:0.78rem !important;
  letter-spacing:1px !important;
  text-transform:uppercase !important;
  opacity:0.75 !important;
}

/* Mobile */
@media (max-width: 980px){
  .page-writing .wgrid{
    grid-template-columns: 1fr !important;
    row-gap: 16px !important;
  }

  .page-writing .w-buttons{
    justify-content:flex-start !important;
    grid-column: 1 / -1 !important;
    flex-wrap: wrap !important;
  }

  .page-writing .w-test-left,
  .page-writing .w-test-right{
    grid-column: 1 / -1 !important;
  }

  .page-writing .w-rants{
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
}

/* WRITING_SCHEMA_V4_END */

.writing-testimonials {
  margin-top: var(--space-8);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.testimonial {
  background: #f5f5f5;
  padding: var(--space-5);
  border-left: 3px solid #F75C03;
}

.testimonial p {
  margin: 0 0 var(--space-3) 0;
  color: #4D4D4D;
  line-height: 1.6;
}

.testimonial-author {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #4D4D4D;
}


/* WRITING_SCHEMA_V5_START */

.page-writing,
.page-writing p,
.page-writing a,
.page-writing div{
  color:#4D4D4D !important;
}

/* Equal columns like Coaching */
.page-writing .wgrid{
  display:grid !important;
  grid-template-columns: 1fr 1fr !important;
  column-gap: 44px !important;
  row-gap: 16px !important;
  align-items:start !important;
  margin-top: 18px !important;
}

/* Cover: smaller, controlled */
.page-writing .w-cover{
  max-width: 320px !important;
  width: 100% !important;
  background:#ffffff !important;
  border:1px solid #e6e6e6 !important;
  border-radius:14px !important;
  padding:12px !important;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08) !important;
}

.page-writing .w-cover img{
  width:100% !important;
  height:auto !important;
  display:block !important;
  border-radius:10px !important;
}

/* Right copy density */
.page-writing .w-right p{
  margin: 0 0 10px 0 !important;
  line-height: 1.38 !important;
}

.page-writing .w-homing{
  margin-top: 8px !important;
  padding-top: 10px !important;
  border-top: 1px solid #e6e6e6 !important;
}

/* Buttons centered across full width */
.page-writing .w-buttons{
  grid-column: 1 / -1 !important;
  display:flex !important;
  justify-content:center !important;
  gap:16px !important;
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

/* Testimonials: Coaching-style blocks, equal widths */
.page-writing .w-test{
  grid-column: auto !important;
}

.page-writing .w-test .tcard{
  background:#f8f8f8 !important;
  border-left:3px solid #F75C03 !important;
  border-top:1px solid #e6e6e6 !important;
  padding:14px 16px !important;
  margin: 0 !important;
  min-height: 164px !important;
}

.page-writing .w-test .tquote{
  font-size:0.92rem !important;
  line-height:1.34 !important;
  margin: 0 !important;
}

.page-writing .w-test .tauthor{
  margin-top: 10px !important;
  font-size:0.78rem !important;
  letter-spacing:1px !important;
  text-transform:uppercase !important;
  opacity:0.85 !important;
}

/* Rants and Views: keep the same two-column rhythm */
.page-writing .w-rants{
  display:grid !important;
  grid-template-columns: 1fr 1fr !important;
  column-gap: 44px !important;
  align-items:start !important;
  margin-top: 56px !important;
  padding-top: 18px !important;
  border-top: 1px solid #e6e6e6 !important;
}

.page-writing .w-feed{
  border-top:1px solid #e6e6e6 !important;
  padding-top:12px !important;
}

.page-writing .w-feed-title{
  font-weight:600 !important;
  margin-bottom: 10px !important;
}

.page-writing .w-feed-item{
  background:#f8f8f8 !important;
  border-left:3px solid #F75C03 !important;
  border-top:1px solid #e6e6e6 !important;
  padding:12px 14px !important;
  margin:0 0 14px 0 !important;
}

.page-writing .w-feed-item-title{
  font-weight:600 !important;
  margin:0 0 6px 0 !important;
  line-height:1.2 !important;
}

.page-writing .w-feed-item-title a{
  text-decoration:none !important;
  color:#4D4D4D !important;
}

.page-writing .w-feed-item-title a:hover{
  opacity:0.8 !important;
}

.page-writing .w-feed-item-meta{
  font-size:0.78rem !important;
  letter-spacing:1px !important;
  text-transform:uppercase !important;
  opacity:0.75 !important;
}

/* Mobile */
@media (max-width: 980px){
  .page-writing .wgrid{
    grid-template-columns: 1fr !important;
    row-gap: 14px !important;
  }

  .page-writing .w-buttons{
    justify-content:flex-start !important;
    flex-wrap: wrap !important;
  }

  .page-writing .w-rants{
    grid-template-columns: 1fr !important;
    row-gap: 18px !important;
  }
}

/* WRITING_SCHEMA_V5_END */
/* WRITING_ONE_SCREEN_COMPACT */

.page-writing .wgrid{
  row-gap: 10px !important;
}

.page-writing .w-right p{
  font-size: 0.92rem !important;
  line-height: 1.32 !important;
  margin-bottom: 8px !important;
}

.page-writing .w-homing{
  margin-top: 6px !important;
  padding-top: 8px !important;
}

.page-writing .w-cover{
  max-width: 220px !important;
}

.page-writing .w-buttons{
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.page-writing .w-test .tcard{
  padding: 12px 14px !important;
  min-height: 140px !important;
}

.page-writing .w-test .tquote{
  font-size: 0.85rem !important;
  line-height: 1.28 !important;
}

.page-writing .w-test .tauthor{
  margin-top: 6px !important;
  font-size: 0.72rem !important;
}

.page-writing .w-rants{
  margin-top: 36px !important;
  padding-top: 14px !important;
}

/* Force first section to stay within viewport */
.page-writing .writing > .container{
  max-height: 100vh !important;
  overflow: hidden !important;
}
/* UNHIDE RANTS SECTION */
.page-writing .writing > .container{
  max-height: none !important;
  overflow: visible !important;
}




/* SITE_UI_LOCK_START */

/* 1) GLOBAL BUTTON CONSISTENCY */
.btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding: 12px 18px !important;
  min-height: 44px !important;
  min-width: 140px !important;
  border-radius: 0px !important;
  border: 1px solid #dcdcdc !important;
  background: transparent !important;
  color: #4D4D4D !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  letter-spacing: 0px !important;
}

.btn:hover{
  background: #f8f8f8 !important;
  border-color: #d0d0d0 !important;
}

/* 2) OSFN MODULES: REMOVE FILLED/ORANGE CTA VARIANTS */
.page-osfn-modules .btn,
.page-osfn-modules a.btn{
  background: transparent !important;
  color: #4D4D4D !important;
  border: 1px solid #dcdcdc !important;
}

/* If any module button is being forced orange via inline styles/classes */
.page-osfn-modules .btn[style*="background"],
.page-osfn-modules a.btn[style*="background"]{
  background: transparent !important;
  color: #4D4D4D !important;
}

/* 3) WRITING: MAKE BOOK DESCRIPTION MATCH COACHING BLOCK STYLE */
.page-writing .w-homing{
  background: #f8f8f8 !important;
  border-left: 3px solid #F75C03 !important;
  border-top: 1px solid #e6e6e6 !important;
  padding: 12px 14px !important;
  margin-top: 12px !important;
}

/* Remove any previous "simple top divider" look on the same element */
.page-writing .w-homing{
  border-right: none !important;
  border-bottom: none !important;
}

/* WRITING: TESTIMONIALS MATCH COACHING VISUAL */
.page-writing .w-test .tcard{
  background: #f8f8f8 !important;
  border-left: 3px solid #F75C03 !important;
  border-top: 1px solid #e6e6e6 !important;
  padding: 14px 16px !important;
}

/* SITE_UI_LOCK_END */



/* HOME_V2_LOCK_START */

/* HOME V2: tuned hero to match site schema */

.page-home-v2,
.page-home-v2 p,
.page-home-v2 a,
.page-home-v2 div{
  color:#4D4D4D !important;
}

.page-home-v2 .home-hero{
  padding: 36px 0 18px 0;
}

.page-home-v2 .home-hero-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

/* Stronger headline */
.page-home-v2 .home-hero-title{
  margin: 0 0 22px 0;
  line-height: 0.92;
  letter-spacing: -0.8px;
  font-size: clamp(44px, 4.2vw, 72px);
}

/* Copy: tighter + less vertical spread */
.page-home-v2 .home-hero-copy{
  border-left: 3px solid #F75C03;
  padding-left: 16px;
  margin-top: 10px;
}

.page-home-v2 .home-hero-copy p{
  margin: 0 0 9px 0;
  line-height: 1.42;
  max-width: 54ch;
  font-size: 1.02rem;
}

/* Actions align with the block */
.page-home-v2 .home-hero-actions{
  margin-top: 18px;
  display:flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-left: 19px; /* aligns to copy block after border */
}

/* Portrait: ground it like a card, reduce float */
.page-home-v2 .home-hero-right{
  display:flex;
  justify-content:flex-end;
}

.page-home-v2 .home-portrait{
  width: min(520px, 100%);
  height: auto;
  display:block;
  border-radius: 18px;
  background:#f8f8f8;
  border: 1px solid #e6e6e6;
  padding: 16px;
}

/* WHAT I DO */
.page-home-v2 .home-what{
  padding: 18px 0 70px 0;
}

.page-home-v2 .home-what-title{
  text-align:center;
  font-size: 0.82rem;
  letter-spacing: 4px;
  opacity: 0.75;
  margin: 26px 0 22px 0;
}

.page-home-v2 .home-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.page-home-v2 .home-card{
  text-decoration:none;
  display:block;
  background:#f8f8f8;
  border-top:1px solid #e6e6e6;
  border-left: 3px solid #F75C03;
  padding: 16px 18px 14px 18px;
}

.page-home-v2 .home-card-title{
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.page-home-v2 .home-card-desc{
  margin: 0 0 6px 0;
  line-height: 1.35;
  max-width: 38ch;
}

.page-home-v2 .home-card-link{
  margin-top: 12px;
  display:inline-block;
  border-bottom: 1px solid #F75C03;
  padding-bottom: 2px;
  color:#4D4D4D;
}

.page-home-v2 .home-card:hover{
  background:#ffffff;
}

/* Mobile */
@media (max-width: 980px){
  .page-home-v2 .home-hero-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .page-home-v2 .home-hero-actions{
    margin-left: 0;
  }

  .page-home-v2 .home-hero-right{
    justify-content:flex-start;
  }

  .page-home-v2 .home-cards{
    grid-template-columns: 1fr;
  }

  .page-home-v2 .home-what-title{
    text-align:left;
  }
}
.page-home-v2 .hero-photo-frame{
  position: relative;
  display: inline-block;
  overflow: visible;
}

/* Only adjust horizontal offset */
.page-home-v2 .hero-photo-frame::before{
  content: "";
  position: absolute;

  top: -12px;          /* keep your current vertical value */
  right: -12px;        /* increase this number to move frame right */

  width: 72%;          /* keep existing dimensions */
  height: 72%;

  border-top: 10px solid #F75C03;
  border-right: 10px solid #F75C03;

  pointer-events: none;
}

/* === Global Button System Update === */

.btn,
button,
input[type="submit"]{
  border: 8px solid #F75C03;
  background: transparent;
  color: #4D4D4D;
  padding: 12px 22px;
  border-radius: 12px;              /* slightly rounded */
  font-weight: 600;
  transition: all 0.25s ease;
}

/* Hover State */
.btn:hover,
button:hover,
input[type="submit"]:hover{
  background: #F75C03;
  color: #ffffff;
}

/* Secondary Button (optional subtle style) */
.btn.secondary{
  border-color: #4D4D4D;
  color: #4D4D4D;
}

.btn.secondary:hover{
  background: #4D4D4D;
  color: #ffffff;
}

/* BUTTON OVERRIDE: orange border + slight radius (global) */
a.btn, .btn{
  border: 2px solid #F75C03 !important;
  background: transparent !important;
  color: #4D4D4D !important;
  padding: 12px 22px !important;
  border-radius: 18px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

a.btn:hover, .btn:hover{
  background: #F75C03 !important;
  color: #FFFFFF !important;
}
/* NAVIGATION — stronger without changing color */

header nav a,
.site-header nav a,
.nav a{
  font-weight: 600 !important;     /* was likely 400–500 */
  letter-spacing: 0.02em !important;
  font-size: 15px !important;      /* slightly larger */
}

/* Reduce visual drift between items */
header nav,
.site-header nav{
  gap: 28px !important;            /* tighten spacing */
}
/* FOOTER: social icons + stop the sitemap from making it broad */

.footer-inner{
  align-items: flex-start;
  gap: 32px;
}

/* Make links block wrap horizontally instead of tall vertical column */
.footer-links{
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  max-width: 520px;
}

/* Social row */
.footer-social{
  display: flex;
  gap: 12px;
  margin: 14px 0 10px 0;
}

.social-icon{
  width: 34px;
  height: 34px;
  border: 1px solid #e6e6e6;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4D4D4D;
  text-decoration: none;
}

.social-icon:hover{
  border-color: #F75C03;
  color: #F75C03;
}

/* COMPRESS FOOTER HEIGHT */

.footer{
  padding: 32px 0 24px 0 !important;
}

.footer-inner{
  gap: 20px !important;
}

.footer-brand{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.footer-tagline{
  margin:6px 0 4px 0;
}

.footer-copy{
  margin-top:4px;
}

/* tighten link spacing */
.footer-links{
  gap:8px 18px !important;
}
/* STRONGER SOCIAL ICONS */

.social-icon{
  width:32px;
  height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid #d0d0d0;
  border-radius:50%;
  color:#2a2a2a;           /* darker */
  background:#fafafa;      /* subtle lift */
  transition: all 0.2s ease;
}

.social-icon:hover{
  background:#F75C03;
  border-color:#F75C03;
  color:#ffffff;
}
/* FOOTER LOGO FIX */

.footer-logo{
  height: 28px;      /* lock height */
  width: auto;       /* prevent stretch */
  display: block;
}
.footer-brand{
  align-items: flex-start;
}
/* ABOUT IMAGE — PARTIAL ORANGE FRAME */

.about-image{
  position: relative;
  display: inline-block;
}

.about-image::before{
  content: "";
  position: absolute;

  top: -18px;
  right: -18px;

  width: 85%;
  height: 85%;

  border-top: 8px solid #F75C03;
  border-right: 8px solid #F75C03;

  pointer-events: none;
  z-index: 1;
}

.about-image img{
  position: relative;
  z-index: 2;
  display: block;
}
/* Writing page emphasis */

.page-writing .accent-strong{
  color:#F75C03;
  font-weight:700;
}
.page-writing .accent-section{
  color:#F75C03;
  font-weight:700;
  letter-spacing:0.02em;
}
/* CONTACT: match Coaching/Speaking/Consulting schema */

.page-contact,
.page-contact p,
.page-contact a,
.page-contact div,
.page-contact label,
.page-contact input,
.page-contact textarea{
  color:#4D4D4D !important;
}

.page-contact{
  background: linear-gradient(to right, #ffffff 65%, #f8f8f8 100%);
}

.page-contact .cnt{
  padding-top: 26px !important;
  padding-bottom: 18px !important;
}

.page-contact .cnt-grid{
  display:grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  gap: 40px !important;
  align-items: start !important;
}

.page-contact .cnt-title{
  margin: 0 0 12px 0 !important;
  line-height: 1.02 !important;
}

.page-contact .cnt-core p{
  margin: 0 0 12px 0 !important;
  line-height: 1.45 !important;
  max-width: 60ch !important;
}

/* Form card matches the right-side cards */
.page-contact .cnt-form{
  background:#f8f8f8 !important;
  border-left:3px solid #F75C03 !important;
  border-top:1px solid #e6e6e6 !important;
  padding: 16px 16px !important;
}

/* Inputs: minimal, structural */
.page-contact .cnt-form label{
  display:block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 8px 0;
  opacity: 0.9;
}

.page-contact .cnt-form input,
.page-contact .cnt-form textarea{
  width:100%;
  padding: 12px 12px;
  border:1px solid #e6e6e6;
  background:#ffffff;
  border-radius: 10px;
  outline: none;
}

.page-contact .cnt-form textarea{
  min-height: 140px;
  resize: vertical;
}

.page-contact .cnt-form .field{
  margin-bottom: 14px;
}

/* Keep your global button system intact */
.page-contact .cnt-actions{
  margin-top: 12px;
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 980px){
  .page-contact .cnt-grid{
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }
}
/* CONTACT — reduce top margin */

.page-contact .section{
  padding-top: 48px !important;   /* adjust down if needed */
  padding-bottom: 60px !important;
}

.page-contact .cnt{
  padding-top: 0 !important;
}

.page-contact .cnt-title{
  margin-top: 0 !important;
}
/* CONSULTING: match the page background language */
.page-consulting{
  background: linear-gradient(to right, #ffffff 65%, #f8f8f8 100%);
}

.page-consulting .cns-title{
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.7px;
  margin: 0;
}
@media (max-width: 991px){
  .page-consulting .cns-title{ font-size: 40px; }
}
/* MOBILE SAFETY NET: prevent hero overflow */
@media (max-width: 991px){
  .hero .grid-12{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .hero .col-5{
    justify-content: flex-start !important;
    padding-left: 0 !important;
  }

  .hero-image,
  .hero-image-layer img{
    max-width: 100% !important;
    height: auto !important;
  }
}

/* HARD LOCK: Home hero grid */
.home-hero-grid{
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 44px !important;
  align-items: center !important;
}

@media (max-width: 980px){
  .home-hero-grid{
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }
}
/* ===== MOBILE HOTFIX: Speaking + Coaching at 375x512 ===== */
/* Put this at the absolute end of overrides.css */

@media (max-width: 991px){

  /* --- SPEAKING --- */
  .page-speaking .spk{
    min-height: auto !important;
    display: block !important;
    align-items: initial !important;
    padding: 28px 0 24px !important;
  }

  .page-speaking .spk-grid{
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .page-speaking .spk-right{
    max-width: none !important;
    padding-top: 0 !important;
  }

  .page-speaking .actions{
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
  }

  /* --- COACHING --- */
  .page-coaching .cch{
    min-height: auto !important;
    display: block !important;
    align-items: initial !important;
    padding: 28px 0 24px !important;
  }

  .page-coaching .cch-grid{
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .page-coaching .quad{
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .page-coaching .cch-fit-actions,
  .page-coaching .actions{
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
  }
}
/* ===== MOBILE HOTFIX: Consulting at 375x512 ===== */
@media (max-width: 991px){

  .page-consulting .cns{
    min-height: auto !important;
    display: block !important;
    align-items: initial !important;
    padding: 28px 0 24px !important;
  }

  .page-consulting .cns-grid,
  .page-consulting .cns-grid-2row{
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    gap: 22px !important;
  }

  .page-consulting .cns-right{
    max-width: none !important;
  }

  .page-consulting .cns-actions{
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
  }

  .page-consulting .cns-case{
    margin-top: 14px !important;
  }
}
/* ===== MOBILE HOTFIX: Speaking at 375x512 ===== */
@media (max-width: 991px){

  .page-speaking .spk{
    min-height: auto !important;
    display: block !important;
    align-items: initial !important;
    padding: 28px 0 24px !important;
  }

  .page-speaking .spk-grid{
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .page-speaking .spk-right{
    max-width: none !important;
    padding-top: 0 !important;
  }

  .page-speaking .actions{
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
  }

  .page-speaking .spk-note{
    max-width: none !important;
  }
}
/* NAVIGATION MOBILE FIX */

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid #F75C03;
  padding: 6px 10px;
  font-size: 18px;
  cursor: pointer;
}

@media (max-width: 991px) {

  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #ffffff;
    border: 2px solid #F75C03;
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}
/* NAV OVERRIDE (MOBILE) */

.nav { position: relative; }

.nav .nav-links {
  display: flex; /* desktop default */
}

.nav .nav-toggle {
  all: unset;
  display: none;
  box-sizing: border-box;
  border: 2px solid #F75C03;
  padding: 8px 12px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: #4D4D4D;
}

@media (max-width: 991px) {

  .nav .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* hide menu by default on mobile */
  .nav .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 20px;
    right: 20px;
    background: #ffffff;
    border: 2px solid #F75C03;
    padding: 16px;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
  }

  /* show only when toggled */
  .nav .nav-links.open {
    display: flex;
  }

  .nav .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
/* CONTACT SUCCESS */

.page-success {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.success-section {
  width: 100%;
  padding: 80px 0;
}

.success-box {
  max-width: 640px;
  margin: 0 auto;
  border: 2px solid #F75C03;
  padding: 60px 40px;
  text-align: left;
}

.success-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

.success-copy {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.success-actions {
  margin-top: 20px;
}

@media (max-width: 991px) {
  .success-box {
    padding: 40px 25px;
  }

  .success-title {
    font-size: 30px;
  }
}
