
  .wk7-specials {
    width: 100%;
    box-sizing: border-box;
    padding: 90px 40px;
    background:
      radial-gradient(
        circle at 50% 0%,
        rgba(115,189,2,0.12),
        transparent 42%
      ),
      #111111;
    color: #ffffff;
    overflow: hidden;
  }

  .wk7-specials-inner {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
  }

  /* Heading */
  .wk7-specials-heading {
    text-align: center;
    margin-bottom: 48px;
  }

  .wk7-specials-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: #73BD02;
  }

  .wk7-specials-heading h2 {
    margin: 0;
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0.04em;
  }

  .wk7-specials-heading p {
    margin: 16px 0 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.68);
  }

  /* Card Grid */
  .wk7-specials-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }

  /* Card */
  .wk7-special-card {
    position: relative;
    min-height: 240px;
    padding: 30px 24px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: 18px;

    overflow: hidden;

    transition:
      transform 0.3s ease,
      border-color 0.3s ease,
      background 0.3s ease;
  }

  /* Decorative Glow */
  .wk7-special-card::after {
    content: "";
    position: absolute;

    width: 150px;
    height: 150px;

    left: 50%;
    bottom: -90px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: rgba(115,189,2,0.13);

    filter: blur(10px);

    pointer-events: none;
  }

  .wk7-special-card:hover {
    transform: translateY(-5px);

    background: rgba(115,189,2,0.07);

    border-color: rgba(115,189,2,0.45);
  }

  /* Icon */
  .wk7-icon {
    position: relative;
    z-index: 1;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 16px;

    background: rgba(115,189,2,0.11);
    border: 1px solid rgba(115,189,2,0.24);

    font-size: 27px;
    line-height: 1;
  }

  /* Content */
  .wk7-card-content {
    position: relative;
    z-index: 1;

    margin-top: 28px;

    width: 100%;
  }

  .wk7-card-content h3 {
    margin: 0;

    font-size: 17px;
    line-height: 1.3;

    font-weight: 800;

    letter-spacing: 0.035em;
  }

  /* Highlight Numbers */
  .wk7-highlight {
    color: #73BD02;

    font-size: 1.22em;

    font-weight: 900;

    letter-spacing: 0.01em;
  }

  .wk7-card-content p {
    margin: 11px 0 0;

    font-size: 13px;
    line-height: 1.55;

    color: rgba(255,255,255,0.58);
  }

  /* Tablet */
  @media (max-width: 1100px) {

    .wk7-specials {
      padding: 70px 28px;
    }

    .wk7-specials-grid {
      grid-template-columns: repeat(3, 1fr);
    }

  }

  /* Mobile */
  @media (max-width: 700px) {

    .wk7-specials {
      padding: 58px 18px;
    }

    .wk7-specials-heading {
      margin-bottom: 32px;
    }

    .wk7-specials-eyebrow {
      font-size: 10px;
      letter-spacing: 0.18em;
    }

    .wk7-specials-heading h2 {
      font-size: 28px;
    }

    .wk7-specials-heading p {
      max-width: 320px;

      margin: 13px auto 0;

      font-size: 14px;
    }

    .wk7-specials-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .wk7-special-card {
      min-height: 205px;

      padding: 22px 15px;

      border-radius: 14px;
    }

    .wk7-icon {
      width: 45px;
      height: 45px;

      border-radius: 12px;

      font-size: 21px;
    }

    .wk7-card-content {
      margin-top: 22px;
    }

    .wk7-card-content h3 {
      font-size: 12px;
      line-height: 1.4;
    }

    .wk7-highlight {
      font-size: 1.18em;
    }

    .wk7-card-content p {
      margin-top: 8px;

      font-size: 11px;
      line-height: 1.5;
    }

  }

  /* Small Phones */
  @media (max-width: 380px) {

    .wk7-specials {
      padding-left: 14px;
      padding-right: 14px;
    }

    .wk7-special-card {
      min-height: 195px;

      padding: 19px 12px;
    }

    .wk7-card-content h3 {
      font-size: 11px;
    }

    .wk7-card-content p {
      font-size: 10px;
    }

  }
