/**
 * Type styles from Figma — DM Sans
 * Text styles 1 & 2 (smallest): weight 350
 */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,350;9..40,400&display=swap");

:root {
  --font-family-base: "DM Sans", system-ui, sans-serif;
}

/* Text style 1 — smallest (e.g. header placeholder) */
.text-1 {
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: 350;
  line-height: var(--size-header-height);
  letter-spacing: 0.12em;
  font-variation-settings: "opsz" 14;
  color: var(--color-tinted-neutral-6);
}

/* Text style 2 — company label */
.text-large-2,
.text-2 {
  font-family: var(--font-family-base);
  font-size: 24px;
  font-weight: 350;
  line-height: 1.1;
  letter-spacing: 0;
  font-variation-settings: "opsz" 14;
  color: var(--color-tinted-neutral-5);
}

.text-large-5 {
  font-family: var(--font-family-base);
  font-size: 41px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  font-variation-settings: "opsz" 14;
  color: var(--color-tinted-neutral-6);
}

.text-body {
  font-family: var(--font-family-base);
  font-size: 20px;
  font-weight: 350;
  line-height: 1.4;
  letter-spacing: 0;
  font-variation-settings: "opsz" 14;
  color: var(--color-tinted-neutral-6);
}

@media (max-width: 767px) {
  .text-1 {
    font-size: 12px;
  }

  .text-large-2,
  .text-2 {
    font-size: 20px;
  }

  .text-large-5 {
    font-size: 32px;
  }

  .text-body {
    font-size: 18px;
  }
}
