<style>
  .toya-active-programmes {
    --navy: #071f35;
    --blue: #174a78;
    --yellow: #ffc425;
    --orange: #ff5a2f;
    --green: #28a95a;
    --light: #f7f3ea;
    --muted: #44536d;

    padding: 48px 18px;
    background: var(--light);
    font-family: Montserrat, Arial, sans-serif;
  }

  .toya-active-programmes * {
    box-sizing: border-box;
  }

  .active-programmes-inner {
    max-width: 1180px;
    margin: 0 auto;
  }

  .active-programmes-heading {
    display: grid;
    grid-template-columns: 1fr 0.55fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 28px;
  }

  .active-programmes-kicker {
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .toya-active-programmes h2 {
    max-width: 640px;
    margin: 0;
    color: var(--navy);
    font-size: 56px;
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: 0;
  }

  .active-programmes-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
  }

  .active-programmes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .active-programme-card {
    overflow: hidden;
    display: grid;
    grid-template-rows: 330px 1fr;
    background: var(--navy);
    border: 1px solid rgba(7, 31, 53, 0.22);
    border-radius: 8px;
  }

  .active-programme-card img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    background: #ffffff;
  }

  .active-programme-content {
    padding: 18px;
    color: #ffffff;
    border-top: 7px solid var(--yellow);
  }

  .active-programme-card:nth-child(2) .active-programme-content {
    border-top-color: var(--orange);
  }

  .active-programme-card:nth-child(3) .active-programme-content {
    border-top-color: var(--green);
  }

  .active-programme-card:nth-child(4) .active-programme-content {
    border-top-color: #55a7ff;
  }

  .active-programme-card h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 900;
  }

  .active-programme-card p {
    margin: 0;
    color: #e3edf7;
    font-size: 15px;
    line-height: 1.45;
  }

  .active-programmes-cta {
    margin-top: 26px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #ffffff;
    background: var(--blue);
    border-radius: 8px;
  }

  .active-programmes-cta p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
  }

  .active-programmes-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    color: #ffffff;
    background: linear-gradient(180deg, #ff7652 0%, var(--orange) 100%);
    border-radius: 8px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
  }

  .active-programmes-button:hover,
  .active-programmes-button:focus {
    color: #ffffff;
    text-decoration: none;
  }

  @media (max-width: 980px) {
    .active-programmes-heading {
      grid-template-columns: 1fr;
    }

    .active-programmes-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .toya-active-programmes h2 {
      font-size: 42px;
    }
  }

  @media (max-width: 620px) {
    .toya-active-programmes {
      padding: 40px 16px;
    }

    .active-programmes-grid {
      grid-template-columns: 1fr;
    }

    .active-programme-card {
      grid-template-rows: 360px 1fr;
    }

    .active-programme-card img {
      height: 360px;
    }

    .active-programmes-cta {
      align-items: flex-start;
      flex-direction: column;
    }

    .toya-active-programmes h2 {
      font-size: 34px;
    }
  }
</style>

