/* GDV Tournament Directory — full-width branded section
   Outer .gdv-td = full bleed dark band
   Inner .gdv-td__inner = centered content (~1400px)
*/

/* Force any Elementor parent that contains the directory to full-bleed dark */
.elementor-section:has(.gdv-td),
.elementor-top-section:has(.gdv-td),
.elementor-inner-section:has(.gdv-td),
.e-con:has(.gdv-td),
.e-con-full:has(.gdv-td),
.e-con-boxed:has(.gdv-td) {
  width: 100% !important;
  max-width: 100% !important;
  background-color: #0a0a0a !important;
  background-image: linear-gradient(180deg, #0a0a0a 0%, #101010 45%, #0d0d0d 100%) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  box-shadow: none !important;
}

.elementor-section:has(.gdv-td) > .elementor-container,
.elementor-section:has(.gdv-td) .elementor-container.elementor-column-gap-default,
.elementor-section:has(.gdv-td) .elementor-container.elementor-column-gap-no,
.e-con:has(.gdv-td) > .e-con-inner,
.e-con:has(.gdv-td).e-con-boxed > .e-con-inner {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.elementor-section:has(.gdv-td) .elementor-column,
.elementor-section:has(.gdv-td) .elementor-widget-wrap,
.e-con:has(.gdv-td) .e-con,
.elementor-widget-shortcode:has(.gdv-td),
.elementor-widget-shortcode:has(.gdv-td) > .elementor-widget-container,
.elementor-shortcode:has(.gdv-td) {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Fight Elementor boxed widget constraints */
.elementor-widget-shortcode,
.elementor-widget-shortcode > .elementor-widget-container,
.elementor-shortcode,
.elementor-element.elementor-widget-shortcode {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.gdv-td {
  --gdv-bg: #0a0a0a;
  --gdv-card: #141414;
  --gdv-border: #2a2a2a;
  --gdv-border-hover: #4a4a4a;
  --gdv-red: #c8102e;
  --gdv-gold: #e8a33d;
  --gdv-green: #2fd06f;
  --gdv-text: #f4f4f4;
  --gdv-muted: #9ca3af;
  --gdv-meta: #c9c9c9;
  --gdv-input: #1c1c1c;
  --gdv-gap: 20px;
  --gdv-inner: 1440px;

  width: 100% !important;
  max-width: none !important;
  position: relative;
  left: auto;
  right: auto;
  margin: 0 !important;
  box-sizing: border-box;
  padding: 48px 0 52px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--gdv-text);
  background: linear-gradient(180deg, #0a0a0a 0%, #101010 45%, #0d0d0d 100%);
  display: block;
}

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

.gdv-td__inner {
  width: 100%;
  max-width: var(--gdv-inner);
  margin: 0 auto;
  padding: 0 28px;
  box-sizing: border-box;
}

.gdv-td__bar {
  background: var(--gdv-card);
  border: 1px solid var(--gdv-border);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 40px;
}

.gdv-td__search {
  flex: 2 1 260px;
  min-width: 180px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}

.gdv-td__search .gdv-td__icon {
  grid-area: 1 / 1;
  justify-self: start;
  align-self: center;
  margin-left: 16px;
  color: var(--gdv-red);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  pointer-events: none;
  z-index: 2;
}

.gdv-td__search .gdv-td__icon svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px;
  max-height: 18px;
  display: block;
  flex-shrink: 0;
}

.gdv-td__q,
.gdv-td__select select {
  width: 100%;
  border: 1px solid #2f2f2f;
  border-radius: 10px;
  padding: 14px 14px;
  font-size: 15px;
  font-family: inherit;
  font-weight: 500;
  background: var(--gdv-input);
  color: var(--gdv-text);
  box-sizing: border-box;
}

.gdv-td__q {
  grid-area: 1 / 1;
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  /* Keep placeholder clear of the search icon */
  padding: 14px 16px 14px 56px !important;
  -webkit-appearance: none;
  appearance: none;
}

.gdv-td__q::-webkit-search-decoration,
.gdv-td__q::-webkit-search-cancel-button,
.gdv-td__q::-webkit-search-results-button,
.gdv-td__q::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.gdv-td__q::placeholder {
  color: #8a8a8a;
  opacity: 1;
}

.gdv-td__q:focus,
.gdv-td__select select:focus {
  outline: none;
  border-color: var(--gdv-red);
}

.gdv-td__select {
  flex: 1 1 150px;
  min-width: 140px;
  display: block;
}

.gdv-td__select select option {
  background: var(--gdv-input);
  color: var(--gdv-text);
}

.gdv-td__head {
  text-align: center;
  margin: 0 0 32px;
}

.gdv-td__rule {
  width: 52px;
  height: 3px;
  background: var(--gdv-red);
  margin: 0 auto 16px;
}

.gdv-td__title,
.gdv-td h2.gdv-td__title,
.elementor-widget-shortcode .gdv-td h2.gdv-td__title,
.elementor .gdv-td .gdv-td__title {
  font-family: Anton, Impact, "Arial Narrow", sans-serif !important;
  font-weight: 400 !important;
  font-size: clamp(28px, 3.4vw, 36px) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: #ffffff !important;
  margin: 0 0 10px !important;
  line-height: 1.12 !important;
}

.gdv-td__sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--gdv-muted);
  margin: 0;
}

.gdv-td__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gdv-gap);
  align-items: start;
  justify-items: stretch;
  width: 100%;
}

.gdv-td__grid.is-center-tail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.gdv-td__grid.is-center-tail .gdv-td__card {
  flex: 0 1 calc((100% - (2 * var(--gdv-gap))) / 3);
  max-width: calc((100% - (2 * var(--gdv-gap))) / 3);
  width: 100%;
}

/* Landscape card — wider/shorter proportions */
.gdv-td__card {
  position: relative;
  background: var(--gdv-card);
  border: 1px solid var(--gdv-border);
  border-radius: 12px;
  padding: 20px 22px 0;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 0;
  max-width: 100%;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
  color: inherit;
}

.gdv-td__card:hover {
  border-color: var(--gdv-border-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.gdv-td__card-body {
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
  min-height: 0;
  text-decoration: none;
  color: inherit;
  cursor: default;
}

/* Card body, logo, and title are display-only — never clickable */
.gdv-td__card-body,
.gdv-td__logo,
.gdv-td__name,
.gdv-td__card-head {
  cursor: default;
  text-decoration: none;
}

.gdv-td__card-body a,
.gdv-td__logo a,
.gdv-td__name a {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: inherit;
}

.gdv-td__main {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
  min-width: 0;
  padding-bottom: 2px;
}

/* Logo column — compact landscape frame */
.gdv-td__logo {
  width: 120px;
  height: 110px;
  max-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.gdv-td__logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.gdv-td__logo img.is-fallback {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.88;
  background: transparent;
}

.gdv-td__card--completed .gdv-td__logo {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.05);
}

.gdv-td__card--completed .gdv-td__logo img.is-fallback {
  opacity: 0.72;
}

.gdv-td__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
}

/* Title + badge: badge on its own top row — never overlaps title */
.gdv-td__card-head {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin: 0 0 8px;
}

.gdv-td__badge {
  order: -1;
  align-self: flex-end;
  position: static;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 9px;
  border-radius: 5px;
  line-height: 1.2;
  background: transparent;
  border: 1px solid;
  white-space: nowrap;
  max-width: 100%;
}

.gdv-td__badge.is-open {
  color: var(--gdv-green);
  border-color: var(--gdv-green);
}

.gdv-td__badge.is-limited {
  color: var(--gdv-gold);
  border-color: var(--gdv-gold);
}

.gdv-td__badge.is-critical {
  color: #f0b35a;
  border-color: var(--gdv-red);
  background: rgba(200, 16, 46, 0.12);
}

.gdv-td__badge.is-soon,
.gdv-td__badge.is-closed,
.gdv-td__badge.is-completed {
  color: var(--gdv-muted);
  border-color: #4a4a4a;
  background: transparent;
}

.gdv-td__name {
  min-width: 0;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}

.gdv-td__name.is-long {
  font-size: 13.5px;
  line-height: 1.18;
}

.gdv-td__meta {
  font-size: 13px;
  font-weight: 500;
  color: var(--gdv-meta);
  margin: 0 0 6px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
  padding-right: 2px;
}

.gdv-td__meta span {
  min-width: 0;
  word-break: normal;
  overflow-wrap: break-word;
}

.gdv-td__meta--date span {
  white-space: nowrap;
}

.gdv-td__meta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  fill: none;
  stroke: var(--gdv-red);
  stroke-width: 2;
}

.gdv-td__loc-city {
  color: var(--gdv-gold);
  display: inline-block;
  margin-top: 2px;
}

.gdv-td__foot {
  margin-top: 14px;
  border-top: 1px solid #262626;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0 16px;
  box-sizing: border-box;
}

.gdv-td__foot.is-sport-only {
  justify-content: flex-start;
}

.gdv-td__sport {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gdv-text);
  min-width: 0;
}

.gdv-td__sport svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--gdv-red);
  stroke-width: 2;
}

.gdv-td__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 10px 14px;
  border-radius: 7px;
  text-decoration: none;
  border: 1px solid;
  line-height: 1;
  background: transparent;
  white-space: nowrap;
}

.gdv-td__cta.is-reserve {
  color: var(--gdv-gold);
  border-color: var(--gdv-gold);
  cursor: pointer;
}

.gdv-td__cta.is-reserve:hover {
  background: var(--gdv-gold);
  color: #0a0a0a;
}

.gdv-td__cta.is-idle,
.gdv-td__cta.is-closed {
  color: #d8d8d8;
  border-color: #4a4a4a;
  cursor: default;
  pointer-events: none;
}

.gdv-td__empty {
  grid-column: 1 / -1;
  padding: 36px 0;
  color: var(--gdv-muted);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.gdv-td__request {
  margin-top: 48px;
  background: var(--gdv-card);
  border: 1px solid var(--gdv-red);
  border-radius: 14px;
  padding: 0;
  display: block;
  overflow: hidden;
}

.gdv-td__request-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 26px 28px;
}

.gdv-td__request-btn {
  background: transparent;
  color: var(--gdv-gold);
  border: 1px solid var(--gdv-gold);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 20px;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: inherit;
}

.gdv-td__request-btn:hover {
  background: var(--gdv-gold);
  color: #0a0a0a;
}

.gdv-td__form-wrap {
  margin-top: 0;
  scroll-margin-top: 24px;
  border-top: 1px solid #2a2a2a;
  padding: 28px;
  background: #101010;
}

.gdv-td__form-wrap[hidden] {
  display: none !important;
}

.gdv-td__form-panel-head {
  position: relative;
}

.gdv-td__form-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  background: transparent;
  color: #c9c9c9;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.gdv-td__form-close:hover {
  border-color: #c8102e;
  color: #fff;
}

.gdv-td__form {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.gdv-td__request-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gdv-red);
  color: var(--gdv-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 700;
}

.gdv-td__request-text {
  flex: 1;
  min-width: 240px;
}

.gdv-td__request-text strong {
  display: block;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.gdv-td__request-text span {
  font-size: 14px;
  font-weight: 400;
  color: var(--gdv-muted);
}

.gdv-td__noscript {
  margin-top: 24px;
  color: var(--gdv-muted);
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

@media (max-width: 1100px) {
  .gdv-td__inner {
    padding: 0 22px;
  }
}

@media (max-width: 1023px) {
  .gdv-td__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gdv-td__grid.is-center-tail .gdv-td__card {
    flex: 0 1 calc((100% - var(--gdv-gap)) / 2);
    max-width: calc((100% - var(--gdv-gap)) / 2);
  }

  .gdv-td__main {
    grid-template-columns: 108px minmax(0, 1fr);
    column-gap: 16px;
  }

  .gdv-td__logo {
    width: 108px;
    height: 100px;
    max-height: 100px;
    padding: 9px;
  }

  .gdv-td__name {
    font-size: 15px;
  }

  .gdv-td__name.is-long {
    font-size: 13.5px;
  }
}

@media (max-width: 640px) {
  .gdv-td {
    padding: 28px 0 52px;
  }

  .gdv-td__inner {
    padding: 0 16px;
  }

  .gdv-td__grid {
    grid-template-columns: 1fr;
  }

  .gdv-td__grid.is-center-tail .gdv-td__card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .gdv-td__bar {
    flex-direction: column;
  }

  .gdv-td__search,
  .gdv-td__select {
    width: 100%;
    min-width: 0;
  }

  .gdv-td__request-btn {
    width: 100%;
    justify-content: center;
  }

  .gdv-td__q {
    padding: 14px 16px 14px 56px !important;
  }

  .gdv-td__search .gdv-td__icon {
    margin-left: 16px;
  }

  /* Badge above title (same as desktop flex stack) */
  .gdv-td__card-head {
    flex-direction: column;
    gap: 8px;
  }

  .gdv-td__badge {
    align-self: flex-start;
  }

  .gdv-td__main {
    grid-template-columns: 100px minmax(0, 1fr);
    column-gap: 14px;
    align-items: start;
  }

  .gdv-td__body {
    padding: 0;
    align-items: flex-start;
  }

  .gdv-td__logo {
    width: 100px;
    height: 92px;
    max-height: 92px;
  }

  .gdv-td__name {
    font-size: 15px;
  }

  .gdv-td__name.is-long {
    font-size: 13.5px;
  }

  .gdv-td__meta {
    justify-content: flex-start;
  }

  .gdv-td__meta--date span {
    white-space: normal;
  }

  .gdv-td__foot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding: 12px 0 14px;
  }

  .gdv-td__foot.is-sport-only {
    justify-content: flex-start;
  }

  .gdv-td__cta {
    width: auto;
    max-width: none;
    justify-content: center;
    padding: 9px 11px;
    font-size: 10px;
    letter-spacing: 0.04em;
  }
}

/* Very narrow phones: stack logo above text */
@media (max-width: 380px) {
  .gdv-td__main {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .gdv-td__logo {
    width: 100%;
    height: 96px;
    max-height: 96px;
  }

  .gdv-td__foot {
    flex-direction: column;
    align-items: stretch;
  }

  .gdv-td__cta {
    width: 100%;
    max-width: none;
  }
}

/* Completed section — social proof, more subdued than upcoming */
.gdv-td__completed {
  margin-top: 56px;
  margin-bottom: 0;
  padding-top: 4px;
  padding-bottom: 0;
  border-top: 1px solid #1f1f1f;
}

.gdv-td__head--completed {
  margin-top: 24px;
  margin-bottom: 8px;
}

.gdv-td__head--completed .gdv-td__sub {
  color: #8b9099;
  max-width: 640px;
}

.gdv-td__rule--muted {
  background: #3a3a3a;
}

.gdv-td__title--completed {
  color: #cfcfcf !important;
}

.gdv-td__grid--completed {
  margin-top: 20px;
}

.gdv-td__card--completed {
  background: #0c0c0c;
  border-color: #232323;
  box-shadow: none;
}

.gdv-td__card--completed:hover {
  border-color: #333;
  transform: none;
}

.gdv-td__card--completed .gdv-td__name {
  color: #e4e4e4;
}

.gdv-td__card--completed .gdv-td__meta {
  color: #8f949c;
}

.gdv-td__proof {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
}

.gdv-td__proof li {
  margin: 0;
  padding: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #b8bcc4;
  line-height: 1.35;
}

.gdv-td__proof li::before {
  content: "•";
  margin-right: 8px;
  color: #6b7280;
}

.gdv-td__cta.is-details {
  color: #bdbdbd;
  border-color: #4a4a4a;
  background: transparent;
}

.gdv-td__cta.is-details:hover {
  background: #1a1a1a;
  color: #f0f0f0;
  border-color: #666;
}

.gdv-td__more-wrap {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 0;
}

.gdv-td__more-btn {
  background: transparent;
  color: #c9c9c9;
  border: 1px solid #5a5a5a;
  border-radius: 8px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 22px;
  cursor: pointer;
}

.gdv-td__more-btn:hover {
  background: #1a1a1a;
  color: #fff;
  border-color: #888;
}

/* Request form */
.gdv-td__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.gdv-td__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #c9c9c9;
}

.gdv-td__field em {
  color: #c8102e;
  font-style: normal;
}

.gdv-td__field--full {
  grid-column: 1 / -1;
}

.gdv-td__field input,
.gdv-td__field textarea,
.gdv-td__field select {
  width: 100%;
  border: 1px solid #2f2f2f;
  border-radius: 10px;
  padding: 12px 14px;
  background: #1c1c1c;
  color: #f4f4f4;
  font: 500 14px/1.4 Inter, system-ui, sans-serif;
}

.gdv-td__field input:focus,
.gdv-td__field textarea:focus {
  outline: none;
  border-color: #c8102e;
}

.gdv-td__honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.gdv-td__form-submit {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e8a33d;
  color: #0a0a0a;
  border: 0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 24px;
  cursor: pointer;
}

.gdv-td__form-submit:hover {
  background: #ffc857;
}

.gdv-td__form-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.gdv-td__form-msg {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.gdv-td__form-msg.is-success {
  background: rgba(47, 208, 111, 0.12);
  border: 1px solid #2fd06f;
  color: #2fd06f;
}

.gdv-td__form-msg.is-error {
  background: rgba(200, 16, 46, 0.12);
  border: 1px solid #c8102e;
  color: #ff6b81;
}

.gdv-td__form-msg.is-info {
  background: rgba(232, 163, 61, 0.1);
  border: 1px solid #e8a33d;
  color: #e8a33d;
}

@media (max-width: 720px) {
  .gdv-td__form-grid {
    grid-template-columns: 1fr;
  }

  .gdv-td__form-submit {
    width: 100%;
  }
}
