.page_works {
  --works-ink: #0b2344;
  --works-sub: #526b8b;
  --works-blue: #126de5;
  --works-line: #d6e8fa;
  --works-pale: #f3f9ff;

  main {
    color: var(--works-ink);
    background: #fff;
  }

  .kicker { color: var(--works-blue); }

  .link_ptn_6 {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--works-blue);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5em;
    text-decoration: underline;
    text-underline-offset: 6px;
    transition: color .2s, gap .2s;

    span { font-size: 18px; text-decoration: none; }
    &:hover, &:focus-visible { gap: 19px; color: #6153e7; }
    &:focus-visible { outline: 2px solid currentColor; outline-offset: 5px; }
  }

  .btn_ptn_6 {
    padding: 17px 27px;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-shrink: 0;
    color: #125ed7;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4em;
    box-shadow: 0 14px 30px #071a3855;
    transition: color .2s, background .2s, transform .2s;

    span { font-size: 18px; }
    &:hover, &:focus-visible { color: #fff; background: #2069e2; transform: translateY(-2px); }
    &:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }
    @media (max-width: 600px) { width: 100%; justify-content: center; font-size: 16px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .link_ptn_6, .btn_ptn_6 { transition: none; }
  }
}
