:root {
  --gold: #c08f2d;
  --dark: #161412;
  --panel: #2b2a29;
  --muted: #bfbfc0;
  --frame: 1440px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--dark);
  color: #fff;
}

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

.digital {
  width: min(100%, var(--frame));
  margin: 0 auto;
  background: var(--dark);
  position: relative;
}

.digital-main {
  padding-top: 0;
}

.digital-brand {
  height: 598.377px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 25px;
}

.digital-brand__img {
  width: 522.633px;
  height: 598.377px;
  object-fit: contain;
}

.digital-links {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.digital-links__stack {
  width: min(889px, calc(100% - 48px));
  display: flex;
  flex-direction: column;
  gap: 35.422px;
  padding-bottom: 80px;
}

.link-card {
  width: 100%;
  max-width: 889px;
  min-height: 122.903px;
  height: auto;
  background: var(--panel);
  border: 0.683px solid var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  gap: 16px;
}

.link-card__left {
  display: flex;
  align-items: center;
  gap: 23.215px;
  flex: 1 1 auto;
  min-width: 0;
}

.link-card__icon {
  width: 65.824px;
  height: 66.489px;
  background: var(--gold);
  border-radius: 9.544px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-card__icon img {
  width: 32.774px;
  height: 32.774px;
  object-fit: contain;
}

.link-card__text {
  display: flex;
  flex-direction: column;
  gap: 2.731px;
  flex: 1 1 auto;
  min-width: 0;
}

.link-card__title {
  font-size: 24.58px;
  line-height: 1.2;
  text-transform: capitalize;
  color: #fff;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.link-card__sub {
  font-size: 16.39px;
  line-height: 1.2;
  text-transform: capitalize;
  color: var(--muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.link-card__chev {
  width: 39.602px;
  height: 39.602px;
  object-fit: contain;
  flex: 0 0 auto;
}

.digital-qr {
  position: relative;
  height: 637px;
  background: #2d2925;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 79.863px;
}

.digital-qr__panel {
  width: 889px;
  height: 477.465px;
  border: 1.063px solid var(--gold);
  border-radius: 7.964px;
  background: var(--dark);
  position: relative;
  text-align: center;
}

.digital-qr__top {
  position: absolute;
  left: 0;
  right: 0;
  top: 45.794px;
  margin: 0 auto;
  width: 429.612px;
  color: var(--muted);
  font-size: 19.141px;
  text-transform: capitalize;
}

.digital-qr__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 44.846px;
  margin: 0 auto;
  width: 589.122px;
  color: #fff;
  font-size: 19.141px;
  text-transform: capitalize;
}

.digital-qr__code {
  position: absolute;
  left: 0;
  right: 0;
  top: 113.489px;
  margin: 0 auto;
  width: 259.831px;
  height: 260.826px;
  background: var(--gold);
  border: 1.063px solid #585858;
  display: flex;
  align-items: center;
  justify-content: center;
}

.digital-qr__code-inner {
  width: 239.871px;
  height: 239.871px;
  background: #fff;
  border: 1.063px solid #585858;
  display: flex;
  align-items: center;
  justify-content: center;
}

.digital-qr__qr {
  width: 239.871px;
  height: 239.871px;
  display: block;
  object-fit: cover;
}

@media (max-width: 1100px) {
  .digital-links__stack {
    width: min(889px, calc(100% - 48px));
  }

  .link-card {
    width: 100%;
    gap: 16px;
  }

  .link-card__sub {
    width: auto;
  }

  .digital-qr__panel {
    width: min(889px, calc(100% - 48px));
  }
}

@media (max-width: 900px) {
  .digital-brand {
    height: auto;
    padding: 34px 0 10px;
  }

  .digital-brand__img {
    width: min(420px, 90vw);
    height: auto;
  }

  .digital-links__stack {
    padding-bottom: 56px;
  }
}

@media (max-width: 640px) {
  .link-card {
    height: auto;
    padding: 18px 18px;
    align-items: flex-start;
  }

  .link-card__icon {
    width: 56px;
    height: 56px;
  }

  .link-card__icon img {
    width: 28px;
    height: 28px;
  }

  .link-card__title {
    font-size: 18px;
  }

  .link-card__sub {
    font-size: 13px;
  }

  .link-card__chev {
    width: 28px;
    height: 28px;
  }

  .digital-qr {
    height: auto;
    padding: 48px 0 60px;
  }

  .digital-qr__panel {
    height: 420px;
  }

  .digital-qr__top {
    width: calc(100% - 48px);
    font-size: 14px;
    top: 22px;
  }

  .digital-qr__bottom {
    width: calc(100% - 48px);
    font-size: 14px;
    bottom: 20px;
  }

  .digital-qr__code {
    top: 86px;
    width: 220px;
    height: 220px;
  }

  .digital-qr__code-inner,
  .digital-qr__qr {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 420px) {
  .link-card {
    flex-wrap: wrap;
  }

  .link-card__chev {
    margin-left: auto;
  }
}
