body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: var(--font-size-body-mobile);
  font-weight: 400;
  background-color: var(--main-color);
}
@media (min-width: 1024px) {
  body {
    font-size: var(--font-size-body-desktop);
  }
}

.web-demo-section {
  padding-block: 45px;
}

.title {
  margin-bottom: 12px;
  font-size: var(--font-size-title-mobile);
  font-weight: 600;
}
@media (min-width: 1024px) {
  .title {
    font-size: var(--font-size-title-desktop);
  }
}

.row {
  display: flex;
  justify-content: center;
}

.web-demo {
  width: 100%;
  padding: 40px 24px;
  text-align: center;
  background-color: #fffdf9;
  border-radius: 24px;
  box-shadow: 0 4px 20px 0 rgba(133, 85, 28, 0.25);
}
@media (min-width: 1024px) {
  .web-demo {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .web-demo {
    width: 1184px;
  }
}

.top-wrapper {
  position: relative;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.logo {
  width: 237px;
}
@media (min-width: 1024px) {
  .logo {
    width: 343px;
  }
}

.website-link {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end; /* Safari fix */
  gap: 10px;
}
@media (min-width: 1024px) {
  .website-link {
    position: absolute;
    right: 0;
    top: 0;
    margin-right: 40px;
    gap: 15px;
  }
}

.website-link .link {
  color: var(--main-color);
  text-decoration: none;
}

.website-link .chevron {
  width: 6px;
}
@media (min-width: 1024px) {
  .website-link .chevron {
    width: 10px;
  }
}

.demo-links-wrapper {
  display: flex;
  justify-content: flex-start; /* Safari prefers explicit keyword */
  flex-wrap: wrap;
  gap: 16px;
  max-width: 380px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .demo-links-wrapper {
    padding-inline: 20px;
    max-width: none;
  }
}
@media (min-width: 1200px) {
  .demo-links-wrapper {
    padding-inline: 80px;
  }
}

.demo-link {
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(50% - 8px);
  gap: 12px;
  max-width: calc(50% - 8px);
  padding: 16px 12px;
  color: var(--text-color);
  text-decoration: none;
  border: 2px solid var(--border-color);
  border-radius: 20px;
}
@media (min-width: 1024px) {
  .demo-link {
    flex: 1 1 calc(20% - 16px);
    padding: 20px 10px;
    max-width: none;
  }
}

.image-wrapper {
  display: flex;
  justify-content: center;
}

.image {
  max-width: 113px;
}
@media (min-width: 1024px) {
  .image {
    max-width: 100%;
    padding: 0 20px;
  }
}

.text {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

.mb-4 {
  margin-bottom: 28px;
}
@media (min-width: 1024px) {
  .mb-4 {
    margin-bottom: 46px;
  }
}

.link-muted {
  color: var(--text-muted-color);
  text-decoration: none;
}

br.md {
  display: none;
}
@media (min-width: 768px) {
  br.md {
    display: block;
  }
}
