/*
Theme Name: Taesan Tech Pages
Theme URI: https://example.com/
Author: Taesan Tech
Description: preview 폴더 디자인을 유지하면서 네비게이션 개별 페이지를 지원하는 태산테크(주) 워드프레스 테마입니다.
Version: 1.0.3
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: taesan-tech
*/

﻿@font-face {
  font-family: "Wanted Sans";
  src: url("assets/fonts/WantedSans-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Wanted Sans";
  src: url("assets/fonts/WantedSans-Bold.ttf") format("truetype");
  font-weight: 700;
}

:root {
  --primary: #123f6d;
  --primary-deep: #0d2e50;
  --secondary: #1e73be;
  --accent: #4ba3e3;
  --ink: #17212b;
  --muted: #647282;
  --line: #dde6ef;
  --surface: #f5f8fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(13, 46, 80, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Wanted Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  word-break: keep-all;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--primary);
  border-radius: 4px;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 82px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(221, 230, 239, 0.9);
  transition: box-shadow 0.2s ease, height 0.2s ease;
}

.site-header.is-scrolled {
  height: 72px;
  box-shadow: 0 8px 28px rgba(13, 46, 80, 0.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.brand-text strong {
  color: var(--primary);
  font-size: 24px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #344454;
  font-weight: 700;
}

.site-nav a {
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover {
  color: var(--secondary);
}

.nav-cta {
  padding: 10px 18px;
  color: var(--white) !important;
  background: var(--primary);
  border-radius: 4px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--primary);
}

.hero {
  position: relative;
  min-height: 720px;
  margin-top: 82px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/img/hero-bg.png");
  background-size: cover;
  background-position: center;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(13, 46, 80, 0.84), rgba(18, 63, 109, 0.58) 52%, rgba(18, 63, 109, 0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-block;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 36px;
  color: #e8eef5;
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--primary);
}

.hero .button-primary {
  color: var(--primary);
  background: var(--white);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

.section {
  padding: 100px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 72px;
  align-items: center;
}

.section h2,
.contact-section h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.22;
}

.section p,
.contact-section p {
  color: var(--muted);
  font-size: 18px;
}

.image-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.capability-band {
  background: var(--surface);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head p:last-child {
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  min-height: 250px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(13, 46, 80, 0.05);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--primary);
  border-radius: 50%;
  font-weight: 800;
}

.feature-card h3,
.service-item h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.35;
}

.feature-card p {
  margin: 0;
  font-size: 16px;
}

.service-list {
  display: grid;
  gap: 64px;
}

.service-item {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.service-item:nth-child(even) img {
  order: 2;
}

.service-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-weight: 800;
}

.service-item p {
  margin: 0 0 22px;
}

.service-item ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-item li {
  padding: 12px 14px;
  color: #405163;
  background: var(--surface);
  border-radius: 4px;
  font-weight: 700;
}

.process {
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -22%, rgba(75, 163, 227, 0.14), transparent 48%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}

.process .section-kicker {
  color: var(--secondary);
}

.process h2 {
  color: var(--ink);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-grid li {
  position: relative;
  min-height: 310px;
  aspect-ratio: 4 / 5;
  padding: 32px;
  overflow: hidden;
  border: 1px solid rgba(18, 63, 109, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 251, 0.72));
  box-shadow:
    0 18px 42px rgba(13, 46, 80, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 1px 0 0 rgba(255, 255, 255, 0.7);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.process-grid li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.process-grid li:hover {
  transform: translateY(-8px);
  border-color: rgba(75, 163, 227, 0.28);
  background: linear-gradient(145deg, #ffffff, #f7fbff);
  box-shadow:
    0 26px 48px rgba(13, 46, 80, 0.16),
    0 0 42px rgba(75, 163, 227, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 1px 0 0 rgba(255, 255, 255, 0.9);
}

.process-grid li:hover::before {
  opacity: 0.7;
}

.process-grid strong {
  display: block;
  width: 100%;
  color: var(--accent);
  font-size: clamp(54px, 5.3vw, 68px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  transition: transform 0.35s ease, text-shadow 0.35s ease;
}

.process-grid strong::before {
  content: "Phase";
  display: block;
  width: 100%;
  margin-bottom: 20px;
  padding-top: 14px;
  color: rgba(23, 33, 43, 0.42);
  background: linear-gradient(90deg, rgba(18, 63, 109, 0.16), transparent 78%) top / 100% 1px no-repeat;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.process-grid li:hover strong {
  transform: scale(1.04);
  text-shadow: 0 0 24px rgba(75, 163, 227, 0.28);
}

.process-grid span {
  display: block;
  margin-top: 24px;
  font-size: 18px;
  font-weight: 800;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.portfolio-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(13, 46, 80, 0.06);
}

.portfolio-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.portfolio-grid div {
  display: grid;
  padding: 20px;
}

.portfolio-grid strong {
  font-size: 20px;
}

.portfolio-grid span {
  color: var(--muted);
}

.contact-section {
  padding: 100px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-section .section-kicker,
.contact-section h2,
.contact-section p {
  color: var(--white);
}

.contact-info {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
}

.contact-info div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-info dt {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.contact-info dd {
  margin: 0;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #344454;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #071f36;
}

.footer-inner {
  display: grid;
  gap: 10px;
}

.footer-logo {
  width: 140px;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 0;
}

.footer-note {
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 20px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 16px;
  }

  .nav-cta {
    text-align: center;
  }

  .split,
  .service-item,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-item:nth-child(even) img {
    order: 0;
  }

  .feature-grid,
  .process-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-item ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-text strong {
    font-size: 20px;
  }

  .brand-text span {
    font-size: 10px;
  }

  .hero {
    min-height: 620px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .section,
  .contact-section {
    padding: 72px 0;
  }

  .feature-grid,
  .process-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 22px;
  }
}


.site-nav .is-active {
  color: var(--primary);
}

.page-hero {
  position: relative;
  min-height: 400px;
  margin-top: 82px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--primary-deep);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 46, 80, 0.86), rgba(18, 63, 109, 0.62));
  z-index: 1;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.18;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: #e8eef5;
  font-size: 20px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.content-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(13, 46, 80, 0.05);
}

.content-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.content-card p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}


.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 56px;
}

.hero-text {
  min-width: 0;
}

.hero-visual {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(7, 31, 54, 0.36);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-visual figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  color: var(--white);
  background: rgba(13, 46, 80, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  backdrop-filter: blur(8px);
}

.hero-visual strong {
  font-size: 16px;
}

.hero-visual span {
  color: #e8eef5;
  font-size: 14px;
}

@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .hero-visual img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .hero-visual figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}


/* Hero text layout tuning */
.hero,
.page-hero {
  isolation: isolate;
}

.hero-content {
  min-height: calc(720px - 82px);
  padding-top: 54px;
  padding-bottom: 54px;
}

.hero-text {
  max-width: 720px;
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(36px, 4.6vw, 58px);
}

.hero-copy,
.page-hero p {
  max-width: 680px;
  overflow-wrap: anywhere;
}

.hero-copy {
  font-size: clamp(17px, 1.8vw, 20px);
}

.hero-visual {
  width: min(100%, 430px);
  justify-self: end;
}

.page-hero .eyebrow {
  max-width: 100%;
  white-space: normal;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
  }

  .hero-text,
  .hero h1,
  .hero-copy,
  .page-hero h1,
  .page-hero p {
    max-width: 100%;
  }

  .hero-visual {
    width: min(100%, 680px);
    justify-self: start;
  }

  .page-hero {
    min-height: 360px;
    padding-top: 44px;
    padding-bottom: 44px;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding-top: 40px;
    padding-bottom: 46px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.2;
  }

  .hero-copy,
  .page-hero p {
    font-size: 17px;
    line-height: 1.65;
  }

  .eyebrow {
    font-size: 12px;
    line-height: 1.35;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }
}


/* Page hero label/readability refinement */
.page-hero .eyebrow {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.35;
  white-space: normal;
}

.page-hero .eyebrow + h1 + p {
  max-width: 680px;
}

@media (max-width: 640px) {
  .page-hero .eyebrow {
    font-size: 12px;
  }
}


/* Landing hero visual removed */
.hero-content {
  display: block;
}

.hero-text {
  max-width: 820px;
}

.hero h1 {
  max-width: 860px;
}

.hero-copy {
  max-width: 700px;
}


.footer-contact {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
}


.process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-top: 0;
  margin-bottom: auto;
  color: var(--accent);
  background: linear-gradient(135deg, rgba(75, 163, 227, 0.18), rgba(75, 163, 227, 0.035));
  border: 1px solid rgba(75, 163, 227, 0.25);
  border-radius: 8px;
  box-shadow: 0 0 24px rgba(75, 163, 227, 0.12);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.process-grid li:hover .process-icon {
  transform: scale(1.05);
  border-color: rgba(75, 163, 227, 0.45);
  box-shadow: 0 0 32px rgba(75, 163, 227, 0.22);
}

.process-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.process-grid li > strong {
  margin-top: auto;
}

.process-grid li > span:last-child {
  margin-top: 14px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0;
}




@media (max-width: 980px) {
  .process-grid li {
    min-height: 285px;
    aspect-ratio: auto;
  }
}

@media (max-width: 640px) {
  .process-grid {
    gap: 18px;
  }

  .process-grid li {
    min-height: 250px;
    padding: 26px;
  }

  .process-grid strong {
    font-size: 52px;
  }

  .process-grid li > span:last-child {
    font-size: 19px;
  }
}



.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  color: var(--primary);
  background: #eef5fb;
  border: 1px solid rgba(30, 115, 190, 0.14);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
}

.credential-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.credential-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(18, 63, 109, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(13, 46, 80, 0.08);
}

.credential-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.credential-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(30, 115, 190, 0.12), rgba(75, 163, 227, 0.06));
  border: 1px solid rgba(30, 115, 190, 0.16);
  border-radius: 8px;
}

.credential-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.credential-card > span {
  display: block;
  margin-bottom: 8px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credential-card h3 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.3;
}

.credential-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.credential-card dl div {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(18, 63, 109, 0.09);
}

.credential-card dt,
.credential-card dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.credential-card dt {
  color: var(--muted);
  font-weight: 700;
}

.credential-card dd {
  color: #344454;
  font-weight: 800;
}

@media (max-width: 980px) {
  .credential-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .trust-strip {
    gap: 8px;
  }

  .trust-strip span {
    width: 100%;
    justify-content: center;
  }

  .credential-grid {
    grid-template-columns: 1fr;
  }

  .credential-card {
    min-height: 0;
    padding: 24px;
  }
}
