/* SolidCo - supplemental styles for inner pages, loaded after solidco.css. */

/* Stop the browser's native scroll-anchoring from fighting GSAP ScrollSmoother.
   On long, image-heavy pages (like News) that conflict causes the page to
   jump upward while scrolling. Explicit image dimensions keep layout stable;
   this removes the remaining scroll-position tug-of-war. */
html, body { overflow-anchor: none; }

/* Header "Services" dropdown --------------------------------------- */
/* The theme already styles the desktop .submenu dropdown; we only
   widen it so the long service names fit, and allow wrapping. */
.oit-header-menu nav ul li .submenu { width: 330px; padding: 22px 0; }
.oit-header-menu nav ul li .submenu li a { white-space: normal; line-height: 1.35; }

/* Let the offcanvas menu scroll if it gets taller than the screen, and show
   a real scrollbar so it's obvious you can. This matters on desktop widths
   where the mobile menu is used and the About/Services dropdowns can push the
   menu past the viewport height. The theme hides the bar (scrollbar-width:none),
   so we override that here. */
.oitoffcanvas {
  max-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: auto;
  scrollbar-color: #000000 #e6e6e6;
}
.oitoffcanvas::-webkit-scrollbar { width: 16px; }
.oitoffcanvas::-webkit-scrollbar-track { background: #e6e6e6; }
.oitoffcanvas::-webkit-scrollbar-thumb {
  background: #000000;
  border: 3px solid #e6e6e6;
  border-radius: 10px;
}
.oitoffcanvas::-webkit-scrollbar-thumb:hover { background: #1a1a1a; }

/* Mobile "Services" toggle (a non-link <span> so theme handlers ignore it) */
.oit-menu-mobile ul li > .oit-mm-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  padding: 10px 0;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--oit-clr-black, #000);
  cursor: pointer;
  position: relative;
  user-select: none;
}
/* Divider under the "Services" header row, like the other items. */
.oit-menu-mobile ul li.solidco-mm-item > .oit-mm-trigger {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
/* Divider at the bottom of the whole Services block, so a line always
   sits above the next item ("News") whether Services is open or closed.
   (Closed: it overlaps the header line; open: it sits below the submenu.) */
.oit-menu-mobile ul li.solidco-mm-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.oit-mm-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border: 1px solid rgba(176, 162, 162, 0.35);
  border-radius: 4px;
  font-size: 15px;
  line-height: 1;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.oit-mm-arrow i { margin: 0; line-height: 1; }
.solidco-mm-item.mm-open > .oit-mm-trigger .oit-mm-arrow {
  transform: rotate(90deg);
  background: var(--oit-theme-1, #000);
  color: #fff;
  border-color: var(--oit-theme-1, #000);
}

/* Submenu visibility is driven purely by the .mm-open class (not by inline
   styles from a JS slide), so nothing can leave it half-open or snap it shut. */
.oit-menu-mobile .solidco-mm-item > .oit-submenu { display: none; }
.oit-menu-mobile .solidco-mm-item.mm-open > .oit-submenu { display: block; }

/* Offcanvas mobile sub-items */
.oit-menu-mobile .solidco-mobile-sub a { padding-left: 22px; opacity: 0.8; font-size: 0.95em; }

/* Cookie consent banner -------------------------------------------- */
.solidco-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #0D0D0D;
  color: #fff;
  padding: 18px 20px;
  transform: translateY(120%);
  transition: transform 0.4s ease;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.25);
}
.solidco-cookie.is-visible { transform: translateY(0); }
.solidco-cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.solidco-cookie-text {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.85);
  flex: 1 1 420px;
}
.solidco-cookie-text a { color: #fff; text-decoration: underline; font-weight: 600; }
.solidco-cookie-actions { display: flex; gap: 12px; flex: 0 0 auto; }
.solidco-cookie-btn {
  font-family: var(--oit-ff-heading);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 28px;
  border-radius: 40px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: background-color 0.25s ease, opacity 0.25s ease;
}
.solidco-cookie-btn.is-reject { background: transparent; color: #fff; }
.solidco-cookie-btn.is-reject:hover { background: rgba(255, 255, 255, 0.12); }
.solidco-cookie-btn.is-accept { background: #fff; color: #0D0D0D; border-color: #fff; }
.solidco-cookie-btn.is-accept:hover { opacity: 0.85; }
@media (max-width: 600px) {
  .solidco-cookie-inner { justify-content: center; text-align: center; }
  .solidco-cookie-actions { width: 100%; justify-content: center; }
}

/* Homepage service "Learn more" links ------------------------------ */
.oit-service-title a { color: inherit; }
.oit-service-more-wrap { margin-top: 8px; margin-bottom: 8px; }
.oit-service-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0D0D0D;
  font-family: var(--oit-ff-heading);
  font-weight: 600;
  font-size: 15px;
}
.oit-service-more svg { transition: transform 0.3s ease; }
.oit-service-more:hover svg { transform: translateX(4px); }

/* Cap every service-panel image to a fixed 555x256 box so any image
   (whatever its native size) fills it without distorting or blowing out
   the panel layout. object-fit: cover crops, it never stretches. */
.oit-service-item .oit-service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 992px) {
  .oit-service-item .oit-service-thumb {
    flex: 0 0 555px;
    width: 555px;
    max-width: 100%;
    height: 256px;
  }
}

/* Dark service panels: white text, whole-card clickable, subtle edge */
.oit-service-item {
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.5);
}
.oit-service-item .oit-service-title,
.oit-service-item .oit-service-title a,
.oit-service-item .oit-service-content p,
.oit-service-item .oit-service-more { color: #fff; }
.oit-service-item .oit-service-category span { color: #fff; }
/* Underline the heading whenever the panel (not just the link) is hovered */
.oit-service-item:hover .oit-service-title .border-line { background-size: 0 2px, 100% 2px; }

/* Clickable service cards (Services overview + homepage) ----------- */
.solidco-service-card {
  display: block;
  height: 100%;
  background: #fff;
  border: 1px solid var(--oit-border-1, #EAEBED);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.solidco-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-color: #0D0D0D;
}
.solidco-service-card .card-img { overflow: hidden; aspect-ratio: 16 / 10; }
.solidco-service-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.solidco-service-card:hover .card-img img { transform: scale(1.05); }
.solidco-service-card .card-body { padding: 30px 32px 34px; }
.solidco-service-card h3 { font-size: 26px; margin-bottom: 12px; color: #0D0D0D; }
.solidco-service-card > .card-body > p { color: var(--oit-text-body, #5d5d5d); margin-bottom: 20px; }
.solidco-card-list { list-style: none; margin: 0 0 24px; padding: 0; }
.solidco-card-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
  color: var(--oit-text-body, #5d5d5d);
  font-size: 15px;
}
.solidco-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--oit-ff-heading);
  font-weight: 600;
  color: #0D0D0D;
}
.solidco-card-btn svg { transition: transform 0.3s ease; }
.solidco-service-card:hover .solidco-card-btn svg { transform: translateX(5px); }

/* Homepage "more services" bubbles --------------------------------- */
.solidco-bubble {
  display: block;
  height: 100%;
  background: #fff;
  border: 1px solid var(--oit-border-1, #EAEBED);
  border-radius: 24px;
  padding: 36px 34px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.solidco-bubble:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-color: #0D0D0D;
}
.solidco-bubble h4 { font-size: 22px; color: #0D0D0D; margin-bottom: 12px; }
.solidco-bubble > p { color: var(--oit-text-body, #5d5d5d); margin-bottom: 20px; font-size: 15px; line-height: 24px; }
.solidco-bubble ul { list-style: none; margin: 0 0 22px; padding: 0; }
.solidco-bubble li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 8px;
  color: var(--oit-text-body, #5d5d5d);
  font-size: 14px;
  line-height: 22px;
}
.solidco-bubble li svg { flex: 0 0 auto; margin-top: 3px; }
.solidco-bubble .solidco-card-btn svg { transition: transform 0.3s ease; }
.solidco-bubble:hover .solidco-card-btn svg { transform: translateX(5px); }

/* Web Design - service blocks -------------------------------------- */
.oit-service-block .oit-service-thumb img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}
@media (min-width: 992px) {
  .oit-service-block .oit-service-content { padding-left: 40px; }
  .oit-service-block:nth-child(even) .col-lg-5 { order: 2; }
  .oit-service-block:nth-child(even) .oit-service-content { padding-left: 0; padding-right: 40px; }
}
.oit-service-block .oit-service-category { margin-bottom: 14px; }

/* Web Design - process steps --------------------------------------- */
.oit-process-item {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  height: 100%;
}
.oit-process-num {
  display: inline-block;
  font-family: var(--oit-ff-heading);
  font-size: 44px;
  line-height: 1;
  color: #fff;
  opacity: 0.35;
}
.oit-process-item h4 { font-size: 24px; }
.oit-process-item p { opacity: 0.75; }

/* Generic left padding helper for large screens -------------------- */
@media (min-width: 992px) { .pl-lg-50 { padding-left: 50px; } }

/* Products - package cards ----------------------------------------- */
.solidco-plan {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 45px 40px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--oit-border-1, #EAEBED);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.solidco-plan:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08); }
.solidco-plan.is-featured { background: #0D0D0D; border-color: #0D0D0D; }
.solidco-plan.is-featured, .solidco-plan.is-featured * { color: #fff; }
.solidco-plan-badge {
  display: inline-block;
  font-family: var(--oit-ff-heading);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  background: rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}
.solidco-plan.is-featured .solidco-plan-badge { background: rgba(255, 255, 255, 0.14); }
.solidco-plan-name { font-size: 28px; margin-bottom: 10px; }
.solidco-plan-price { font-family: var(--oit-ff-heading); font-size: 40px; line-height: 1; margin-bottom: 6px; }
.solidco-plan-price small { font-size: 15px; font-family: var(--oit-ff-body); opacity: 0.6; }
.solidco-plan-desc { margin-bottom: 26px; }
.solidco-plan-list { list-style: none; margin: 0 0 32px; padding: 0; }
.solidco-plan-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; line-height: 24px; }
.solidco-plan-list li svg { flex: 0 0 auto; margin-top: 2px; }
.solidco-plan .oit-btn-border { margin-top: auto; }

/* Contact - details cards ------------------------------------------ */
.solidco-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  height: 100%;
}
.solidco-contact-card .icon {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 24px;
  color: #fff;
}
.solidco-contact-card h4 { font-size: 20px; color: #fff; margin-bottom: 8px; }
.solidco-contact-card p, .solidco-contact-card a { color: rgba(255, 255, 255, 0.72); }
.solidco-contact-card p a:hover { color: #fff; }
/* Whole-card links (Chat / Call) */
a.solidco-contact-card { text-decoration: none; cursor: pointer; }
a.solidco-contact-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.09);
}
a.solidco-contact-card:hover .icon { background: rgba(255, 255, 255, 0.16); }
a.solidco-contact-card .border-line { color: #fff; }

/* Blog - post body ------------------------------------------------- */
.solidco-post-body { max-width: 860px; margin: 0 auto; }
/* In-content links are bold (but not the button component) */
.solidco-post-body a:not(.oit-btn-border) { font-weight: 700; }
.solidco-post-body p { margin-bottom: 24px; font-size: 16px; line-height: 30px; }
.solidco-post-body h2 { font-size: 32px; margin: 40px 0 18px; }
.solidco-post-body h3 { font-size: 24px; margin: 34px 0 14px; }
.solidco-post-body ul { margin: 0 0 24px; padding-left: 20px; }
.solidco-post-body li { margin-bottom: 10px; }
.solidco-post-body img { border-radius: 18px; margin: 12px 0 30px; width: 100%; }
.solidco-post-body blockquote {
  margin: 30px 0;
  padding: 6px 0 6px 28px;
  border-left: 3px solid #0D0D0D;
  font-family: var(--oit-ff-heading);
  font-size: 22px;
  line-height: 32px;
}
.solidco-post-body ol { margin: 0 0 24px; padding-left: 20px; }
.solidco-post-body ol li { margin-bottom: 10px; }
.solidco-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 30px;
}
.solidco-table th,
.solidco-table td {
  border: 1px solid #dcdcdc;
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  font-size: 15px;
  line-height: 24px;
}
.solidco-table thead th {
  font-family: var(--oit-ff-heading);
  background: #ececec;
  font-weight: 600;
}
.solidco-table td strong { font-family: var(--oit-ff-heading); }
/* Wide subprocessor table - scrolls horizontally on small screens */
.solidco-table-scroll {
  overflow-x: auto;
  margin: 10px 0 40px;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
}
.solidco-table-scroll .solidco-table { margin: 0; min-width: 1100px; border: 0; }
.solidco-table--compact th,
.solidco-table--compact td {
  padding: 10px 12px;
  font-size: 13px;
  line-height: 20px;
}
.solidco-table--compact thead th { white-space: nowrap; }
.solidco-lead { font-size: 18px; }

/* Long-form legal document (MSA) numbering + indentation */
.solidco-post-body .i1 { padding-left: 24px; }
.solidco-post-body .i2 { padding-left: 48px; }
.solidco-post-body .i3 { padding-left: 72px; }
.solidco-post-body .i1,
.solidco-post-body .i2,
.solidco-post-body .i3 { margin-bottom: 10px; }
.solidco-post-body h2.section-title {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 2px solid #0D0D0D;
}
.solidco-toc {
  columns: 2;
  column-gap: 40px;
  list-style: none;
  padding: 0;
  margin: 10px 0 20px;
}
.solidco-toc li { margin-bottom: 8px; break-inside: avoid; }
@media (max-width: 600px) { .solidco-toc { columns: 1; } }

/* About page - stats + service links */
.solidco-stat-num {
  font-size: 64px;
  font-family: var(--oit-ff-heading);
  line-height: 1;
  margin-bottom: 8px;
}
.solidco-stat p { opacity: 0.7; margin: 0; }
.solidco-about-service {
  padding: 6px 0;
  transition: padding-left 0.3s ease, opacity 0.3s ease;
}
.solidco-about-service:hover { padding-left: 8px; opacity: 0.75; }

/* Human sitemap page */
.solidco-sitemap-title {
  font-size: 22px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #0D0D0D;
}
.solidco-sitemap-list { list-style: none; margin: 0; padding: 0; }
.solidco-sitemap-list li { margin-bottom: 12px; }
.solidco-sitemap-list a {
  color: var(--oit-text-body, #5d5d5d);
  font-family: var(--oit-ff-funnel);
  font-size: 16px;
  position: relative;
  padding-left: 18px;
}
.solidco-sitemap-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: #0D0D0D;
  transform: rotate(45deg);
}
.solidco-sitemap-list a:hover { color: #0D0D0D; }
.solidco-sitemap-xml { color: var(--oit-text-body, #5d5d5d); }
.solidco-sitemap-xml a { font-weight: 700; }
@media (max-width: 575px) {
  .solidco-table-scroll::after {
    content: "→ scroll to see more";
    display: block;
    padding: 8px 12px;
    font-size: 12px;
    color: #888;
    border-top: 1px solid #eee;
  }
}

/* Breadcrumb badge links ------------------------------------------- */
.blog-details-breadcrumb-badges a.badge {
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.blog-details-breadcrumb-badges a.badge:hover { opacity: 0.6; }

/* Compact footer --------------------------------------------------- */
.solidco-footer { }
.solidco-footer-logo img { max-width: 150px; height: auto; }
.solidco-footer-tagline {
  color: rgba(255, 255, 255, 0.55);
  max-width: 360px;
  line-height: 26px;
}
.solidco-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 30px;
  max-width: 380px;
}
.solidco-footer-menu a {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--oit-ff-funnel);
  font-size: 16px;
}
.solidco-footer-menu a:hover { color: #fff; }
.solidco-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.solidco-footer-list li { margin-bottom: 12px; }
.solidco-footer-list a {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--oit-ff-funnel);
  font-size: 15px;
  line-height: 22px;
}
.solidco-footer-list a:hover { color: #fff; }
.solidco-footer-title {
  color: #fff;
  font-size: 24px;
  font-family: var(--oit-ff-heading);
}
.solidco-footer-contact { display: flex; flex-direction: column; gap: 18px; }
.solidco-footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--oit-ff-funnel);
  font-size: 16px;
  line-height: 24px;
}
.solidco-footer-contact a:hover { color: #fff; }
.solidco-footer-contact i {
  flex: 0 0 auto;
  width: 20px;
  text-align: center;
  margin-top: 3px;
  opacity: 0.85;
}
.solidco-footer-bottom {
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  gap: 12px;
}
.solidco-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.solidco-footer-bottom-links a { color: rgba(255, 255, 255, 0.7); }
.solidco-footer-bottom-links a:hover { color: #fff; }
.solidco-footer-bottom-links span { opacity: 0.4; margin: 0 4px; }

/* Down-arrow next to the header "Services" item to signal the dropdown. */
.oit-header-menu .has-dropdown > a .oit-dd-arrow {
  display: inline-block;
  margin-left: 5px;
  font-size: 0.8em;
  transition: transform 0.3s ease;
}
.oit-header-menu .has-dropdown:hover > a .oit-dd-arrow { transform: rotate(180deg); }

/* The full top menu only appears at xxl (>=1400px). Tighten the item spacing
   a touch so all seven items sit comfortably on one line at that width and
   never wrap - below 1400px the header falls back to the mobile hamburger. */
.oit-header-menu nav > ul > li { margin: 0 16px; }

/* Home page: white top-level menu over the dark hero. Only the top-level
   links go white - the Services dropdown panel keeps its themed styling. */
.solidco-home-menu .oit-menu-content > ul > li > a { color: #ffffff; }
.solidco-home-menu .oit-menu-content > ul > li > a:hover,
.solidco-home-menu .oit-menu-content > ul > li.active > a { color: rgba(255, 255, 255, 0.72); }

/* ---- Service page "bigger picture" long-form story section ---- */
.solidco-story {
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
/* A soft accent glow so the black band doesn't read as a flat slab. */
.solidco-story::before {
  content: "";
  position: absolute;
  top: -25%;
  right: -12%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}
.solidco-story .container { position: relative; z-index: 1; }
.solidco-story-aside { position: sticky; top: 120px; }
@media (max-width: 1199px) {
  .solidco-story { padding: 90px 0; }
  .solidco-story-aside { position: static; margin-bottom: 45px; }
}
.solidco-story-title {
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
}
.solidco-story-pull {
  margin: 40px 0 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid #fff;
  font-size: clamp(19px, 1.5vw, 23px);
  line-height: 1.5;
  font-style: italic;
  color: #fff;
}
.solidco-story-lead {
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.45;
  color: #fff;
  margin: 0 0 34px;
  font-weight: 500;
}
.solidco-story-p {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 22px;
}
.solidco-story-p:last-child { margin-bottom: 0; }
/* Drop cap on the first flowing paragraph for an editorial feel. */
.solidco-story-p:first-of-type::first-letter {
  float: left;
  font-size: 4.1em;
  line-height: 0.82;
  font-weight: 700;
  color: #ffffff;
  padding: 6px 14px 0 0;
}

/* ---- Frequently Asked Questions page ---- */
.solidco-faq-group {
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid #ececec;
}
.solidco-faq-group:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
/* Group heading stays in view while you scroll its questions (desktop). */
.solidco-faq-groophead { position: sticky; top: 120px; }
@media (max-width: 1199px) {
  .solidco-faq-groophead { position: static; margin-bottom: 35px; }
  .solidco-faq-group { padding-bottom: 45px; margin-bottom: 45px; }
}
/* The button + chat link that sits at the bottom of every group. */
.solidco-faq-cta {
  gap: 26px;
  margin-top: 40px;
}
.solidco-faq-chat {
  font-weight: 600;
  color: #0d0d0d;
  display: inline-flex;
  align-items: center;
}
.solidco-faq-chat:hover { color: #0d0d0d; }

/* Tame the oversized group heading so it stops overflowing into the
   questions - roughly half the theme's giant display size. */
.solidco-faqs .solidco-faq-groophead h2 {
  font-size: clamp(26px, 3vw, 46px);
  line-height: 1.05;
  overflow-wrap: break-word;
  word-break: break-word;
}
/* Line the CTA (button + chat link) up with where the question TEXT starts.
   The invisible white FAQ cards inset their content, so we fix that inset to
   a constant and give the CTA the same left padding, at every breakpoint. */
.solidco-faqs .oit-faq-accordion-wrap .accordion-item { padding-left: 34px; }
.solidco-faqs .oit-faq-accordion-wrap .accordion-button { padding-left: 0; }
.solidco-faqs .solidco-faq-cta { padding-left: 34px; }

/* ---- People & Culture page ---- */
.solidco-pc-hero-img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
/* Value / perk cards */
.solidco-pc-card {
  height: 100%;
  padding: 34px 30px;
  border-radius: 16px;
  border: 1px solid #ececec;
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.solidco-pc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(3, 11, 30, 0.08);
}
.solidco-pc-icon {
  font-size: 34px;
  line-height: 1;
  color: #0d0d0d;
  margin-bottom: 20px;
}
.solidco-pc-card-title { margin: 0 0 12px; }
.solidco-pc-card p { margin: 0 0 16px; color: #5b5b5b; line-height: 1.75; }
.solidco-pc-card p:last-child { margin-bottom: 0; }
/* Dark values section: translucent cards, white text and white icons */
.solidco-pc-dark .solidco-pc-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.14);
}
.solidco-pc-dark .solidco-pc-card:hover { border-color: rgba(255, 255, 255, 0.5); }
.solidco-pc-dark .solidco-pc-icon { color: #ffffff; }
.solidco-pc-dark .solidco-pc-card-title { color: #ffffff; }
.solidco-pc-dark .solidco-pc-card p { color: rgba(255, 255, 255, 0.72); }
/* Join-us band */
.solidco-pc-join { padding: 120px 0; }
.solidco-pc-join-title { font-size: clamp(28px, 3.4vw, 48px); line-height: 1.1; }
.solidco-pc-join-lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}
@media (max-width: 991px) {
  .solidco-pc-join { padding: 80px 0; }
}

/* ---- News grid (max two columns, creative cards) ---- */
.solidco-news-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(3, 11, 30, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}
/* Whole card is one click target. */
.solidco-news-link {
  position: absolute;
  inset: 0;
  z-index: 3;
}
.solidco-news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(3, 11, 30, 0.12);
}
.solidco-news-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.solidco-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.solidco-news-card:hover .solidco-news-thumb img { transform: scale(1.06); }
.solidco-news-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #0d0d0d;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 40px;
}
.solidco-news-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 30px 32px 34px;
}
.solidco-news-title {
  font-size: clamp(21px, 1.8vw, 26px);
  line-height: 1.28;
  margin: 0 0 14px;
  color: #0d0d0d;
  transition: color 0.25s ease;
}
.solidco-news-card:hover .solidco-news-title {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.solidco-news-excerpt {
  color: #5b5b5b;
  line-height: 1.7;
  margin: 0 0 22px;
}
.solidco-news-more {
  margin-top: auto;
  align-self: flex-start;
  font-weight: 600;
  color: #0d0d0d;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.solidco-news-more i { transition: transform 0.3s ease; }
.solidco-news-card:hover .solidco-news-more i { transform: translateX(5px); }

/* Pagination */
.solidco-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 70px;
}
.solidco-pager-num,
.solidco-pager-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  padding: 0 8px;
  border-radius: 50%;
  border: 1px solid #dcdcdc;
  background: #fff;
  color: #0d0d0d;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.solidco-pager-num:hover,
.solidco-pager-arrow:not(.is-disabled):hover { background: #0d0d0d; color: #fff; border-color: #0d0d0d; }
.solidco-pager-num.active { background: #0d0d0d; color: #fff; border-color: #0d0d0d; }
.solidco-pager-arrow.is-disabled { opacity: 0.35; cursor: default; }

/* End-of-post CTA block */
.solidco-post-cta { text-align: center; }
.solidco-post-cta-line {
  font-size: 18px;
  color: #3a3a3a;
  margin-bottom: 26px;
}
.solidco-post-cta-btns { gap: 16px; }
