/* 회사소개 페이지 - Figma 1:8 */
:root {
  --color-primary: #1e4a6b;
  --color-dark: #080a0d;
  --color-text: #14181f;
  --color-text-muted: #5c6573;
  --color-text-light: #94a3b8;
  --color-border: #e8ecf1;
  --color-bg-light: #f9fafb;
  --color-bg-card: #f8fafc;
  --color-accent: #b45309;
  --color-accent-soft: #d97706;
  --font-sans:
    "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Noto Sans KR", "Pretendard", sans-serif;
  --font-en: "Inter", sans-serif;
  --page-max: 1920px;
  --content-max: 1440px;
  --inner-max: 1360px;
  --page-padding: clamp(24px, 6.25vw, 120px);
  --section-gap: 96px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

.about-page {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  overflow-x: hidden;
}

/* ========== HEADER (Figma 1:196 — 서브페이지) ========== */
.about-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #eef1f4;
  border-bottom: 1px solid #c5cdd8;
  padding: 12px var(--page-padding) 13px;
}

.about-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 34px;
}

.about-header__brand {
  flex-shrink: 0;
  width: 170px;
  height: 34px;
}

.about-header__logo {
  width: 170px;
  height: 34px;
  object-fit: cover;
  object-position: left center;
}

.about-header__menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #c5cdd8;
  border-radius: 8px;
  background: #eef1f4;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-header__menu-icon,
.about-header__menu-icon::before,
.about-header__menu-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background: #3d4754;
  border-radius: 1px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}

.about-header__menu-icon {
  position: relative;
}

.about-header__menu-icon::before,
.about-header__menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.about-header__menu-icon::before {
  top: -6px;
}

.about-header__menu-icon::after {
  top: 6px;
}

.about-header__menu-btn[aria-expanded="true"] .about-header__menu-icon {
  background: transparent;
}

.about-header__menu-btn[aria-expanded="true"] .about-header__menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.about-header__menu-btn[aria-expanded="true"] .about-header__menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.about-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.about-header__nav a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  color: #3d4754;
  letter-spacing: 0.78px;
  text-transform: uppercase;
  line-height: normal;
  white-space: nowrap;
  transition:
    color 0.2s,
    opacity 0.2s;
}

.about-header__nav a:hover {
  opacity: 0.75;
}

.about-header__nav a.is-active {
  color: #3d4754;
  position: relative;
}

.about-header__nav a.is-active::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: #3d4754;
}

.ceo-download-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 0;
  padding-bottom: 20px;
}
.ceo-download-container a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background: #1e4a6b;
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

/* ========== HERO (Figma 1:187) ========== */
.about-hero {
  width: 100%;
  background: #fff;
}

.about-hero__intro {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
  max-width: 1310px;
  margin: 0 auto;
  padding: 64px 24px 46px;
}

.about-hero__title {
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 700;
  color: #000;
  line-height: 1.5;
  letter-spacing: 0;
}

.about-hero__desc {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.72);
  line-height: 30.6px;
  letter-spacing: 0.16px;
}

.about-hero__banner {
  position: relative;
  width: 100%;
  height: 360px;
  background: #f4f4f4;
  overflow: hidden;
}

.about-hero__img {
  position: absolute;
  left: 50%;
  top: -265.5px;
  width: 1962px;
  max-width: none;
  height: 981px;
  transform: translateX(calc(-50% - 10.5px));
  object-fit: cover;
  pointer-events: none;
}

/* ========== MAIN ========== */
.about-main {
  width: 100%;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 23px;
}

.section-eyebrow--left {
  justify-content: flex-start;
}

.section-eyebrow__line {
  width: 48px;
  height: 2px;
  background: #222;
  flex-shrink: 0;
}

.section-eyebrow__text {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 900;
  color: #222;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.5;
}

/* ========== CEO ========== */
.ceo {
  padding: var(--section-gap) var(--page-padding) 128px;
}

.ceo__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.ceo__intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 80px;
}

.ceo__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  color: #222;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.ceo__greeting {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
}

.ceo__body {
  display: grid;
  /*grid-template-columns: minmax(280px, 648fr) minmax(280px, 648fr);*/
  gap: 64px;
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 40px;
}
.ceo__portrait-wrap {
  display: none !important;
}

.ceo__portrait-wrap {
  position: relative;
}

.ceo__portrait-glow {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: rgba(30, 74, 107, 0.08);
  border-radius: 50%;
  filter: blur(40px);
}

.ceo__portrait {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.ceo__portrait img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center top;
}

.ceo__message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 16px;
}

.ceo__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ceo__text p {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: #222;
  line-height: 1.65;
}

.ceo__signature {
  margin-top: 40px;
  padding: 48px 0 0;
  border-top: 1px solid var(--color-border);
}

.ceo__signature-en {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: #666;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ceo__signature-row {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.ceo__signature-role {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
}

.ceo__signature-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 40px);
  font-weight: 900;
  color: #000;
  letter-spacing: 0.35em;
  line-height: 1.2;
}

/* ========== PHILOSOPHY (Figma 1:53) ========== */
.philosophy {
  padding: 128px var(--page-padding) var(--section-gap);
  background: #fff;
}

.philosophy__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 40px;
}

.philosophy__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23.2px;
  max-width: 706.11px;
  margin: 0 auto 96px;
  text-align: center;
}

.philosophy__eyebrow {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  color: #222;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 21px;
}

.philosophy__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 42px);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: 0;
}

.philosophy__title-line {
  display: block;
}

.philosophy__title-line + .philosophy__title-line {
  margin-top: 0.12em;
}

.philosophy__title-accent--warm {
}

.philosophy__title-accent--primary {
}

.philosophy__title-accent--muted {
}

.philosophy__divider {
  display: block;
  width: 96px;
  height: 2px;
  background: #222;
}

.philosophy__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  height: 520px;
  width: 100%;
}

.philosophy__stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  height: 100%;
}

.philosophy-card {
  position: relative;
  overflow: hidden;
}

.philosophy-card--primary {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 48px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 40px;
}

.philosophy-card--outline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 245px;
  padding: 40px;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 40px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.philosophy-card--dark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 243px;
  padding: 40px;
  background: #1e4a6b;
  border-radius: 40px;
}

.philosophy-card__gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
}

.philosophy-card__number {
  position: absolute;
  top: 32px;
  right: 48px;
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 900;
  color: #f1f5f9;
  line-height: 100px;
  letter-spacing: 1.07px;
  pointer-events: none;
  user-select: none;
}

.philosophy-card__number--sm {
  top: 24px;
  right: 40px;
  font-size: 60px;
  line-height: 60px;
  letter-spacing: 0.82px;
  color: #f8fafc;
}

.philosophy-card__number--light {
  color: rgba(255, 255, 255, 0.1);
}

.philosophy-card__content {
  display: flex;
  flex-direction: column;
  gap: 23.3px;
  position: relative;
  z-index: 1;
}

.philosophy-card__head {
  padding-bottom: 16px;
  position: relative;
  z-index: 1;
}

.philosophy-card__icon-wrap {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 16px;
}

.philosophy-card__icon-wrap--partner {
  width: 56px;
  height: 56px;
  background: #fffbeb;
  border: 1px solid #fef3c7;
  border-radius: 12px;
}

.philosophy-card__icon-wrap--glass {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 12px;
}

/* Figma: 1:68=40px, 1:87=30px, 1:105=28×20px — 고정 크기·비율 유지 */
.philosophy-card__icon {
  display: block;
  flex-shrink: 0;
  max-width: none;
  object-fit: contain;
}

.philosophy-card__icon--people {
  width: 40px;
  height: 40px;
}

.philosophy-card__icon--partner {
  width: 30px;
  height: 30px;
}

.philosophy-card__icon--growth {
  width: 28px;
  height: 20px;
}

.philosophy-card__row-head {
  display: flex;
  align-items: center;
  gap: 24px;
}

.philosophy-card__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: #0a1128;
  line-height: 48px;
  padding-top: 8.7px;
}

.philosophy-card__title--sm {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  padding-top: 0;
  letter-spacing: 0.047px;
}

.philosophy-card__title--light {
  color: #fff;
}

.philosophy-card__desc {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  color: #64748b;
  line-height: 29.25px;
  letter-spacing: 0.035px;
  max-width: 448px;
}

.philosophy-card__desc--sm {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0;
  max-width: none;
  position: relative;
  z-index: 1;
}

.philosophy-card__desc--light {
  color: rgba(255, 255, 255, 0.8);
}

.philosophy-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  height: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.philosophy-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #1e4a6b;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  line-height: 19.5px;
  letter-spacing: 0.06px;
  white-space: nowrap;
}

/* ========== HISTORY (Figma 1:111, timeline 1:123) ========== */
.history {
  position: relative;
  padding: 120px var(--page-padding) 64px;
  background: #fff;
  overflow: hidden;
}

.history__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.history__glow--top {
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: rgba(30, 74, 107, 0.05);
  filter: blur(50px);
}

.history__glow--bottom {
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: rgba(180, 83, 9, 0.05);
  filter: blur(40px);
}

.history__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.history__header {
  display: flex;
  flex-direction: column;
  gap: 23.2px;
  align-items: flex-start;
  width: 100%;
}

.history__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
}

.history__eyebrow-line {
  width: 48px;
  height: 2px;
  background: #1e4a6b;
  flex-shrink: 0;
}

.history__eyebrow-text {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 900;
  color: #1e4a6b;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 22.5px;
}

.history__title {
  font-family: var(--font-sans);
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 900;
  color: #111;
  line-height: 62.4px;
  letter-spacing: 0;
}

.history__desc {
  max-width: 670px;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  color: #64748b;
  line-height: 28.8px;
}

.timeline {
  list-style: none;
  width: 100%;
  border-left: 2px solid #f3f4f6;
  padding: 40px 0 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline__item {
  position: relative;
  padding-left: 48px;
}

.timeline__row {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  width: 100%;
}

.timeline__marker {
  position: absolute;
  left: -9px;
  top: 16px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #d1d5db;
  border: 3px solid #fff;
  box-sizing: border-box;
  pointer-events: none;
}

.timeline__marker--active {
  left: -11px;
  top: 27px;
  width: 20px;
  height: 20px;
  background: #1e4a6b;
  border-width: 4px;
  box-shadow: 0 0 15px rgba(30, 74, 107, 0.3);
}

.timeline__marker--origin {
  background: rgba(180, 83, 9, 0.4);
}

.timeline__date {
  flex-shrink: 0;
  width: 120px;
  padding-top: 4px;
  font-family: var(--font-sans);
  letter-spacing: -2px;
}

.timeline__date--featured {
  font-size: 32px;
  font-weight: 900;
  color: #111;
  line-height: 63px;
}

.timeline__date--muted {
  font-size: 36px;
  font-weight: 700;
  color: #94a3b8;
  line-height: 54px;
}

.timeline__date--origin {
  font-size: 32px;
  font-weight: 700;
  color: #cbd5e1;
  line-height: 48px;
}

.timeline__card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background: #f8f9fa;
  border: 1px solid #f3f4f6;
  border-radius: 32px;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.03);
}

.timeline__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline__body--origin {
  opacity: 0.8;
}

.timeline__card-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.timeline__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.timeline__icon--cert {
  width: 28px;
  height: 20px;
}

.timeline__icon--partner,
.timeline__icon--quality {
  width: 24px;
  height: 24px;
  opacity: 0.8;
}

.timeline__icon-img {
  display: block;
  max-width: none;
  object-fit: contain;
}

.timeline__icon-img--cert {
  width: 24.59px;
  height: 16.89px;
}

.timeline__icon--partner .timeline__icon-img,
.timeline__icon--quality .timeline__icon-img {
  width: 24px;
  height: 24px;
}

.timeline__card-title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: #111;
  line-height: 39px;
}

.timeline__item:not(.timeline__item--featured) .timeline__card-title {
  color: #333;
}

.timeline__item:nth-child(2) .timeline__card-title {
  letter-spacing: 0.0508px;
}

.timeline__item:nth-child(3) .timeline__card-title {
  letter-spacing: 0.0254px;
}

.timeline__card-title--plain {
  margin: 0;
}

.timeline__card-desc {
  max-width: 800px;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 300;
  color: #64748b;
  line-height: 27.2px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .ceo__body {
    padding: 0;
  }

  .philosophy__inner {
    padding: 0;
  }
}

@media (max-width: 1024px) {
  .ceo__body {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .philosophy-card__tags {
    display: none;
  }

  .ceo__portrait img {
    min-height: 420px;
  }

  .philosophy__grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .philosophy__stack {
    height: auto;
  }

  .philosophy-card--primary {
    height: auto;
    min-height: 480px;
  }

  .philosophy-card--outline,
  .philosophy-card--dark {
    height: auto;
    min-height: 200px;
  }

  .history__inner {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .about-header__menu-btn {
    display: flex;
  }
  .ceo__signature {
    margin-top: 20px;
    padding-top: 20px;
  }
  .history__title {
    line-height: 1.2em;
  }

  .about-header__nav {
    position: fixed;
    top: 59px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px;
    background: #eef1f4;
    border-top: 1px solid #c5cdd8;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
  }

  .about-header__nav.is-open {
    transform: translateX(0);
  }

  .about-header__nav a {
    padding: 16px 0;
    font-size: 14px;
    border-bottom: 1px solid #c5cdd8;
  }

  .about-hero__intro {
    padding: 40px 24px 32px;
  }

  .about-hero__title {
    font-size: clamp(28px, 6vw, 36px);
  }

  .about-hero__desc {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.1px;
  }

  .about-hero__banner {
    height: 240px;
  }

  .about-hero__img {
    top: -180px;
    width: 140%;
    min-width: 800px;
    height: auto;
    min-height: 600px;
    transform: translateX(-50%);
  }

  .ceo {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .ceo__intro {
    margin-bottom: 48px;
  }

  .philosophy {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .philosophy__header {
    margin-bottom: 48px;
  }

  .philosophy-card--primary {
    padding: 32px 24px;
  }

  .philosophy-card--outline,
  .philosophy-card--dark {
    padding: 32px 24px;
    min-height: auto;
  }

  .philosophy-card__number {
    font-size: 72px;
    line-height: 72px;
    right: 24px;
    top: 24px;
  }

  .philosophy-card__number--sm {
    font-size: 48px;
    line-height: 48px;
  }

  .history {
    padding-top: 64px;
    padding-bottom: 48px;
  }

  .history__inner {
    padding: 0;
    gap: 20px;
  }

  .timeline {
    gap: 48px;
    padding: 32px 0 48px;
  }

  .timeline__item {
    padding-left: 0;
  }

  .timeline__row {
    flex-direction: column;
    gap: 10px;
  }
  .timeline__marker {
    display: none;
  }
  .timeline {
    border-left: 0;
  }

  .timeline__date {
    width: 100%;
  }

  .timeline__date--featured {
    font-size: 32px;
    line-height: 1.3;
  }

  .timeline__date--muted {
    font-size: 28px;
    line-height: 1.3;
  }

  .timeline__date--origin {
    font-size: 24px;
    line-height: 1.3;
  }

  .timeline__marker {
    left: -25px;
  }

  .timeline__marker--active {
    left: -27px;
  }

  .timeline__card {
    padding: 15px;
    border-radius: 12px;
  }

  .timeline__card-title {
    font-size: 18px;
    line-height: 1.35;
  }

  .timeline__card-desc {
    font-size: 16px;
    line-height: 1.65;
  }

  .ceo__signature-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .ceo__signature-name {
    letter-spacing: 0.2em;
  }
}

@media (max-width: 480px) {
  .philosophy__title {
    font-size: 22px;
  }

  .philosophy-card__number {
    font-size: 56px;
    line-height: 56px;
  }

  .philosophy-card__number--sm {
    font-size: 40px;
    line-height: 40px;
  }

  .philosophy-card__title {
    font-size: 26px;
    line-height: 1.35;
  }
}
