:root {
  --font-head: 'Unbounded', sans-serif;
  --font-body: 'Inter', sans-serif;
  --bg:     #f2f1ef;
  --black:  #0a0a0a;
  --red:    #e8192c;
  --gray:   #6b6b6b;
  --border: #d0cecc;
  --white:  #fff;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.content-wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  opacity: 0.35;
  flex-shrink: 0;
}

.global-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.global-grid__element {
    grid-column: 2/5;
}

.global-grid__2col {
    grid-column: 3/5;
}

.popup .popup__contents {
    margin-top: 120px;
}

@media screen and (max-width: 768px) {
    .popup .popup__contents {
        margin-top: 65px;
    }
}
