/* poppins-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/poppins-v24-latin-regular.woff2') format('woff2');
}

/* poppins-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/poppins-v24-latin-700.woff2') format('woff2');
}

:root {
  --color-bg: #f2ecea;
  --color-text: #201f1d;
  --color-muted: #605d5d;
  --color-accent: #0c58a9;
  --color-divider: #d7d3d3;
  --font: 'Poppins', system-ui, sans-serif;
}

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

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  /* text-underline-offset: 3px; */
}

a:hover {
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 37px 28px;
}

.content {
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.logo {
  width: 250px;
  max-width: 100%;
}

.kicker {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.title {
  margin: 0;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.05;
  text-wrap: balance;
}

@media screen and (min-width: 576px) {
  .title {
    font-size: 3rem;
  }
}

.lead {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  text-wrap: pretty;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
  padding: 9px 17px;
  border: 1px solid var(--color-divider);
  border-radius: 4px;
  color: var(--color-text);
  background: transparent;
}

.btn:hover {
  background: #eae9e9;
}

.btn-primary {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.hr {
  height: 1px;
  border: 0;
  margin: 14px 0;
  background: var(--color-divider);
}

.info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  line-height: 1.6;
}

.info-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
}