
    .kd-custom-details {
      width: 100%;
      background: #EEF3F5;
      padding: 92px 0;
      box-sizing: border-box;
      font-family: Inter, Arial, sans-serif;
    }

    .kd-custom-details *,
    .kd-custom-details *::before,
    .kd-custom-details *::after {
      box-sizing: border-box;
    }

    .kd-custom-details .kd-custom-container {
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* =========================
       HEADER
    ========================= */

    .kd-custom-details-header {
      max-width: 790px;
      margin: 0 0 50px;
    }

    .kd-custom-details-eyebrow {
      margin: 0 0 12px;
      color: #159A9C;
      font-family: Inter, Arial, sans-serif;
      font-size: 13px;
      line-height: 1.4;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .kd-custom-details-title {
      margin: 0;
      color: #14213D;
      font-family: Manrope, Arial, sans-serif;
      font-size: 42px;
      line-height: 1.15;
      font-weight: 700;
      letter-spacing: -0.025em;
    }

    .kd-custom-details-intro {
      max-width: 740px;
      margin: 18px 0 0;
      color: #69757E;
      font-family: Inter, Arial, sans-serif;
      font-size: 16px;
      line-height: 1.8;
      font-weight: 400;
    }


    /* =========================
       MAIN LAYOUT
    ========================= */

    .kd-custom-details-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
      gap: 24px;
      align-items: stretch;
    }


    /* =========================
       IMAGE
    ========================= */

    .kd-custom-details-image {
      width: 100%;
      min-height: 600px;
      overflow: hidden;
      background: #DCE6EA;
    }

    .kd-custom-details-image img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }


    /* =========================
       DETAIL GRID
    ========================= */

    .kd-custom-details-content {
      display: flex;
      flex-direction: column;
      min-width: 0;
    }

    .kd-custom-details-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .kd-custom-detail-card {
      display: flex;
      flex-direction: column;
      min-width: 0;
      min-height: 188px;
      padding: 24px 23px 22px;
      background: #ffffff;
      border: 1px solid #E1E6EA;
    }


    /* =========================
       LABEL
    ========================= */

    .kd-custom-detail-card-label {
      display: block;
      margin: 0 0 22px;
      color: #159A9C;
      font-family: Inter, Arial, sans-serif;
      font-size: 10px;
      line-height: 1.4;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }


    /* =========================
       TITLE
    ========================= */

    .kd-custom-detail-card-title {
      margin: 0 0 10px;
      color: #14213D;
      font-family: Manrope, Arial, sans-serif;
      font-size: 19px;
      line-height: 1.3;
      font-weight: 700;
      letter-spacing: -0.01em;
    }

    .kd-custom-detail-card-text {
      margin: 0;
      color: #69757E;
      font-family: Inter, Arial, sans-serif;
      font-size: 13px;
      line-height: 1.7;
    }


    /* =========================
       MINI ACCENT
    ========================= */

    .kd-custom-detail-card-accent {
      width: 30px;
      height: 2px;
      margin-top: auto;
      padding-top: 0;
      background: #159A9C;
    }


    /* =========================
       NOTE
    ========================= */

    .kd-custom-details-note {
      margin: 17px 0 0;
      padding: 17px 19px;
      background: #14213D;
      color: #C8D5DC;
      font-family: Inter, Arial, sans-serif;
      font-size: 11px;
      line-height: 1.7;
    }

    .kd-custom-details-note strong {
      color: #ffffff;
      font-weight: 700;
    }


    /* =========================================================
       TABLET
    ========================================================= */

    @media (max-width: 1050px) {

      .kd-custom-details {
        padding: 72px 0;
      }

      .kd-custom-details .kd-custom-container {
        padding-left: 22px;
        padding-right: 22px;
      }

      .kd-custom-details-header {
        margin-bottom: 40px;
      }

      .kd-custom-details-title {
        font-size: 36px;
      }

      .kd-custom-details-layout {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .kd-custom-details-image {
        min-height: 460px;
      }

      .kd-custom-details-grid {
        gap: 16px;
      }

    }


    /* =========================================================
       MOBILE
    ========================================================= */

    @media (max-width: 640px) {

      .kd-custom-details {
        padding: 54px 0;
      }

      .kd-custom-details .kd-custom-container {
        padding-left: 18px;
        padding-right: 18px;
      }

      .kd-custom-details-header {
        margin-bottom: 30px;
      }

      .kd-custom-details-eyebrow {
        margin-bottom: 10px;
        font-size: 12px;
      }

      .kd-custom-details-title {
        font-size: 30px;
        line-height: 1.18;
      }

      .kd-custom-details-intro {
        margin-top: 15px;
        font-size: 14px;
        line-height: 1.75;
      }

      .kd-custom-details-layout {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .kd-custom-details-image {
        min-height: 310px;
      }

      .kd-custom-details-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .kd-custom-detail-card {
        min-height: 0;
        padding: 21px 19px 20px;
      }

      .kd-custom-detail-card-label {
        margin-bottom: 18px;
      }

      .kd-custom-detail-card-title {
        font-size: 19px;
      }

      .kd-custom-detail-card-text {
        font-size: 13px;
        line-height: 1.7;
      }

      .kd-custom-detail-card-accent {
        margin-top: 22px;
      }

      .kd-custom-details-note {
        margin-top: 14px;
        padding: 15px 16px;
        font-size: 11px;
      }

    }


    /* =========================================================
       SMALL MOBILE
    ========================================================= */

    @media (max-width: 380px) {

      .kd-custom-details {
        padding: 46px 0;
      }

      .kd-custom-details .kd-custom-container {
        padding-left: 15px;
        padding-right: 15px;
      }

      .kd-custom-details-title {
        font-size: 27px;
      }

      .kd-custom-details-image {
        min-height: 280px;
      }

      .kd-custom-detail-card {
        padding-left: 18px;
        padding-right: 18px;
      }

    }
  