/* ───────────────────────────────────────────
       SECTION
    ─────────────────────────────────────────── */
    .subscriber-section {
      max-width: 1460px;
      margin: 0 auto;
      padding: 0 30px 170px;
      display: flex !important;
      align-items: center;
      gap: 0 120px;
    }

    /* ───────────────────────────────────────────
       LEFT — IMAGE
    ─────────────────────────────────────────── */
    .subscriber-section__left {
      flex: 0 0 43%;
      max-width: 43%;
    }

    .subscriber-section__image-wrapper {
      width: 100%;
      height: 600px;
      border-radius: 20px;
      overflow: hidden;
      background: linear-gradient(145deg, #e8d5f5 0%, #d9c8f0 40%, #c8b8e8 100%);
    }

    .subscriber-section__image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    /* ───────────────────────────────────────────
       RIGHT — CONTENT
    ─────────────────────────────────────────── */
    .subscriber-section__right {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    /* Heading */
    .subscriber-section__heading-wrapper {
      margin-bottom: 20px;
    }

    .subscriber-section__heading {
      color: #000;
      font-family: Lufga;
      font-weight: 600;
      font-size: 43px;
      line-height: 53px;
      letter-spacing: 0;
      margin: 0;
      padding: 0;
    }

    /* Description paragraphs */
    .subscriber-section__desc-wrapper {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 32px;
    }

    .subscriber-section__desc-wrapper p {
      color: #000;
      font-family: Lufga;
      font-weight: 400;
      font-size: 16px;
      line-height: 31px;
      letter-spacing: 0.01em;
      padding: 0;
      margin: 0 0 20px;
    }
.subscriber-section__desc-wrapper p:last-of-type{
  margin: 0;
}
    /* CTA link */
    .subscriber-section__cta-wrapper {
      margin-top: 4px;
    }

    .subscriber-section__cta {
      font-size: 15px;
      font-weight: 600;
      color: #111;
      text-decoration: none;
      border-bottom: 2px solid #111;
      padding-bottom: 2px;
      display: inline-block;
      transition: color 0.2s ease, border-color 0.2s ease;
    }

    .subscriber-section__cta:hover {
      color: #2563eb;
      border-color: #2563eb;
      text-decoration: none;
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1440px
    ─────────────────────────────────────────── */
    @media (max-width: 1440px) {
      .subscriber-section {
        /*! padding: 80px 80px; */
        /*! gap: 64px; */
        align-items: start;
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1366px
    ─────────────────────────────────────────── */
    @media (max-width: 1366px) {
      .subscriber-section {
        /*! padding: 72px 60px; */
        gap: 0 100px;
      }

      .subscriber-section__heading {
        font-size: 46px;
      }

      .subscriber-section__image-wrapper {
        height: 480px;
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1280px
    ─────────────────────────────────────────── */
    @media (max-width: 1280px) {
      .subscriber-section {
        /*! padding: 64px 48px; */
        /*! gap: 48px; */
      }

      .subscriber-section__heading {
        font-size: 42px;
      }

      .subscriber-section__image-wrapper {
        /*! height: 440px; */
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1024px
    ─────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .subscriber-section {
        padding: 0 20px 100px;
        gap: 40px;
      }

      .subscriber-section__left {
        flex: 0 0 46%;
        max-width: 46%;
      }

      .subscriber-section__heading {
        font-size: 36px;
      }

      .subscriber-section__image-wrapper {
        /*! height: 400px; */
      }

      .subscriber-section__desc-wrapper p {
        font-size: 15px;
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 991px
    ─────────────────────────────────────────── */
    @media (max-width: 991px) {
      .subscriber-section {
      }

      .subscriber-section__left {
        flex: 0 0 46%;
        max-width: 46%;
      }

      .subscriber-section__heading {
        font-size: 34px;
        line-height: 44px;
      }

      .subscriber-section__image-wrapper {
        /*! height: 360px; */
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 767px
    ─────────────────────────────────────────── */
    @media (max-width: 767px) {
      .subscriber-section {
        flex-direction: column-reverse;
        padding: 0 15px 60px;
        gap: 40px;
      }

      .subscriber-section__left {
        flex: none;
        max-width: 100%;
        width: 100%;
      }

      .subscriber-section__image-wrapper {
        height: auto;
      }

      .subscriber-section__heading {
        font-size: 28px;
      }
    }