/* modern-offers.css */
@import url('https://fonts.googleapis.com/css?family=Raleway:400,700,800');


/* Base brand colors applied as CSS vars */
  :root {
    --brand-secondary-blue: #0F5B9A;
    --brand-secondary-yellow: #FAB50F;
    --brand-primary-grey: #4A4A4A;
    --brand-light-grey: #F5F7FA;
  }

  /* Section wrapper - Reduced spacing */
  .offer-section-wrapper {
    background-color: var(--brand-light-grey);
    text-align: center;
    padding: 0px 0 30px 0; /* Reduced from 60px */
    border-bottom: 1px solid #e2e8f0;
    font-family: 'Raleway', sans-serif;
    font-size: 28px; /* Slightly smaller */
    color: #1e293b !important;
  }

  /* Section Title & Eyebrow - Adjusted typography & margin */
  h2#offers-section-title {
    color: #1e293b !important;
    font-family: 'Raleway', sans-serif;
    font-weight: 800 !important;
    letter-spacing: -0.01em !important;
    font-size: 2.4rem !important;
    margin-bottom: 40px;
  }
  #offers-section-title::before {
    content: 'YOUR FINANCIAL JOURNEY';
    display: block;
    font-size: 11px; /* Slightly smaller */
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 8px;
  }

  /* Matching CSS for the Featured Insights section title */
  h2#hp-offers-title {
    color: var(--brand-primary-grey);
    font-family: 'Raleway', sans-serif;
    font-weight: 800 !important;
    letter-spacing: -0.01em !important;
    font-size: 2.4rem !important;
    margin-top: 0px !important;
    margin-bottom: 30px;
  }
  h2#hp-offers-title::before {
    content: 'YOUR FINANCIAL JOURNEY';
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 8px;
  }


  /* Card Grid Layout - Tighter gaps */
  .modern-offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px; /* Reduced from 30px */
    max-width: 1100px; /* Scaled down slightly */
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Card Container */
  .modern-offer-card {
    background: #ffffff;
    border-radius: 8px; /* Slightly sharper, more professional corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .modern-offer-card:hover {
    transform: translateY(-4px); /* Subtler lift */
    box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.08), 0 8px 8px -5px rgba(0, 0, 0, 0.03);
  }

  /* Icon Zone - Reduced height */
  .modern-offer-icon-zone {
    height: 100px; /* Reduced from 140px */
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #cbd5e1;
  }
  .modern-offer-icon-zone svg {
    width: 40px; /* Slightly smaller icons */
    height: 40px;
    color: var(--brand-secondary-blue); /* Align to brand colors */
  }

  /* Content Padding Area - Tighter padding */
  .modern-offer-content {
    padding: 20px; /* Reduced from 24px */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  /* Brand Yellow Eyebrow */
  .modern-eyebrow {
    background-color: var(--brand-secondary-yellow); /* Brand yellow */
    color: #000000;
    padding: 3px 8px; /* Tighter padding */
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 12px;
  }

  /* Typography - Adjusted to brand fonts */
  .modern-headline {
    font-family: 'Raleway', sans-serif;
    font-size: 18px; /* Smaller */
    font-weight: 800;
    color: var(--brand-primary-grey);
    margin: 0 0 10px 0;
    line-height: 1.3;
  }
  .modern-sub {
    font-family: 'Raleway', sans-serif;
    font-size: 13px; /* Slightly smaller */
    color: #475569;
    margin: 0 0 14px 0;
    line-height: 1.5;
  }
  .modern-disclaimer {
    font-family: 'Raleway', sans-serif;
    font-size: 13px !important;
    color: #94a3b8;
    margin: 0 0 20px 0;
    margin-top: auto;
  }

  /* Full-Width CTA Button */
  .modern-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 16px; /* Tighter button padding */
    font-size: 12px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px; /* Matches card corner style */
    background-color: var(--primary-blue);
    color: #ffffff;
    border: none;
    transition: background-color 0.2s ease;
    cursor: pointer;
  }
  .modern-btn:hover {
    background-color: var(--brand-secondary-blue);
    color: #ffffff;
    text-decoration: none;
  }