    :root {
      --midnight: #1a1f2e;
      --terracotta: #c45d4a;
      --terracotta-light: #d4715f;
      --ivory: #fdfcfa;
      --pearl: #f8f7f4;
      --sand: #f0eeea;
      --mist: #e8e6e1;
      --stone: #a8a49d;
      --graphite: #64615b;
      --green: #16a34a;
      --amber: #d97706;
      --red: #dc2626;
    }
    
    
    .resources-page {
      font-family: 'Inter', -apple-system, sans-serif;
      background: var(--ivory);
      color: var(--midnight);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      position: relative;
      overflow-x: hidden;
      max-width: 100vw;
    }
    
    /* Grid structure lines */
    body:has(.resources-page)::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      pointer-events: none;
      z-index: 0;
      background-image: 
        linear-gradient(to right, var(--mist) 1px, transparent 1px);
      background-size: calc((100% - 2rem) / 4) 100%;
      background-position: 1rem 0;
      opacity: 0.4;
    }
    
    @media (min-width: 768px) {
      body:has(.resources-page)::before {
        background-size: calc((100% - 4rem) / 6) 100%;
        background-position: 2rem 0;
        opacity: 0.35;
      }
    }
    
    @media (min-width: 1200px) {
      body:has(.resources-page)::before {
        background-size: calc(1100px / 12) 100%;
        background-position: calc(50% - 550px) 0;
        opacity: 0.3;
      }
    }
    
    /* body > * scoping handled by .resources-page */
    .resources-page > * {
      position: relative;
      z-index: 1;
    }
    
    .resources-page .serif {
      font-family: 'Instrument Serif', Georgia, serif;
    }
    
    .resources-page .serif em {
      font-style: italic;
    }
    
    
    /* Hero */
    .resources-page .hero {
      padding: 6rem 1rem 2rem;
      text-align: center;
      background: var(--pearl);
      position: relative;
    }
    
    .resources-page .hero::after {
      display: none;
    }
    
    @media (min-width: 480px) {
      .resources-page .hero {
        padding: 7rem 1.5rem 2.5rem;
      }
    }
    
    @media (min-width: 768px) {
      .resources-page .hero {
        padding: 8rem 2rem 3.5rem;
      }
    }
    
    .resources-page .hero-inner {
      max-width: 700px;
      margin: 0 auto;
    }
    
    .resources-page .hero-eyebrow {
      font-size: 0.5625rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--terracotta);
      margin-bottom: 0.625rem;
    }
    
    @media (min-width: 768px) {
      .resources-page .hero-eyebrow {
        font-size: 0.6875rem;
        margin-bottom: 1rem;
      }
    }
    
    .resources-page .hero h1 {
      font-size: clamp(1.875rem, 6vw, 3.5rem);
      font-weight: 400;
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-bottom: 0.625rem;
    }
    
    @media (min-width: 768px) {
      .resources-page .hero h1 {
        margin-bottom: 1rem;
      }
    }
    
    .resources-page .hero-sub {
      font-size: 0.9375rem;
      color: var(--graphite);
      max-width: 500px;
      margin: 0 auto;
    }
    
    @media (min-width: 768px) {
      .resources-page .hero-sub {
        font-size: 1.125rem;
      }
    }
    
    /* Section Styles */
    .resources-page section {
      padding: 2.5rem 1rem;
      position: relative;
    }
    
    .resources-page section::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 1rem;
      right: 1rem;
      height: 1px;
      background: var(--mist);
    }
    
    .resources-page section:last-of-type::after {
      display: none;
    }
    
    @media (min-width: 480px) {
      .resources-page section {
        padding: 3rem 1.5rem;
      }
      
      .resources-page section::after {
        left: 1.5rem;
        right: 1.5rem;
      }
    }
    
    @media (min-width: 768px) {
      .resources-page section {
        padding: 4.5rem 2rem;
      }
      
      .resources-page section::after {
        left: 2rem;
        right: 2rem;
      }
    }
    
    .resources-page .section-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    
    .resources-page .section-header {
      text-align: center;
      margin-bottom: 1.5rem;
    }
    
    @media (min-width: 768px) {
      .resources-page .section-header {
        margin-bottom: 2.5rem;
      }
    }
    
    .resources-page .section-label {
      font-size: 0.5rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--terracotta);
      margin-bottom: 0.375rem;
    }
    
    @media (min-width: 768px) {
      .resources-page .section-label {
        font-size: 0.625rem;
        margin-bottom: 0.75rem;
      }
    }
    
    .resources-page .section-title {
      font-size: clamp(1.375rem, 4vw, 2.25rem);
      font-weight: 400;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }
    
    .resources-page .section-desc {
      color: var(--graphite);
      margin-top: 0.375rem;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
      font-size: 0.875rem;
    }
    
    @media (min-width: 768px) {
      .resources-page .section-desc {
        margin-top: 0.75rem;
        font-size: 1rem;
      }
    }
    
    /* Calculator Section */
    .resources-page .calculator-section {
      background: var(--pearl);
    }
    
    .resources-page .calculator {
      background: white;
      border-radius: 18px;
      box-shadow: 
        0 0 0 1px rgba(0,0,0,0.03),
        0 2px 4px rgba(0,0,0,0.02),
        0 12px 40px rgba(0,0,0,0.06);
      overflow: hidden;
      max-width: 420px;
      margin: 0 auto;
    }
    
    @media (min-width: 900px) {
      .resources-page .calculator {
        border-radius: 20px;
        max-width: 760px;
      }
    }
    
    .resources-page .calc-body {
      padding: 1.5rem 1.25rem 1.75rem;
    }
    
    @media (min-width: 900px) {
      .resources-page .calc-body {
        padding: 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 1.5rem 2rem;
        grid-template-areas:
          "inputs savings"
          "inputs results"
          "cta cta";
      }
    }
    
    .resources-page .calc-inputs-column {
      display: contents;
    }
    
    @media (min-width: 900px) {
      .resources-page .calc-inputs-column {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        grid-area: inputs;
      }
    }
    
    .resources-page .calc-results-column {
      display: contents;
    }
    
    @media (min-width: 900px) {
      .resources-page .calc-results-column {
        display: flex;
        flex-direction: column;
        grid-row: 1 / 3;
        grid-column: 2;
      }
    }
    
    .resources-page .calc-cta-row {
      display: contents;
    }
    
    @media (min-width: 900px) {
      .resources-page .calc-cta-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        grid-area: cta;
      }
    }
    
    .resources-page .calc-inputs-row {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 0.875rem;
      margin-bottom: 1.25rem;
    }
    
    @media (min-width: 900px) {
      .resources-page .calc-inputs-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 0;
      }
    }
    
    .resources-page .calc-field {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .resources-page .calc-field label {
      font-size: 0.6875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--graphite);
    }
    
    @media (min-width: 768px) {
      .resources-page .calc-field label {
        font-size: 0.75rem;
      }
    }
    
    .resources-page .calc-input-wrap {
      display: flex;
      align-items: center;
      border: 1px solid var(--mist);
      border-radius: 12px;
      background: var(--ivory);
      transition: all 0.2s ease;
    }
    
    .resources-page .calc-input-wrap:focus-within {
      border-color: var(--midnight);
      background: white;
      box-shadow: 0 0 0 3px rgba(26, 31, 46, 0.06);
    }
    
    .calc-input-prefix,
    .resources-page .calc-input-suffix {
      color: var(--stone);
      font-size: 1rem;
      font-weight: 500;
      flex-shrink: 0;
    }
    
    .resources-page .calc-input-prefix {
      padding-left: 1rem;
    }
    
    .resources-page .calc-input-suffix {
      padding-right: 1rem;
    }
    
    .calc-field input,
    .resources-page .calc-new-rate input {
      flex: 1;
      padding: 0.875rem 0.625rem;
      border: none;
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--midnight);
      background: transparent;
      min-width: 0;
      width: 100%;
    }
    
    @media (min-width: 768px) {
      .calc-field input,
      .resources-page .calc-new-rate input {
        padding: 0.875rem 0.625rem;
        font-size: 1.125rem;
      }
    }
    
    .calc-field input:focus,
    .resources-page .calc-new-rate input:focus {
      outline: none;
    }
    
    .resources-page .calc-field input::placeholder {
      color: var(--stone);
      font-weight: 400;
    }
    
    /* Annual Savings Box */
    .resources-page .calc-savings-box {
      background: linear-gradient(135deg, #c45d4a 0%, #b54d3a 100%);
      border-radius: 14px;
      padding: 1.25rem 1.25rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.25rem;
      box-shadow: 
        0 4px 12px rgba(196, 93, 74, 0.2),
        0 8px 24px rgba(196, 93, 74, 0.15);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .resources-page .calc-savings-box:hover {
      transform: translateY(-1px);
      box-shadow: 
        0 6px 16px rgba(196, 93, 74, 0.25),
        0 12px 32px rgba(196, 93, 74, 0.18);
    }
    
    @media (min-width: 900px) {
      .resources-page .calc-savings-box {
        padding: 1.25rem 1.5rem;
        border-radius: 14px;
        margin-bottom: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.375rem;
      }
    }
    
    .resources-page .calc-savings-label {
      font-size: 0.8125rem;
      font-weight: 600;
      color: rgba(255,255,255,0.92);
      letter-spacing: 0.01em;
    }
    
    @media (min-width: 900px) {
      .resources-page .calc-savings-label {
        font-size: 0.6875rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
      }
    }
    
    .resources-page .calc-savings-value {
      font-size: 1.875rem;
      font-weight: 700;
      color: white;
      letter-spacing: -0.02em;
      font-variant-numeric: tabular-nums;
    }
    
    @media (min-width: 900px) {
      .resources-page .calc-savings-value {
        font-size: 2rem;
      }
    }
    
    /* New Rate Input */
    .resources-page .calc-new-rate {
      margin-bottom: 1.25rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    @media (min-width: 900px) {
      .resources-page .calc-new-rate {
        margin-bottom: 0;
      }
    }
    
    .resources-page .calc-new-rate label {
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--graphite);
      white-space: nowrap;
    }
    
    @media (min-width: 768px) {
      .resources-page .calc-new-rate label {
        font-size: 0.8125rem;
      }
    }
    
    .resources-page .calc-new-rate .calc-input-inline {
      display: inline-flex;
      align-items: center;
      border: 1px solid var(--mist);
      border-radius: 8px;
      background: var(--ivory);
      transition: all 0.2s ease;
      width: auto;
    }
    
    .resources-page .calc-new-rate .calc-input-inline:focus-within {
      border-color: var(--midnight);
      background: white;
      box-shadow: 0 0 0 2px rgba(26, 31, 46, 0.06);
    }
    
    .resources-page .calc-new-rate .calc-input-inline input {
      width: 40px;
      padding: 0.4rem 0.25rem 0.4rem 0.5rem;
      border: none;
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--midnight);
      background: transparent;
      text-align: right;
    }
    
    @media (min-width: 768px) {
      .resources-page .calc-new-rate .calc-input-inline input {
        width: 44px;
        padding: 0.5rem 0.25rem 0.5rem 0.625rem;
        font-size: 1rem;
      }
    }
    
    .resources-page .calc-new-rate .calc-input-inline input:focus {
      outline: none;
    }
    
    .resources-page .calc-new-rate .calc-input-inline .calc-input-suffix {
      padding-right: 0.5rem;
      font-size: 0.875rem;
    }
    
    /* Results Panel */
    .resources-page .calc-results-panel {
      background: linear-gradient(180deg, var(--pearl) 0%, rgba(248, 247, 244, 0.5) 100%);
      border: 1px solid var(--mist);
      border-radius: 14px;
      padding: 1rem;
      margin-bottom: 1rem;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
    
    @media (min-width: 900px) {
      .resources-page .calc-results-panel {
        padding: 1rem;
        border-radius: 14px;
        margin-bottom: 0;
        flex: 1;
      }
    }
    
    /* Stats Grid */
    .resources-page .calc-stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.625rem;
      margin-bottom: 0.875rem;
    }
    
    @media (min-width: 768px) {
      .resources-page .calc-stats-grid {
        gap: 0.75rem;
        margin-bottom: 1rem;
      }
    }
    
    .resources-page .calc-stat-box {
      background: white;
      border: 1px solid rgba(232, 230, 225, 0.8);
      border-radius: 10px;
      padding: 0.75rem 0.5rem;
      text-align: center;
      transition: all 0.2s ease;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      min-height: 70px;
    }
    
    .resources-page .calc-stat-box.highlight-box {
      background: linear-gradient(180deg, white 0%, rgba(196, 93, 74, 0.03) 100%);
      border-color: rgba(196, 93, 74, 0.15);
    }
    
    @media (min-width: 768px) {
      .resources-page .calc-stat-box {
        padding: 0.875rem 0.625rem;
        border-radius: 12px;
        min-height: 75px;
      }
    }
    
    .resources-page .calc-stat-label {
      font-size: 0.5rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--stone);
      margin-bottom: 0.375rem;
      line-height: 1.3;
      min-height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    @media (min-width: 768px) {
      .resources-page .calc-stat-label {
        font-size: 0.5625rem;
        min-height: 26px;
      }
    }
    
    .resources-page .calc-stat-value {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--midnight);
      font-variant-numeric: tabular-nums;
    }
    
    @media (min-width: 768px) {
      .resources-page .calc-stat-value {
        font-size: 1.375rem;
      }
    }
    
    .resources-page .calc-stat-value.highlight {
      color: var(--terracotta);
    }
    
    /* Monthly Row */
    .resources-page .calc-monthly-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      text-align: center;
      padding-top: 0.75rem;
      border-top: 1px dashed var(--mist);
    }
    
    .resources-page .calc-monthly-item {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .resources-page .calc-monthly-label {
      font-size: 0.4375rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--stone);
      margin-bottom: 0.25rem;
      line-height: 1.3;
      min-height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    @media (min-width: 768px) {
      .resources-page .calc-monthly-label {
        font-size: 0.5rem;
        min-height: 22px;
      }
    }
    
    .resources-page .calc-monthly-value {
      font-size: 1rem;
      font-weight: 600;
      color: var(--graphite);
      font-style: italic;
      font-variant-numeric: tabular-nums;
    }
    
    @media (min-width: 768px) {
      .resources-page .calc-monthly-value {
        font-size: 1.0625rem;
      }
    }
    
    .resources-page .calc-monthly-value.highlight {
      color: var(--terracotta);
    }
    
    /* CTA Button */
    .resources-page .calc-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      width: 100%;
      padding: 0.875rem 1.25rem;
      background: var(--midnight);
      color: white;
      border-radius: 12px;
      font-size: 0.875rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s ease;
      box-shadow: 
        0 2px 4px rgba(26, 31, 46, 0.1),
        0 4px 12px rgba(26, 31, 46, 0.15);
    }
    
    @media (min-width: 900px) {
      .resources-page .calc-cta {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
        border-radius: 14px;
        width: auto;
        min-width: 280px;
      }
    }
    
    .resources-page .calc-cta:hover {
      background: #2a3142;
      transform: translateY(-1px);
      box-shadow: 
        0 4px 8px rgba(26, 31, 46, 0.15),
        0 8px 20px rgba(26, 31, 46, 0.2);
    }
    
    .resources-page .calc-cta svg {
      width: 16px;
      height: 16px;
      transition: transform 0.2s ease;
    }
    
    .resources-page .calc-cta:hover svg {
      transform: translateX(3px);
    }
    
    .resources-page .calc-disclaimer {
      text-align: center;
      font-size: 0.6875rem;
      color: var(--stone);
      margin-top: 0.875rem;
    }
    
    @media (min-width: 900px) {
      .resources-page .calc-disclaimer {
        font-size: 0.75rem;
        margin-top: 0.75rem;
      }
    }
    
    /* Videos Section */
    .resources-page .videos-section {
      background: var(--ivory);
    }
    
    /* Featured Intro Video */
    .resources-page .featured-video {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 1.5rem;
      box-shadow: 0 4px 20px rgba(26, 31, 46, 0.06);
    }
    
    @media (min-width: 768px) {
      .resources-page .featured-video {
        border-radius: 20px;
        margin-bottom: 2rem;
      }
    }
    
    .resources-page .featured-video-player {
      aspect-ratio: 16/9;
      position: relative;
      background: var(--pearl);
      overflow: hidden;
    }
    
    @media (min-width: 768px) {
      .resources-page .featured-video-player {
        border-radius: 20px 20px 0 0;
      }
    }
    
    .resources-page .featured-video-player iframe {
      position: absolute;
      top: -2px;
      left: -2px;
      width: calc(100% + 4px);
      height: calc(100% + 4px);
      border: none;
      display: block;
    }
    
    .resources-page .featured-video-content {
      padding: 1.25rem;
      color: var(--midnight);
    }
    
    @media (min-width: 768px) {
      .resources-page .featured-video-content {
        padding: 1.5rem 2rem;
        text-align: center;
      }
    }
    
    .resources-page .featured-video-tag {
      display: inline-block;
      background: var(--pearl);
      color: var(--terracotta);
      font-size: 0.5rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 0.25rem 0.5rem;
      border-radius: 4px;
      margin-bottom: 0.625rem;
      border: 1px solid var(--mist);
    }
    
    @media (min-width: 768px) {
      .resources-page .featured-video-tag {
        font-size: 0.5625rem;
        padding: 0.3rem 0.625rem;
        margin-bottom: 0.75rem;
      }
    }
    
    .resources-page .featured-video-title {
      font-size: 1.25rem;
      font-weight: 400;
      letter-spacing: -0.02em;
      margin-bottom: 0.5rem;
    }
    
    @media (min-width: 768px) {
      .resources-page .featured-video-title {
        font-size: 1.5rem;
      }
    }
    
    .resources-page .featured-video-desc {
      font-size: 0.875rem;
      color: var(--graphite);
      line-height: 1.5;
      max-width: 600px;
      margin: 0 auto;
    }
    
    /* Video Grid */
    .resources-page .video-grid {
      display: flex;
      gap: 1rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 1rem;
    }

    .resources-page .video-grid::-webkit-scrollbar {
      display: none;
    }

    .resources-page .video-grid {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    
    @media (min-width: 900px) {
      .resources-page .video-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        overflow-x: visible;
        padding-bottom: 0;
      }
    }
    
    /* Video Card */
    .resources-page .video-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.25s ease;
      flex: 0 0 280px;
      scroll-snap-align: start;
      box-shadow: 0 2px 12px rgba(26, 31, 46, 0.06);
    }

    @media (min-width: 768px) {
      .resources-page .video-card {
        border-radius: 16px;
        flex: 0 0 320px;
      }
    }
    
    @media (min-width: 900px) {
      .resources-page .video-card {
        flex: 1;
      }
    }
    
    .resources-page .video-card:hover {
      box-shadow: 0 8px 30px rgba(26, 31, 46, 0.1);
      transform: translateY(-3px);
    }
    
    .resources-page .video-card-player {
      aspect-ratio: 16/9;
      position: relative;
      background: var(--pearl);
      border-radius: 12px 12px 0 0;
      overflow: hidden;
    }
    
    @media (min-width: 768px) {
      .resources-page .video-card-player {
        border-radius: 16px 16px 0 0;
      }
    }
    
    .resources-page .video-card-player iframe {
      position: absolute;
      top: -2px;
      left: -2px;
      width: calc(100% + 4px);
      height: calc(100% + 4px);
      border: none;
      display: block;
    }
    
    .resources-page .video-card-body {
      padding: 1rem;
    }
    
    @media (min-width: 768px) {
      .resources-page .video-card-body {
        padding: 1.25rem;
      }
    }
    
    .resources-page .video-card-meta {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
      flex-wrap: wrap;
    }
    
    .resources-page .video-card-step {
      font-size: 0.5rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--stone);
    }
    
    @media (min-width: 768px) {
      .resources-page .video-card-step {
        font-size: 0.5625rem;
      }
    }
    
    .resources-page .video-card-tag {
      font-size: 0.5rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 0.1875rem 0.375rem;
      border-radius: 3px;
    }
    
    @media (min-width: 768px) {
      .resources-page .video-card-tag {
        font-size: 0.5625rem;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
      }
    }
    
    .tag-best { background: #dcfce7; color: #166534; }
    .tag-great { background: #dbeafe; color: #1e40af; }
    .tag-popular { background: #fef3c7; color: #92400e; }
    .tag-last { background: #fee2e2; color: #991b1b; }
    .tag-emergency { background: #fce7f3; color: #9d174d; }
    .tag-summary { background: #f3e8ff; color: #6b21a8; }
    
    .resources-page .video-card-title {
      font-size: 1rem;
      font-weight: 400;
      letter-spacing: -0.02em;
      margin-bottom: 0.25rem;
    }
    
    @media (min-width: 768px) {
      .resources-page .video-card-title {
        font-size: 1.125rem;
      }
    }
    
    .resources-page .video-card-subtitle {
      font-size: 0.75rem;
      color: var(--terracotta);
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    
    .resources-page .video-card-desc {
      font-size: 0.8125rem;
      color: var(--graphite);
      line-height: 1.5;
      margin-bottom: 0.75rem;
    }
    
    .resources-page .video-card-stats {
      display: flex;
      gap: 1rem;
      padding-top: 0.75rem;
      border-top: 1px solid var(--mist);
    }
    
    .resources-page .video-card-stat {
      flex: 1;
    }
    
    .resources-page .video-card-stat-label {
      font-size: 0.5rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--stone);
      margin-bottom: 0.125rem;
    }
    
    @media (min-width: 768px) {
      .resources-page .video-card-stat-label {
        font-size: 0.5625rem;
      }
    }
    
    .resources-page .video-card-stat-value {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--midnight);
    }
    
    .video-card-stat-value.credit-good { color: var(--green); }
    .video-card-stat-value.credit-ok { color: var(--amber); }
    .video-card-stat-value.credit-bad { color: var(--red); }
    
    /* Podcast Section */
    .resources-page .podcast-section {
      background: var(--ivory);
    }
    
    .resources-page .podcast-grid {
      display: flex;
      gap: 1rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 1rem;
    }

    .resources-page .podcast-grid::-webkit-scrollbar {
      display: none;
    }

    .resources-page .podcast-grid {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    
    @media (min-width: 768px) {
      .resources-page .podcast-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        overflow-x: visible;
        padding-bottom: 0;
      }
    }
    
    .resources-page .podcast-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.25s ease;
      flex: 0 0 300px;
      scroll-snap-align: start;
      box-shadow: 0 2px 12px rgba(26, 31, 46, 0.06);
    }

    @media (min-width: 768px) {
      .resources-page .podcast-card {
        border-radius: 16px;
        flex: 1;
      }
    }
    
    .resources-page .podcast-card:hover {
      box-shadow: 0 8px 30px rgba(26, 31, 46, 0.1);
      transform: translateY(-3px);
    }
    
    .resources-page .podcast-player {
      aspect-ratio: 16/9;
      position: relative;
      background: var(--pearl);
      border-radius: 12px 12px 0 0;
      overflow: hidden;
    }
    
    @media (min-width: 768px) {
      .resources-page .podcast-player {
        border-radius: 16px 16px 0 0;
      }
    }
    
    .resources-page .podcast-player iframe {
      position: absolute;
      top: -2px;
      left: -2px;
      width: calc(100% + 4px);
      height: calc(100% + 4px);
      border: none;
      display: block;
    }
    
    .resources-page .podcast-body {
      padding: 1rem;
    }
    
    @media (min-width: 768px) {
      .resources-page .podcast-body {
        padding: 1.25rem;
      }
    }
    
    .resources-page .podcast-title {
      font-size: 1rem;
      font-weight: 400;
      letter-spacing: -0.02em;
      margin-bottom: 0.375rem;
    }
    
    @media (min-width: 768px) {
      .resources-page .podcast-title {
        font-size: 1.125rem;
      }
    }
    
    .resources-page .podcast-desc {
      font-size: 0.8125rem;
      color: var(--graphite);
      line-height: 1.5;
    }
    
    /* Articles Section */
    .resources-page .articles-section {
      background: var(--pearl);
    }
    
    .resources-page .articles-grid {
      display: flex;
      gap: 1rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 1rem;
    }

    .resources-page .articles-grid::-webkit-scrollbar {
      display: none;
    }

    .resources-page .articles-grid {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    
    @media (min-width: 900px) {
      .resources-page .articles-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        overflow-x: visible;
        padding-bottom: 0;
      }
    }
    
    .resources-page .article-card {
      background: white;
      border-radius: 12px;
      padding: 1.25rem;
      border: 1px solid var(--mist);
      text-decoration: none;
      color: var(--midnight);
      transition: all 0.25s ease;
      display: flex;
      flex-direction: column;
      flex: 0 0 220px;
      scroll-snap-align: start;
    }

    @media (min-width: 768px) {
      .resources-page .article-card {
        border-radius: 16px;
        padding: 1.5rem;
        flex: 0 0 260px;
      }
    }
    
    @media (min-width: 900px) {
      .resources-page .article-card {
        flex: 1;
      }
    }
    
    .resources-page .article-card:hover {
      box-shadow: 0 8px 30px rgba(26, 31, 46, 0.1);
      transform: translateY(-3px);
    }
    
    .resources-page .article-tag {
      font-size: 0.5rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--terracotta);
      margin-bottom: 0.5rem;
    }
    
    @media (min-width: 768px) {
      .resources-page .article-tag {
        font-size: 0.5625rem;
      }
    }
    
    .resources-page .article-title {
      font-size: 0.9375rem;
      font-weight: 400;
      letter-spacing: -0.01em;
      line-height: 1.35;
      margin-bottom: 0.75rem;
      flex: 1;
    }
    
    @media (min-width: 768px) {
      .resources-page .article-title {
        font-size: 1rem;
      }
    }
    
    .resources-page .article-time {
      font-size: 0.6875rem;
      color: var(--stone);
    }
    
    /* CTA Section */
    .resources-page .cta-section {
      background: var(--pearl);
      color: var(--midnight);
      text-align: center;
      position: relative;
    }
    
    .resources-page .cta-section::after {
      display: none;
    }
    
    .resources-page .cta-section .section-title {
      color: var(--midnight);
    }
    
    .resources-page .cta-section .section-desc {
      color: var(--graphite);
    }
    
    .resources-page .cta-buttons {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      align-items: center;
      margin-top: 1.5rem;
    }
    
    @media (min-width: 600px) {
      .resources-page .cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
      }
    }
    
    .resources-page .cta-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      max-width: 500px;
      margin: 2rem auto 1.5rem;
    }
    
    @media (min-width: 600px) {
      .resources-page .cta-cards {
        gap: 1.25rem;
      }
    }
    
    .resources-page .cta-card {
      background: white;
      border-radius: 16px;
      padding: 1.5rem 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      text-decoration: none;
      border: 1px solid var(--mist);
      transition: all 0.2s ease;
    }
    
    @media (min-width: 600px) {
      .resources-page .cta-card {
        padding: 2rem 1.5rem;
        gap: 1rem;
      }
    }
    
    .resources-page .cta-card:hover {
      box-shadow: 0 8px 30px rgba(26, 31, 46, 0.1);
      transform: translateY(-2px);
    }
    
    .resources-page .cta-card-icon {
      width: 48px;
      height: 48px;
    }
    
    @media (min-width: 600px) {
      .resources-page .cta-card-icon {
        width: 56px;
        height: 56px;
      }
    }
    
    .resources-page .cta-card-label {
      font-size: 0.6875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--midnight);
    }
    
    @media (min-width: 600px) {
      .resources-page .cta-card-label {
        font-size: 0.75rem;
      }
    }
    
    .resources-page .cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.875rem 2rem;
      border-radius: 100px;
      font-size: 0.875rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s ease;
    }
    
    @media (min-width: 768px) {
      .resources-page .cta-btn {
        padding: 1rem 2.5rem;
        font-size: 0.9375rem;
      }
    }
    
    .resources-page .cta-btn-primary {
      background: var(--terracotta);
      color: white;
    }
    
    .resources-page .cta-btn-primary:hover {
      background: var(--terracotta-light);
    }
    
    .resources-page .cta-btn-secondary {
      background: white;
      color: var(--midnight);
      border: 1px solid var(--mist);
    }
    
    .resources-page .cta-btn-secondary:hover {
      background: var(--pearl);
    }
    
    .resources-page .cta-btn svg {
      width: 16px;
      height: 16px;
    }
    
    /* Modal Styles */
    .resources-page .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      z-index: 9999;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    
    .resources-page .modal-content.understand-modal {
      background-color: white;
      border-radius: 12px;
      padding: 40px 35px;
      max-width: 600px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .resources-page .modal-close {
      position: absolute;
      top: 15px;
      right: 20px;
      background: none;
      border: none;
      font-size: 32px;
      font-weight: 300;
      cursor: pointer;
      color: #333;
      line-height: 1;
      padding: 0;
    }
    
    .resources-page .modal-close:hover {
      color: #000;
    }
    
    .resources-page .understand-modal p {
      font-size: 17px;
      line-height: 1.5;
      color: #1a1a1a;
      margin: 0 0 20px 0;
      text-align: center;
    }
    
    .resources-page .understand-modal p:first-of-type {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 25px;
      color: #000;
    }
    
    .resources-page .understand-modal p b {
      font-weight: 600;
    }
    
    .resources-page .myflex {
      display: flex;
      justify-content: center;
      margin-top: 30px;
    }
    
    .resources-page .my-contct-btn {
      background-color: #4CAF50;
      color: white;
      padding: 16px 40px;
      font-size: 15px;
      font-weight: 600;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: background-color 0.3s;
      text-align: center;
      text-transform: uppercase;
    }
    
    .resources-page .my-contct-btn:hover {
      background-color: #45a049;
    }
    
    @media (max-width: 768px) {
      .resources-page .modal-content.understand-modal {
        padding: 35px 24px 30px;
        border-radius: 18px;
      }
      .resources-page .understand-modal p {
        font-size: 15px;
      }
      .resources-page .understand-modal p:first-of-type {
        font-size: 20px;
      }
      .resources-page .my-contct-btn {
        display: block;
        width: 100%;
        padding: 16px 20px;
        font-size: 14px;
      }
    }
