/* Strategies page — full-width sections, standard .container inner wrap */
.strategies-page {
  font-family: Arial, Helvetica, sans-serif;
  color: #4a5d6e;
  background: #fff;
  width: 100%;
  overflow-x: hidden;
}

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

/* Inner wrap — uses site .container for max-width; no extra max-width here */
.strategies-wrap {
  width: 100%;
}

/* Hero */
.strategies-hero {
  position: relative;
  z-index: 10;
  width: 100%;
}

.strategies-hero .main {
  padding-top: 96px;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .strategies-hero .main {
    padding-top: 112px;
    padding-bottom: 48px;
  }
}

.strategies-hero .main__inner.container {
  width: 100%;
}

.strategies-hero .main__header {
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .strategies-hero .main__header {
    text-align: left;
  }
}

.strategies-page .strategies-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #48a6eb;
  font-weight: 600;
  margin: 0 0 10px;
}

@media (min-width: 768px) {
  .strategies-page .strategies-kicker {
    font-size: 0.8125rem;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
  }
}

.strategies-page .main__title {
  font-size: clamp(1.35rem, 4.5vw, 3rem);
  line-height: 1.25;
  margin: 0 0 16px;
  word-wrap: break-word;
}

@media (min-width: 768px) {
  .strategies-page .main__title {
    margin-bottom: 24px;
  }
}

.strategies-page .strategies-lead {
  color: #fff;
  font-size: clamp(0.9375rem, 2.5vw, 1.125rem);
  line-height: 1.6;
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto 20px;
  word-wrap: break-word;
}

@media (min-width: 768px) {
  .strategies-page .strategies-lead {
    margin: 0 0 32px;
  }
}

/* Sections — always full viewport width */
.strategies-section {
  width: 100%;
  padding: 32px 0;
}

@media (min-width: 768px) {
  .strategies-section {
    padding: 56px 0;
  }
}

@media (min-width: 1024px) {
  .strategies-section {
    padding: 64px 0;
  }
}

.strategies-section--soft {
  background: #f4f8fc;
}

.strategies-section--elevated {
  background: #f7f9fb;
}

.strategies-section--cards {
  padding-top: 28px;
}

.strategies-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
}

@media (min-width: 768px) {
  .strategies-section-header {
    margin-bottom: 40px;
  }
}

.strategies-section-title {
  font-size: clamp(1.375rem, 4vw, 2.25rem);
  line-height: 1.25;
  font-weight: 600;
  color: #1a2b3c;
  margin: 0 0 12px;
}

.strategies-section-subtitle {
  font-size: clamp(0.9375rem, 2.2vw, 1rem);
  line-height: 1.6;
  color: #4a5d6e;
  margin: 0;
}

/* Auto-fit grids — columns adjust automatically to screen width */
.strategies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 20px;
  width: 100%;
}

@media (min-width: 768px) {
  .strategies-grid {
    gap: 24px;
  }
}

.strategy-card {
  background: #fff;
  border: 1px solid #d8e8f5;
  border-radius: 8px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  box-shadow: 0 2px 8px rgba(26, 43, 60, 0.06);
}

@media (min-width: 768px) {
  .strategy-card {
    padding: 24px 22px;
  }
}

.strategy-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #48a6eb;
  font-weight: 600;
  margin: 0;
}

.strategy-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a2b3c;
  margin: 0;
  line-height: 1.35;
}

.strategy-body {
  font-size: 0.9375rem;
  color: #4a5d6e;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.strategy-features {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
}

.strategy-features li {
  font-size: 0.875rem;
  color: #4a5d6e;
  padding-left: 14px;
  position: relative;
  margin-bottom: 4px;
}

.strategy-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #48a6eb;
}

.strategy-btn {
  margin-top: auto;
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid #48a6eb;
  border-radius: 6px;
  color: #48a6eb;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  text-align: center;
}

.strategy-btn:hover {
  background: #48a6eb;
  color: #fff;
}

/* Benefits — stacked on mobile/tablet, side-by-side on desktop */
.benefits-showcase {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  border: 1px solid #d8e8f5;
  border-radius: 8px;
  padding: 20px;
  width: 100%;
  box-shadow: 0 2px 8px rgba(26, 43, 60, 0.05);
}

@media (min-width: 992px) {
  .benefit-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    padding: 28px;
  }

  .benefit-item-reverse .benefit-content {
    order: 1;
  }

  .benefit-item-reverse .benefit-image {
    order: 2;
  }
}

.benefit-image {
  width: 100%;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .benefit-image {
    height: 260px;
  }
}

@media (min-width: 992px) {
  .benefit-image {
    height: 280px;
  }
}

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

.benefit-content {
  min-width: 0;
}

.benefit-title {
  font-size: clamp(1.125rem, 3vw, 1.375rem);
  font-weight: 600;
  color: #1a2b3c;
  margin: 0 0 10px;
  line-height: 1.3;
}

.benefit-text {
  font-size: 0.9375rem;
  color: #4a5d6e;
  line-height: 1.6;
  margin: 0;
}

/* Framework */
.framework-hero {
  margin-bottom: 28px;
  width: 100%;
}

.framework-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 7;
  min-height: 220px;
  box-shadow: 0 4px 20px rgba(26, 43, 60, 0.15);
}

@media (min-width: 768px) {
  .framework-image-wrapper {
    min-height: 320px;
    aspect-ratio: 21 / 9;
  }
}

.framework-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.framework-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.95) 0%, rgba(26, 74, 110, 0.7) 60%, transparent 100%);
  color: #fff;
}

@media (min-width: 768px) {
  .framework-overlay-content {
    padding: 40px;
  }
}

.framework-kicker {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #48a6eb;
  font-weight: 600;
  margin: 0 0 8px;
}

.framework-title {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.25;
}

.framework-subtitle {
  font-size: clamp(0.875rem, 2.2vw, 1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  max-width: 680px;
}

.framework-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 16px;
  width: 100%;
}

.framework-feature-item {
  text-align: center;
  padding: 20px 16px;
  background: #fff;
  border: 1px solid #d8e8f5;
  border-radius: 8px;
  min-width: 0;
}

.framework-feature-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px;
}

.framework-feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a2b3c;
  margin: 0 0 6px;
}

.framework-feature-text {
  font-size: 0.875rem;
  color: #4a5d6e;
  line-height: 1.45;
  margin: 0;
}

/* Comparison cards */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 24px;
  width: 100%;
}

.comparison-card {
  background: #fff;
  border: 1px solid #d8e8f5;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  box-shadow: 0 2px 8px rgba(26, 43, 60, 0.06);
}

.comparison-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.comparison-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.comparison-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a2b3c;
  margin: 0 0 10px;
}

.comparison-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.comparison-tag {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef6fc;
  color: #48a6eb;
  font-weight: 600;
  text-transform: uppercase;
}

.comparison-text {
  font-size: 0.9375rem;
  color: #4a5d6e;
  line-height: 1.55;
  margin: 0;
}

/* Disclaimer */
.strategies-disclaimer {
  width: 100%;
  padding: 24px 0 48px;
  border-top: 1px solid #d8e8f5;
  background: #fff;
}

.disclaimer-text {
  font-size: 0.875rem;
  color: #4a5d6e;
  line-height: 1.6;
  margin: 0;
  max-width: 780px;
}

/* ================================
   Strategy detail page (strategy-equity.php)
   ================================ */

/* The shared header has white nav text on a transparent background, designed
   to sit over the dark hero. The detail page hero is light, so give the fixed
   header a solid dark background here to keep the nav links visible. */
.strategy-detail-body .header {
  background: #030b33;
}

.strategy-detail-body .header--scrolled {
  background-color: #030b33;
}

.strategy-detail-page {
  font-family: Arial, Helvetica, sans-serif;
  color: #4a5d6e;
  background: #fff;
  width: 100%;
  overflow-x: hidden;
}

.strategy-detail-page *,
.strategy-detail-page *::before,
.strategy-detail-page *::after {
  box-sizing: border-box;
}

.strategy-hero {
  padding-top: 104px;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .strategy-hero {
    padding-top: 128px;
    padding-bottom: 48px;
  }
}

.breadcrumb {
  font-size: 0.8125rem;
  color: #7a8a99;
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.breadcrumb a {
  color: #48a6eb;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #7a8a99;
}

.strategy-hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .strategy-hero-layout {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
    gap: 32px;
  }
}

.strategy-detail-page .page-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #48a6eb;
  font-weight: 600;
  margin: 0 0 10px;
}

.strategy-detail-page .page-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.2;
  font-weight: 600;
  color: #1a2b3c;
  margin: 0 0 12px;
}

.strategy-detail-page .page-lead {
  font-size: clamp(0.9375rem, 2.2vw, 1.0625rem);
  line-height: 1.6;
  color: #4a5d6e;
  margin: 0;
  max-width: 680px;
}

.strategy-hero-side {
  background: #f4f8fc;
  border: 1px solid #d8e8f5;
  border-radius: 8px;
  padding: 22px 20px;
  box-shadow: 0 2px 8px rgba(26, 43, 60, 0.06);
}

.strategy-side-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #48a6eb;
  font-weight: 600;
  margin: 0 0 14px;
}

.strategy-side-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.strategy-side-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.875rem;
}

.strategy-side-label {
  color: #7a8a99;
}

.strategy-side-value {
  color: #1a2b3c;
  font-weight: 600;
}

.strategy-side-footnote {
  font-size: 0.8125rem;
  color: #7a8a99;
  line-height: 1.5;
  margin: 0;
}

.strategy-section {
  border-top: 1px solid #d8e8f5;
  padding: 36px 0;
}

@media (min-width: 768px) {
  .strategy-section {
    padding: 56px 0;
  }
}

.strategy-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .strategy-content-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
  }
}

.strategy-block {
  font-size: 0.9375rem;
  color: #1a2b3c;
  min-width: 0;
}

.strategy-block p {
  margin: 0 0 12px;
  color: #4a5d6e;
  line-height: 1.6;
}

.strategy-block p:last-child {
  margin-bottom: 0;
}

.strategy-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a2b3c;
  margin: 0 0 12px;
}

.strategy-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 12px;
}

.strategy-list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.9375rem;
  color: #4a5d6e;
  line-height: 1.55;
}

.strategy-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #48a6eb;
}

.strategy-list li strong {
  color: #1a2b3c;
}

.strategy-layout-2 {
  padding-bottom: 48px;
}

@media (min-width: 768px) {
  .strategy-layout-2 {
    padding-bottom: 64px;
  }
}

.strategy-table-card {
  background: #fff;
  border: 1px solid #d8e8f5;
  border-radius: 8px;
  padding: 24px 22px;
  box-shadow: 0 2px 8px rgba(26, 43, 60, 0.06);
}

.strategy-note {
  font-size: 0.875rem;
  color: #4a5d6e;
  margin: 0 0 14px;
  line-height: 1.55;
}

.strategy-table-wrapper {
  overflow-x: auto;
}

.strategy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.strategy-table th,
.strategy-table td {
  padding: 10px 8px;
  border-bottom: 1px solid #e3eef7;
  text-align: left;
  vertical-align: top;
}

.strategy-table th {
  width: 42%;
  color: #7a8a99;
  font-weight: 600;
}

.strategy-table td {
  color: #1a2b3c;
}

.strategy-table tr:last-child th,
.strategy-table tr:last-child td {
  border-bottom: none;
}

.strategy-disclosure {
  font-size: 0.8125rem;
  color: #7a8a99;
  margin-top: 12px;
  line-height: 1.55;
}

.strategy-back-link {
  border-top: 1px solid #d8e8f5;
  padding: 28px 0 56px;
}

.strategy-back-link .link-inline {
  color: #48a6eb;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9375rem;
}

.strategy-back-link .link-inline:hover {
  text-decoration: underline;
}
