.series-card {
      padding: 32px;
      border-radius: 16px;
      box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.04);
      background: linear-gradient(180.00deg, rgba(244.8, 249.67, 255, 1),rgba(244.8, 249.26, 255, 1) 100%);
  }

    .series-title {
      color: rgba(0, 0, 0, 1);
      font-family: "Inter", Sans-serif;
      font-size: 32px;
      font-weight: 600;
      line-height: 29px;
      text-align: left;
      margin-bottom: 6px;
      margin-top: 0;
    }

    .series-subtitle {
      color: rgba(0, 0, 0, 1);
      font-family: "Inter", Sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 19px;
      text-align: left;
      margin-bottom: 24px;
    }

    hr.series-divider {
      border: none;
      border-top: 1px solid #e5e7eb;
      margin-bottom: 24px;
    }

    .spec-list {
      display: flex;
      flex-direction: column;
      gap: 0px;
      margin-bottom: 22px;
    }

    .spec-item {
      display: flex;
      align-items: center;
      padding: 16px;
      color: rgba(60, 60, 60, 1);
      font-family: "Inter", Sans-serif;
      font-size: 16px;
      font-weight: 500;
      line-height: 19px;
      text-align: left;
      gap: 15px;
    }
    .spec-item:nth-child(odd){
      border-radius: 16px;
      background: rgba(235, 243, 255, 1);
    }

    .spec-label {
        opacity: 0.9;
        display: flex;
        justify-content: space-between;
        min-width: 80px;
        gap: 5px;
    }

    .spec-value {
      font-weight: 500;
      margin-left: 0;
    }

    .series-cta {
      display: block;
      text-align: center;
      text-decoration: none;
      margin-top: 4px;
      padding: 13px 16px;
      color: rgba(255, 255, 255, 1);
      font-family: "Inter", Sans-serif;
      font-size: 16px;
      font-weight: 400;
      border-radius: 300px;
      background: rgba(14, 77, 146, 1);
      transition: all .3s ease-in-out;
    }

    .series-cta:hover,
    .series-cta:focus {
      background: #0c3f77;
    }

    @media (max-width:1440px) {
      .series-card {
        padding: 24px;
        border-radius: 16px;
      }
      .series-title {
        font-size: 24px;
        line-height: 30px;
      }
      .spec-item {
        padding: 12px;
        gap: 10px;
      }
      .spec-item:nth-child(odd) {
        border-radius: 10px;
      }
    }