    :root {
      --blue: #0057c8;
      --navy: #081f3f;
      --line: #e8eef7;
      --teal: #00a7a7;
      --orange: #f1a11a;
      --shadow: 0 14px 34px rgba(8,31,63,.12);
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      background: #fff;
      color: var(--navy);
      font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "Hiragino Sans", "Noto Sans JP", Arial, sans-serif;
      letter-spacing: .04em;
    }

    a { color: inherit; text-decoration: none; }

    .sp-only { display: inline; }

    .phone-frame {
      min-height: 100vh;
      background: #fff;
    }

    .lp-header {
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 18px;
      background: rgba(255,255,255,.96);
      border-bottom: 1px solid rgba(232,238,247,.9);
      position: relative;
      z-index: 5;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      height: 30px;
    }

    .logo img {
      display: block;
      width: auto;
      height: 22px;
    }

    .site-top-link {
      color: var(--navy);
      font-size: 12px;
      line-height: 1;
      font-weight: 900;
      letter-spacing: .04em;
      white-space: nowrap;
    }

    .hero {
      position: relative;
      height: 242px;
      overflow: hidden;
      background: #f7fbff;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url("../assets/hero.webp");
      background-size: cover;
      background-position: center;
      z-index: 0;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(255,255,255,.20) 0%, rgba(255,255,255,.06) 42%, rgba(255,255,255,0) 100%);
      z-index: 1;
      pointer-events: none;
    }

    .hero-copy {
      position: absolute;
      left: 0;
      right: 0;
      top: 30px;
      z-index: 2;
      text-align: center;
      padding: 0 22px;
    }

    .eyebrow {
      margin: 0 0 8px;
      color: var(--blue);
      font-size: 12px;
      line-height: 1.4;
      font-weight: 900;
      letter-spacing: .08em;
    }

    .hero h1 {
      margin: 0 0 10px;
      color: var(--blue);
      font-size: 44px;
      line-height: .95;
      font-weight: 900;
      letter-spacing: .08em;
    }

    .lead {
      margin: 0 0 15px;
      color: var(--navy);
      font-size: 12px;
      line-height: 1.7;
      font-weight: 900;
      letter-spacing: .04em;
    }

    .main-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      width: 228px;
      height: 42px;
      border-radius: 999px;
      background: #16a34a;
      color: #fff;
      font-size: 13px;
      font-weight: 900;
      box-shadow: 0 12px 26px rgba(22,163,74,.30);
    }

    .main-cta::after,
    .white-cta::after {
      content: "";
      width: 8px;
      height: 8px;
      border-top: 2px solid currentColor;
      border-right: 2px solid currentColor;
      transform: rotate(45deg);
      margin-left: 2px;
    }

    .work-section {
      padding: 22px 18px 0;
      background: #fff;
    }

    .work-title {
      display: block;
      margin: 0 0 16px;
      color: var(--navy);
      text-align: center;
      font-size: 20px;
      line-height: 1.4;
      font-weight: 900;
      letter-spacing: .08em;
    }

    .work-title::after {
      content: "";
      display: block;
      width: 56px;
      height: 2px;
      margin: 8px auto 0;
      background: var(--teal);
      border-radius: 999px;
    }

        .work-icon-box svg {
      width: 100%;
      height: 100%;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .work-list {
      display: grid;
      gap: 12px;
    }

    .work-card {
      position: relative;
      min-height: 78px;
      overflow: hidden;
      border-radius: 12px;
      background: #fff;
      box-shadow: var(--shadow);
      border: 1px solid rgba(232,238,247,.9);
    }

    .work-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: right center;
      z-index: 0;
    }

    .work-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 52%, rgba(255,255,255,.34) 100%);
      z-index: 1;
    }

    .work-card--one::before { background-image: url("../assets/work-01.webp"); }
    .work-card--two::before { background-image: url("../assets/work-02.webp"); }
    .work-card--three::before { background-image: url("../assets/work-03.webp"); }

    .work-content {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 34px 42px 1fr;
      gap: 12px;
      align-items: center;
      min-height: 78px;
      padding: 10px 14px 10px 18px;
    }

    .work-left {
      display: contents;
    }

    .work-number {
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border-radius: 999px;
      background: #dff3ff;
      color: var(--blue);
      font-size: 13px;
      font-weight: 900;
    }

    .work-icon-box {
      width: 38px;
      height: 38px;
      color: var(--teal);
    }

    .work-icon-box svg {
      width: 100%;
      height: 100%;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .work-text h2 {
      margin: 0;
      color: var(--navy);
      font-size: 16px;
      line-height: 1.45;
      font-weight: 900;
      letter-spacing: .04em;
    }

    .state-section {
      padding: 32px 18px 0;
      background: #fff;
    }

    .state-title {
      margin: 0 0 16px;
      color: var(--navy);
      text-align: center;
      font-size: 18px;
      line-height: 1.5;
      font-weight: 900;
      letter-spacing: .08em;
    }

    .state-list {
      display: grid;
      gap: 10px;
    }

    .state-card {
      position: relative;
      display: grid;
      grid-template-columns: 112px 1fr;
      align-items: center;
      min-height: 76px;
      overflow: hidden;
      border-radius: 12px;
      background: #fff;
      box-shadow: var(--shadow);
      border: 1px solid rgba(232,238,247,.9);
    }

    .state-image {
      align-self: stretch;
      background-size: cover;
      background-position: center;
    }

    .state-card--reboot .state-image { background-image: url("../assets/state-reboot.webp"); }
    .state-card--maintenance .state-image { background-image: url("../assets/state-maintenance.webp"); }
    .state-card--boost .state-image { background-image: url("../assets/state-boost.webp"); }

    .state-text {
      padding: 10px 14px;
    }

    .state-text h2 {
      margin: 0 0 4px;
      color: var(--blue);
      font-size: 21px;
      line-height: 1;
      font-weight: 900;
      letter-spacing: .08em;
    }

    .state-card--maintenance .state-text h2 { color: var(--teal); }
    .state-card--boost .state-text h2 { color: var(--orange); }

    .state-text p {
      margin: 0;
      color: var(--navy);
      font-size: 12px;
      line-height: 1.45;
      font-weight: 900;
      letter-spacing: .04em;
    }

    .state-badge {
      display: none;
    }

    .bottom-cta {
      margin-top: 32px;
      padding: 34px 20px 36px;
      text-align: center;
      color: #fff;
      background: linear-gradient(135deg, #0057c8 0%, #00a7c8 100%);
    }

    .bottom-cta p {
      margin: 0 0 16px;
      font-size: 14px;
      line-height: 1.7;
      font-weight: 900;
      letter-spacing: .06em;
    }

    .bottom-cta .white-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      width: 248px;
      height: 44px;
      border-radius: 999px;
      background: #fff;
      color: var(--blue);
      font-size: 13px;
      font-weight: 900;
      box-shadow: 0 12px 26px rgba(0,0,0,.16);
    }

    .lp-footer {
      padding: 24px 18px 30px;
      background: #f8fbff;
      border-top: 1px solid rgba(232,238,247,.9);
    }

    .footer-logo {
      display: flex;
      justify-content: center;
      margin-bottom: 16px;
    }

    .footer-logo img {
      width: auto;
      height: 22px;
      display: block;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px 18px;
      margin-bottom: 14px;
    }

    .footer-links a {
      color: var(--navy);
      font-size: 12px;
      line-height: 1.5;
      font-weight: 800;
      white-space: nowrap;
    }

    .footer-copy {
      margin: 0;
      color: #7b8794;
      text-align: center;
      font-size: 10px;
      line-height: 1.6;
      font-weight: 700;
    }

    .page-price .footer-link-price,
    .page-faq .footer-link-faq,
    .page-blog .footer-link-blog {
      display: none;
    }

    @media (min-width: 900px) {
      .sp-only { display: none; }

      body { background: #fff; }

      .phone-frame {
        min-height: auto;
        background: #fff;
      }

      .lp-header {
        height: 64px;
        padding: 0 clamp(28px, 4vw, 56px);
      }

      .logo {
        height: 34px;
      }

      .logo img {
        height: 22px;
      }

      .site-top-link {
        font-size: 13px;
      }

      .hero {
        height: 440px;
      }

      .hero::before {
        background-image: url("../assets/hero-pc.webp");
        background-size: cover;
        background-position: center center;
      }

      .hero::after {
        background:
          linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 31%, rgba(255,255,255,.38) 54%, rgba(255,255,255,0) 78%);
      }

      .hero-copy {
        top: 86px;
        left: clamp(44px, 6vw, 86px);
        right: auto;
        width: 430px;
        padding: 0;
        text-align: left;
      }

      .eyebrow {
        position: relative;
        margin-bottom: 24px;
        font-size: 13px;
      }

      .eyebrow::after {
        content: "";
        display: block;
        width: 42px;
        height: 2px;
        margin-top: 14px;
        background: var(--blue);
        border-radius: 999px;
      }

      .hero h1 {
        margin-bottom: 18px;
        font-size: 38px;
        line-height: 1.55;
        letter-spacing: .04em;
      }

      .lead {
        margin-bottom: 28px;
        font-size: 16px;
        line-height: 1.8;
      }

      .main-cta {
        width: 270px;
        height: 52px;
        font-size: 14px;
      }

      .work-section,
      .state-section {
        max-width: 1180px;
        margin: 0 auto;
        padding-left: 28px;
        padding-right: 28px;
      }

      .work-section {
        padding-top: 44px;
      }

      .work-title {
        margin-bottom: 28px;
        font-size: 22px;
      }

      .work-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }

      .work-card {
        min-height: 260px;
        border-radius: 14px;
      }

      .work-card::before {
        height: 165px;
        bottom: auto;
        background-position: center;
      }

      .work-card::after {
        background: linear-gradient(180deg, rgba(255,255,255,0) 0 165px, #fff 165px 100%);
      }

      .work-content {
        display: block;
        min-height: 260px;
        padding: 188px 24px 22px;
      }

      .work-left {
        position: absolute;
        top: 18px;
        left: 18px;
        display: block;
      }

      .work-number {
        width: 38px;
        height: 38px;
        background: #fff;
        box-shadow: 0 8px 20px rgba(8,31,63,.10);
      }

      .work-icon-box {
        display: none;
      }

      .work-text h2 {
        font-size: 18px;
        line-height: 1.5;
      }

      .state-section {
        padding-top: 48px;
      }

      .state-title {
        margin-bottom: 26px;
        font-size: 22px;
      }

      .state-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
      }

      .state-card {
        display: block;
        min-height: 300px;
        overflow: visible;
        border-radius: 14px;
      }

      .state-image {
        position: absolute;
        inset: 0;
        border-radius: 14px;
        background-size: cover;
        background-position: center;
        z-index: 0;
      }

      .state-card::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        border-radius: 14px;
        background: linear-gradient(180deg, rgba(255,255,255,.84) 0%, rgba(255,255,255,.24) 44%, rgba(255,255,255,0) 100%);
        pointer-events: none;
      }

      .state-text {
        position: absolute;
        top: 30px;
        left: 32px;
        right: 24px;
        z-index: 2;
        padding: 0;
      }

      .state-text h2 {
        margin-bottom: 8px;
        font-size: 28px;
      }

      .state-text p {
        font-size: 14px;
      }

      .state-badge {
        position: absolute;
        left: 22px;
        right: 22px;
        bottom: 16px;
        z-index: 3;
        min-height: 48px;
        display: flex;
        align-items: center;
        margin: 0;
        padding: 0 16px 0 44px;
        border-radius: 10px;
        background: rgba(255,255,255,.94);
        box-shadow: 0 12px 28px rgba(8,31,63,.12);
        color: var(--navy);
        font-size: 13px;
        line-height: 1.5;
        font-weight: 900;
        letter-spacing: .04em;
        backdrop-filter: blur(8px);
      }

      .state-badge::before {
        content: "✓";
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        color: #fff;
        font-size: 10px;
        line-height: 1;
        font-weight: 900;
      }

      .state-card--reboot .state-badge::before { background: var(--blue); }
      .state-card--maintenance .state-badge::before { background: var(--teal); }
      .state-card--boost .state-badge::before { background: var(--orange); }

      .bottom-cta {
        position: relative;
        max-width: 1120px;
        margin: 44px auto 52px;
        padding: 0 34px;
        min-height: 102px;
        border-radius: 16px;
        display: grid;
        grid-template-columns: 1fr 360px;
        align-items: center;
        gap: 28px;
        overflow: hidden;
        background: linear-gradient(90deg, #1a63d2 0%, #12a9cf 100%);
      }

      .bottom-cta::before {
        content: "";
        position: absolute;
        left: -10px;
        top: 0;
        bottom: 0;
        width: 220px;
        background:
          radial-gradient(circle at left center, rgba(255,255,255,.18) 0 36%, transparent 37%),
          linear-gradient(135deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 70%);
        opacity: .7;
        pointer-events: none;
      }

      .bottom-cta p {
        position: relative;
        margin: 0;
        padding-left: 74px;
        color: #fff;
        font-size: 18px;
        line-height: 1.7;
      }

      .bottom-cta p::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 46px;
        height: 46px;
        border-radius: 999px;
        background: rgba(255,255,255,.18);
        backdrop-filter: blur(4px);
      }

      .bottom-cta p::after {
        content: "";
        position: absolute;
        left: 13px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2' ry='2'/%3E%3Cline x1='16' y1='3' x2='16' y2='7'/%3E%3Cline x1='8' y1='3' x2='8' y2='7'/%3E%3Cline x1='3' y1='11' x2='21' y2='11'/%3E%3C/svg%3E");
      }

      .bottom-cta .white-cta {
        position: relative;
        justify-self: end;
        width: 100%;
        max-width: 360px;
        height: 48px;
        border-radius: 999px;
        font-size: 14px;
        box-shadow: 0 10px 26px rgba(0,0,0,.12);
      }

      .lp-footer {
        padding: 34px 28px 38px;
      }
    }



/* ===== Work cards refinement ===== */
@media (min-width: 900px) {
  .work-title {
    margin-bottom: 28px;
    font-size: 22px;
  }

  .work-title::after {
    width: 64px;
    margin-top: 10px;
  }

  .work-card {
    min-height: 246px;
    border-radius: 14px;
  }

  .work-card::before {
    height: 162px;
    bottom: auto;
    background-position: center;
  }

  .work-card::after {
    background: linear-gradient(180deg, rgba(255,255,255,0) 0 162px, #fff 162px 100%);
  }

  .work-content {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 14px;
    align-items: center;
    min-height: 246px;
    padding: 178px 24px 18px;
  }

  .work-number {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 38px;
    height: 38px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(8,31,63,.10);
  }

  .work-icon-box {
    display: block;
    width: 38px;
    height: 38px;
  }

  .work-text h2 {
    font-size: 18px;
    line-height: 1.45;
  }
}


/* ===== Bottom CTA: match Upplabo size ===== */
.bottom-cta {
  margin-top: 36px;
  padding: 34px 20px 36px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #0057c8 0%, #00a7c8 100%);
}

.bottom-cta p {
  margin: 0 0 18px;
  color: #fff;
  font-size: 22px;
  line-height: 1.65;
  font-weight: 900;
  letter-spacing: .06em;
}

.bottom-cta .white-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(100%, 300px);
  height: 52px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(0,0,0,.16);
}

@media (min-width: 900px) {
  .bottom-cta {
    position: relative;
    max-width: 1120px;
    margin: 48px auto 52px;
    padding: 0 34px;
    min-height: 102px;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr 360px;
    align-items: center;
    gap: 28px;
    overflow: hidden;
    background: linear-gradient(90deg, #1a63d2 0%, #12a9cf 100%);
  }

  .bottom-cta::before {
    content: none;
  }

  .bottom-cta p {
    position: relative;
    margin: 0;
    padding-left: 0;
    color: #fff;
    font-size: 22px;
    line-height: 1.65;
    text-align: left;
  }

  .bottom-cta p::before,
  .bottom-cta p::after {
    content: none;
  }

  .bottom-cta .white-cta {
    position: relative;
    justify-self: end;
    width: 100%;
    max-width: 360px;
    height: 48px;
    border-radius: 999px;
    font-size: 14px;
    box-shadow: 0 10px 26px rgba(0,0,0,.12);
  }
}

/* ===== Common Footer ===== */
/* 既存のfooter CSSより後ろに追記してください。style.cssを丸ごと上書きしないこと。 */

.common-footer {
  padding: 32px 22px 34px;
  background: #f8fbff;
  border-top: 1px solid rgba(232, 238, 247, .9);
}

.common-footer .footer-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.common-footer .footer-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.common-footer .footer-brand img {
  display: block;
  width: auto;
  height: 24px;
}

.common-footer .footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 26px;
}

.common-footer .footer-group {
  display: grid;
  gap: 10px;
  align-content: start;
}

.common-footer .footer-heading {
  margin: 0 0 2px;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: .08em;
}

.common-footer .footer-group a {
  color: #516173;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 800;
  letter-spacing: .04em;
}

.common-footer .footer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 300px);
  height: 48px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: var(--green, #16a34a);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(22, 163, 74, .24);
}

.common-footer .footer-cta::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.common-footer .footer-copy {
  margin: 0;
  color: #7b8794;
  text-align: center;
  font-size: 10px;
  line-height: 1.6;
  font-weight: 700;
}

@media (min-width: 900px) {
  .common-footer {
    padding: 42px 28px 44px;
  }

  .common-footer .footer-inner {
    display: grid;
    grid-template-columns: 180px 1fr 300px;
    grid-template-areas:
      "brand nav cta"
      "copy copy copy";
    align-items: start;
    column-gap: 42px;
    row-gap: 26px;
  }

  .common-footer .footer-brand {
    grid-area: brand;
    justify-content: flex-start;
    margin-bottom: 0;
    padding-top: 2px;
  }

  .common-footer .footer-brand img {
    height: 26px;
  }

  .common-footer .footer-nav {
    grid-area: nav;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 34px;
    margin-bottom: 0;
  }

  .common-footer .footer-heading {
    font-size: 14px;
  }

  .common-footer .footer-group a {
    font-size: 13px;
  }

  .common-footer .footer-cta {
    grid-area: cta;
    width: 300px;
    height: 50px;
    margin: 0;
    justify-self: end;
    font-size: 14px;
  }

  .common-footer .footer-copy {
    grid-area: copy;
    text-align: center;
  }
}

/* ===== Voice Section refined ===== */
/* 各LPの style.css の末尾に追記してください。前回の Voice Section CSS より後ろに貼れば上書きされます。 */

.voice-section {
  padding: 38px 18px 0;
  background: #fff;
}

.voice-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.voice-title {
  display: block;
  margin: 0 0 8px;
  color: var(--navy, #081f3f);
  text-align: center;
  font-size: 21px;
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: .08em;
}

.voice-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin: 9px auto 0;
  background: var(--teal, #00a7a7);
  border-radius: 999px;
}

.voice-lead {
  margin: 0 auto 18px;
  color: #516173;
  text-align: center;
  font-size: 11.5px;
  line-height: 1.8;
  font-weight: 800;
}

.voice-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.voice-card {
  position: relative;
  padding: 18px 16px 16px;
  border: 1px solid rgba(232, 238, 247, .95);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(8, 31, 63, .08);
}

.voice-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin: 0 0 12px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef9fb;
  color: var(--teal, #00a7a7);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: .06em;
}

.voice-label--student {
  background: #eef6ff;
  color: var(--blue, #0057c8);
}

.voice-card h3 {
  position: relative;
  margin: 0 0 12px;
  padding-left: 20px;
  color: var(--navy, #081f3f);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 900;
  letter-spacing: .04em;
}

.voice-card h3::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -7px;
  color: var(--teal, #00a7a7);
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.voice-text {
  margin: 0;
  color: #344256;
  font-size: 11.5px;
  line-height: 1.85;
  font-weight: 800;
}

.voice-meta {
  margin: 14px 0 0;
  padding-top: 11px;
  border-top: 1px dashed rgba(0, 87, 200, .18);
  color: #7b8794;
  font-size: 10.5px;
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: .06em;
}

@media (min-width: 900px) {
  .voice-section {
    padding: 54px 28px 0;
  }

  .voice-title {
    margin-bottom: 10px;
    font-size: 25px;
  }

  .voice-title::after {
    width: 64px;
    margin-top: 10px;
  }

  .voice-lead {
    margin-bottom: 26px;
    font-size: 13px;
  }

  .voice-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .voice-card {
    padding: 24px 24px 22px;
  }

  .voice-label {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .voice-card h3 {
    margin-bottom: 16px;
    padding-left: 24px;
    font-size: 20px;
    line-height: 1.55;
  }

  .voice-card h3::before {
    top: -8px;
    font-size: 36px;
  }

  .voice-text {
    font-size: 13px;
  }

  .voice-meta {
    margin-top: 18px;
    padding-top: 13px;
    font-size: 11px;
  }
}
