/* TGWV Page Builder — frontend (Flatsome-inspired layout) */
/* Breakpoints: lg >= 1200px | md 768px–1199px | sm < 768px */
:root,
.tgwv-page-builder-output {
  padding-left: 0;
  padding-right: 0;
}
.site-container,
.site-container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}

.tgwv-page-builder-output {
  width: 100%;
  overflow-x: clip;
}

/* Trang theme bọc .site-container / .site-container-fluid — không lồng thêm padding/max-width section */
.site-container > .tgwv-page-builder-output .tgwv-section-inner.tgwv-container,
.site-container-fluid > .tgwv-page-builder-output .tgwv-section-inner.tgwv-container {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.site-container {
  width: 100%;
  max-width: var(--tgwv-container-max-width, 1200px);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--tgwv-container-padding-x, 15px);
  padding-right: var(--tgwv-container-padding-x, 15px);
  box-sizing: border-box;
}

.site-container-fluid {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--tgwv-container-padding-x, 15px);
  padding-right: var(--tgwv-container-padding-x, 15px);
  box-sizing: border-box;
}

.site-container-fluid--flush {
  padding-left: 0;
  padding-right: 0;
}

.tgwv-section {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* Responsive padding / min-height (máy tính → tablet → mobile) */
.tgwv-section.tgwv-section-responsive {
  padding: var(--tgwv-pad-lg, 0);
  min-height: var(--tgwv-minh-lg, 0);
}

@media (max-width: 1199px) and (min-width: 768px) {
  .tgwv-section.tgwv-section-responsive {
    padding: var(--tgwv-pad-md, var(--tgwv-pad-lg, 0));
    min-height: var(--tgwv-minh-md, var(--tgwv-minh-lg, 0));
  }
}

@media (max-width: 767px) {
  .tgwv-section.tgwv-section-responsive {
    padding: var(--tgwv-pad-sm, var(--tgwv-pad-md, var(--tgwv-pad-lg, 0)));
    min-height: var(--tgwv-minh-sm, var(--tgwv-minh-md, var(--tgwv-minh-lg, 0)));
  }
}

.tgwv-section-inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  flex: 1 0 auto;
  min-height: 100%;
}

.tgwv-section-inner.tgwv-container {
  max-width: var(--tgwv-container-max-width, 1200px);
  padding-left: var(--tgwv-container-padding-x, 15px);
  padding-right: var(--tgwv-container-padding-x, 15px);
  margin-left: auto;
  margin-right: auto;
}

.tgwv-section-inner.tgwv-container-fluid {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

/* Row / widget content_width override (inherit skips wrapper) */
.tgwv-content-width {
  width: 100%;
  box-sizing: border-box;
}

.tgwv-content-width--container {
  max-width: var(--tgwv-container-max-width, 1200px);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--tgwv-container-padding-x, 15px);
  padding-right: var(--tgwv-container-padding-x, 15px);
}

.tgwv-content-width--bleed {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-left: 0;
  padding-right: 0;
}

/* Section thường: widget Nội dung trực tiếp (không qua row/col) */
.tgwv-section:not(.tgwv-section-advance) .tgwv-section-inner > .tgwv-text,
.tgwv-section:not(.tgwv-section-advance) .tgwv-section-inner > .tgwv-button-wrap,
.tgwv-section:not(.tgwv-section-advance) .tgwv-section-inner > .tgwv-button-group,
.tgwv-section:not(.tgwv-section-advance) .tgwv-section-inner > .tgwv-image,
.tgwv-section:not(.tgwv-section-advance) .tgwv-section-inner > [class*="tgwv-"] {
  max-width: 100%;
}

.tgwv-section:not(.tgwv-section-advance) .tgwv-section-inner > * + * {
  margin-top: var(--tgwv-content-gap, 1rem);
}

.tgwv-section.tgwv-has-bg-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--tgwv-bg-overlay);
  pointer-events: none;
  z-index: 0;
}

.tgwv-section.tgwv-has-bg-overlay > .tgwv-section-inner {
  position: relative;
  z-index: 1;
}

.tgwv-section-dark {
  color: var(--tgwv-color-light, #ffffff);
}

.tgwv-section-dark .tgwv-text h1,
.tgwv-section-dark .tgwv-text h2,
.tgwv-section-dark .tgwv-text h3,
.tgwv-section-dark .tgwv-text p {
  color: inherit;
}

.tgwv-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  /* margin-left: -15px; */
  /* margin-right: -15px; */
  box-sizing: border-box;
}

.tgwv-col {
  /* padding-left: 15px; */
  /* padding-right: 15px; */
  margin-bottom: 0;
  box-sizing: border-box;
  position: relative;
}

/* Padding dọc cột; gutter ngang do gap trên .tgwv-row-responsive */
.tgwv-col.tgwv-col-responsive {
  padding-top: var(--tgwv-pad-lg, 0);
  padding-bottom: var(--tgwv-pad-lg, 0);
  min-height: var(--tgwv-minh-lg, 0);
}

.tgwv-row-responsive > .tgwv-col.tgwv-col-responsive {
  padding-left: var(--tgwv-pad-lg, 0);
  padding-right: var(--tgwv-pad-lg, 0);
}

@media (max-width: 1199px) and (min-width: 768px) {
  .tgwv-col.tgwv-col-responsive {
    padding-top: var(--tgwv-pad-md, var(--tgwv-pad-lg, 0));
    padding-bottom: var(--tgwv-pad-md, var(--tgwv-pad-lg, 0));
    min-height: var(--tgwv-minh-md, var(--tgwv-minh-lg, 0));
  }

  .tgwv-row-responsive > .tgwv-col.tgwv-col-responsive {
    padding-left: var(--tgwv-pad-md, var(--tgwv-pad-lg, 0));
    padding-right: var(--tgwv-pad-md, var(--tgwv-pad-lg, 0));
  }
}

@media (max-width: 767px) {
  .tgwv-col.tgwv-col-responsive {
    padding-top: var(--tgwv-pad-sm, var(--tgwv-pad-md, var(--tgwv-pad-lg, 0)));
    padding-bottom: var(--tgwv-pad-sm, var(--tgwv-pad-md, var(--tgwv-pad-lg, 0)));
    min-height: var(--tgwv-minh-sm, var(--tgwv-minh-md, var(--tgwv-minh-lg, 0)));
  }

  .tgwv-row-responsive > .tgwv-col.tgwv-col-responsive {
    padding-left: var(--tgwv-pad-sm, var(--tgwv-pad-md, var(--tgwv-pad-lg, 0)));
    padding-right: var(--tgwv-pad-sm, var(--tgwv-pad-md, var(--tgwv-pad-lg, 0)));
  }
}

.tgwv-col.tgwv-has-bg-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--tgwv-bg-overlay);
  pointer-events: none;
  z-index: 0;
}

.tgwv-col.tgwv-has-bg-overlay > .tgwv-col-inner {
  position: relative;
  z-index: 1;
}

.tgwv-col-inner > * + * {
  margin-top: var(--tgwv-content-gap, 1rem);
}

@media (max-width: 1199px) and (min-width: 768px) {
  .tgwv-col.tgwv-col-hide-md {
    display: none;
  }
}

@media (max-width: 767px) {
  .tgwv-col.tgwv-col-hide-sm {
    display: none;
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  .tgwv-section.tgwv-section-hide-md {
    display: none;
  }
}

@media (max-width: 767px) {
  .tgwv-section.tgwv-section-hide-sm {
    display: none;
  }
}

.tgwv-col-inner {
  width: 100%;
}

.tgwv-span-12 { flex: 0 0 100%; max-width: 100%; }
.tgwv-span-9 { flex: 0 0 75%; max-width: 75%; }
.tgwv-span-8 { flex: 0 0 66.666%; max-width: 66.666%; }
.tgwv-span-6 { flex: 0 0 50%; max-width: 50%; }
.tgwv-span-4 { flex: 0 0 33.333%; max-width: 33.333%; }
.tgwv-span-3 { flex: 0 0 25%; max-width: 25%; }

/* Row responsive: độ rộng cột theo breakpoint (desktop → tablet → mobile) */
.tgwv-row-responsive {
  --tgwv-cw: var(--tgwv-cw-lg, 12);
  --tgwv-col-count: var(--tgwv-col-count-lg, 1);
  gap: var(--tgwv-col-gap, 0px);
}

.tgwv-row-responsive:not(.tgwv-row-custom-cols) > .tgwv-col {
  --tgwv-col-flex-span: var(--tgwv-cw, 12);
  flex: 0 0 calc((100% - var(--tgwv-col-gap, 0px) * (var(--tgwv-col-count, 1) - 1)) * var(--tgwv-col-flex-span, 12) / 12);
  max-width: calc((100% - var(--tgwv-col-gap, 0px) * (var(--tgwv-col-count, 1) - 1)) * var(--tgwv-col-flex-span, 12) / 12);
}

.tgwv-row-responsive.tgwv-row-custom-cols > .tgwv-col {
  --tgwv-col-flex-span: var(--tgwv-col-span-lg, 12);
  flex: 0 0 calc((100% - var(--tgwv-col-gap, 0px) * (var(--tgwv-col-count, 1) - 1)) * var(--tgwv-col-flex-span, 12) / 12);
  max-width: calc((100% - var(--tgwv-col-gap, 0px) * (var(--tgwv-col-count, 1) - 1)) * var(--tgwv-col-flex-span, 12) / 12);
}

@media (max-width: 1199px) and (min-width: 768px) {
  .tgwv-row-responsive.tgwv-row-custom-cols > .tgwv-col {
    --tgwv-col-flex-span: var(--tgwv-col-span-md, var(--tgwv-col-span-lg, 12));
  }
}

@media (max-width: 767px) {
  .tgwv-row-responsive.tgwv-row-custom-cols > .tgwv-col {
    --tgwv-col-flex-span: var(--tgwv-col-span-sm, var(--tgwv-col-span-md, var(--tgwv-col-span-lg, 12)));
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  .tgwv-row-responsive {
    --tgwv-cw: var(--tgwv-cw-md, var(--tgwv-cw-lg, 12));
    --tgwv-col-count: var(--tgwv-col-count-md, var(--tgwv-col-count-lg, 1));
  }
}

@media (max-width: 767px) {
  .tgwv-row-responsive {
    --tgwv-cw: var(--tgwv-cw-sm, var(--tgwv-cw-md, var(--tgwv-cw-lg, 12)));
    --tgwv-col-count: var(--tgwv-col-count-sm, var(--tgwv-col-count-md, var(--tgwv-col-count-lg, 1)));
  }
}

.tgwv-col-align-center { text-align: center; }
.tgwv-col-align-right { text-align: right; }

.tgwv-text { line-height: 1.6; }
.tgwv-plain-text { white-space: normal; }
.tgwv-html-block { width: 100%; max-width: 100%; }

.tgwv-text h1, .tgwv-text h2, .tgwv-text h3 {
  margin-top: 0;
  line-height: 1.25;
}

.tgwv-button-wrap {
  margin-top: var(--tgwv-btn-my-lg, 0.5rem);
  margin-bottom: var(--tgwv-btn-my-lg, 0.5rem);
  display: flex;
  flex-direction: column;
  align-items: var(--tgwv-btn-flex-lg, flex-start);
}

.tgwv-button-wrap-full {
  align-items: stretch;
}

.tgwv-button-wrap-full .tgwv-button {
  display: flex;
  width: 100%;
  text-align: center;
  justify-content: center;
}

.tgwv-button-responsive .tgwv-button {
  display: var(--tgwv-btn-display-lg, inline-flex);
  width: var(--tgwv-btn-width-lg, auto);
  max-width: 100%;
  text-align: var(--tgwv-btn-text-align-lg, left);
  justify-content: center;
  box-sizing: border-box;
  font-family: var(--tgwv-btn-ff-lg, inherit);
  font-size: var(--tgwv-btn-fs-lg, var(--tgwv-font-size-body, 14px));
}

.tgwv-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 18px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  border-radius: var(--tgwv-btn-radius-lg, 4px);
  transition: opacity 0.15s ease, transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  border: 2px solid transparent;
  box-sizing: border-box;
}

.tgwv-button__icon {
  flex-shrink: 0;
  line-height: 1;
}

.tgwv-button__label {
  display: inline-block;
}

.tgwv-button.tgwv-btn-style-primary {
  background: var(--tgwv-brand, #000000);
  color: var(--tgwv-color-light);
  border-color: var(--tgwv-brand, #000000);
}

.tgwv-button.tgwv-btn-style-primary:hover,
.tgwv-button.tgwv-btn-style-primary:focus-visible {
  opacity: 0.9;
  transform: translateY(-1px);
}

.tgwv-button.tgwv-btn-style-secondary {
  background: var(--tgwv-btn-secondary-bg, #50575e);
  color: var(--tgwv-color-light);
  border-color: var(--tgwv-btn-secondary-bg, #50575e);
}

.tgwv-button.tgwv-btn-style-secondary:hover,
.tgwv-button.tgwv-btn-style-secondary:focus-visible {
  opacity: 0.88;
  transform: translateY(-1px);
}

.tgwv-button.tgwv-btn-style-outline {
  background: transparent;
  color: var(--tgwv-brand, #000000);
  border-color: var(--tgwv-brand, #000000);
}

.tgwv-button.tgwv-btn-style-outline:hover,
.tgwv-button.tgwv-btn-style-outline:focus-visible {
  background: color-mix(in srgb, var(--tgwv-brand, #000000) 10%, transparent);
  transform: translateY(-1px);
}

.tgwv-button.tgwv-btn-style-ghost {
  background: transparent;
  color: var(--tgwv-brand, #000000);
  border-color: transparent;
}

.tgwv-button.tgwv-btn-style-ghost:hover,
.tgwv-button.tgwv-btn-style-ghost:focus-visible {
  background: color-mix(in srgb, var(--tgwv-brand, #000000) 10%, transparent);
  transform: translateY(-1px);
}

.tgwv-button.tgwv-btn-style-white {
  background: var(--tgwv-color-light, #ffffff);
  color: var(--tgwv-color-dark, #000000);
  border-color: var(--tgwv-color-light, #ffffff);
}

.tgwv-button.tgwv-btn-style-white:hover,
.tgwv-button.tgwv-btn-style-white:focus-visible {
  background: color-mix(in srgb, var(--tgwv-color-light, #ffffff) 92%, var(--tgwv-color-dark, #000000));
  transform: translateY(-1px);
}

.tgwv-button.tgwv-btn-custom {
  background: var(--tgwv-btn-bg, var(--tgwv-brand, #000000));
  color: var(--tgwv-btn-fg, var(--tgwv-color-light, #ffffff));
  border-color: var(--tgwv-btn-bd, var(--tgwv-btn-bg, var(--tgwv-brand, #000000)));
}

.tgwv-button.tgwv-btn-custom:hover,
.tgwv-button.tgwv-btn-custom:focus-visible {
  opacity: 0.92;
  transform: translateY(-1px);
}

.tgwv-button:focus-visible {
  outline: 2px solid var(--tgwv-brand, #000000);
  outline-offset: 2px;
}

.tgwv-button-group {
  display: flex;
  flex-wrap: wrap;
  flex-direction: var(--tgwv-btn-group-dir, row);
  align-items: var(--tgwv-btn-group-flex-lg, flex-start);
  justify-content: var(--tgwv-btn-group-flex-lg, flex-start);
  gap: var(--tgwv-btn-group-gap, 12px);
  margin-top: var(--tgwv-btn-my-lg, 0.5rem);
  margin-bottom: var(--tgwv-btn-my-lg, 0.5rem);
}

.tgwv-button-group--column {
  flex-direction: column;
}

.tgwv-button-group__empty-note {
  margin: 0;
  font-size: 13px;
  opacity: 0.7;
}

.tgwv-image__img,
.tgwv-image img {
  display: block;
  max-width: 100%;
  height: auto;
}
.tgwv-image-placeholder {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tgwv-color-light, #ffffff);
  color: #646970;
  font-size: 14px;
  border-radius: 4px;
  padding: 16px;
  text-align: center;
}

/* --- Heading responsive (desktop → tablet → mobile) --- */
.tgwv-page-builder-output .tgwv-heading-block.tgwv-heading-responsive {
  margin-left: 0;
  margin-right: 0;
  margin-top: var(--tgwv-h-mb-lg, 1rem);
  margin-bottom: var(--tgwv-h-mb-lg, 1rem);
  text-align: var(--tgwv-h-align-lg, left);
}

.tgwv-page-builder-output .tgwv-heading-responsive .tgwv-heading {
  margin: 0;
  line-height: var(--tgwv-h-lh, 1.25);
  font-family: var(--tgwv-h-ff-lg, inherit);
  font-size: var(--tgwv-h-fs-lg, inherit);
  font-weight: var(--tgwv-h-fw-lg, 700);
}

.tgwv-heading__subtitle {
  margin: 0 0 0.35rem;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tgwv-brand, #000000);
}

.tgwv-heading__icon {
  margin-right: 0.35em;
  font-style: normal;
}
.tgwv-heading .tgwv-heading__icon:last-child {
  margin-right: 0;
  margin-left: 0.35em;
}
.tgwv-heading__icon-top {
  margin-bottom: 0.5rem;
  font-size: 24px;
  line-height: 1;
  color: var(--tgwv-brand, currentColor);
}
.tgwv-heading-block--icon-top {
  display: flex;
  flex-direction: column;
}

.tgwv-heading-link {
  color: inherit;
  text-decoration: none;
}
.tgwv-heading-link:hover {
  color: var(--tgwv-brand, #000000);
  text-decoration: none;
}

.tgwv-heading-h1 { font-size: 36px; }
.tgwv-heading-h2 { font-size: 28px; }
.tgwv-heading-h3 { font-size: 24px; }
.tgwv-heading-h4 { font-size: 20px; }
.tgwv-heading-h5 { font-size: 18px; }
.tgwv-heading-h6 { font-size: 16px; }

.tgwv-heading-transform-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tgwv-heading-transform-capitalize {
  text-transform: capitalize;
}

.tgwv-heading-block--style-accent .tgwv-heading {
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--tgwv-brand, #000000);
}
.tgwv-heading-block--style-underline .tgwv-heading {
  text-decoration: underline;
  text-decoration-color: var(--tgwv-brand, #000000);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 2px;
}

.tgwv-page-builder-output .tgwv-heading-block--decor-line .tgwv-heading__decor-line {
  display: inline-block;
  width: 3rem;
  height: 4px;
  margin-top: 0.65rem;
  background: currentColor;
  vertical-align: top;
}

@media (max-width: 1199px) and (min-width: 768px) {
  .tgwv-page-builder-output .tgwv-heading-block.tgwv-heading-responsive {
    margin-top: var(--tgwv-h-mb-md, var(--tgwv-h-mb-lg, 1rem));
    margin-bottom: var(--tgwv-h-mb-md, var(--tgwv-h-mb-lg, 1rem));
    text-align: var(--tgwv-h-align-md, var(--tgwv-h-align-lg, left));
  }
  .tgwv-page-builder-output .tgwv-heading-responsive .tgwv-heading {
    font-family: var(--tgwv-h-ff-md, var(--tgwv-h-ff-lg, inherit));
    font-size: var(--tgwv-h-fs-md, var(--tgwv-h-fs-lg, inherit));
    font-weight: var(--tgwv-h-fw-md, var(--tgwv-h-fw-lg, 700));
  }
}

@media (max-width: 767px) {
  .tgwv-page-builder-output .tgwv-heading-block.tgwv-heading-responsive {
    margin-top: var(--tgwv-h-mb-sm, var(--tgwv-h-mb-md, var(--tgwv-h-mb-lg, 1rem)));
    margin-bottom: var(--tgwv-h-mb-sm, var(--tgwv-h-mb-md, var(--tgwv-h-mb-lg, 1rem)));
    text-align: var(--tgwv-h-align-sm, var(--tgwv-h-align-md, var(--tgwv-h-align-lg, left)));
  }
  .tgwv-page-builder-output .tgwv-heading-responsive .tgwv-heading {
    font-family: var(--tgwv-h-ff-sm, var(--tgwv-h-ff-md, var(--tgwv-h-ff-lg, inherit)));
    font-size: var(--tgwv-h-fs-sm, var(--tgwv-h-fs-md, var(--tgwv-h-fs-lg, inherit)));
    font-weight: var(--tgwv-h-fw-sm, var(--tgwv-h-fw-md, var(--tgwv-h-fw-lg, 700)));
  }
}

/* Text / plain text responsive */
.tgwv-text-responsive {
  font-family: var(--tgwv-t-ff-lg, inherit);
  font-size: var(--tgwv-t-fs-lg, var(--tgwv-font-size-body, 14px));
  text-align: var(--tgwv-t-align-lg, left);
  line-height: var(--tgwv-t-lh, 1.6);
  color: var(--tgwv-t-color, inherit);
  margin-top: var(--tgwv-t-my-lg, 0);
  margin-bottom: var(--tgwv-t-my-lg, 0);
}

.tgwv-text-responsive .tgwv-editor-body {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  /* Keep editor typography tokens aligned with widget / theme body size */
  --tgwv-content-font-size: 16px;
  --tgwv-content-font-size-sm: inherit;
}

@media (max-width: 1199px) and (min-width: 768px) {
  .tgwv-text-responsive {
    font-family: var(--tgwv-t-ff-md, var(--tgwv-t-ff-lg, inherit));
    font-size: var(--tgwv-t-fs-md, var(--tgwv-t-fs-lg, var(--tgwv-font-size-body, 14px)));
    text-align: var(--tgwv-t-align-md, var(--tgwv-t-align-lg, left));
    margin-top: var(--tgwv-t-my-md, var(--tgwv-t-my-lg, 0));
    margin-bottom: var(--tgwv-t-my-md, var(--tgwv-t-my-lg, 0));
  }
}

@media (max-width: 767px) {
  .tgwv-text-responsive {
    font-family: var(--tgwv-t-ff-sm, var(--tgwv-t-ff-md, var(--tgwv-t-ff-lg, inherit)));
    font-size: var(--tgwv-t-fs-sm, var(--tgwv-t-fs-md, var(--tgwv-t-fs-lg, var(--tgwv-font-size-body, 14px))));
    text-align: var(--tgwv-t-align-sm, var(--tgwv-t-align-md, var(--tgwv-t-align-lg, left)));
    margin-top: var(--tgwv-t-my-sm, var(--tgwv-t-my-md, var(--tgwv-t-my-lg, 0)));
    margin-bottom: var(--tgwv-t-my-sm, var(--tgwv-t-my-md, var(--tgwv-t-my-lg, 0)));
  }
}

/* Button responsive */
.tgwv-button-wrap {
  align-items: var(--tgwv-btn-flex-lg, flex-start) !important;
  margin-top: var(--tgwv-btn-my-lg, 0.5rem);
  margin-bottom: var(--tgwv-btn-my-lg, 0.5rem);
}

.tgwv-button-group {
  align-items: var(--tgwv-btn-group-flex-lg, flex-start);
  justify-content: var(--tgwv-btn-group-flex-lg, flex-start);
  margin-top: var(--tgwv-btn-my-lg, 0.5rem);
  margin-bottom: var(--tgwv-btn-my-lg, 0.5rem);
}

.tgwv-pb-preview-body[data-device="lg"] .tgwv-button-responsive .tgwv-button {
  padding: var(--tgwv-btn-pad-lg, 8px 18px) !important;
  display: var(--tgwv-btn-display-lg, inline-flex) !important;
  width: var(--tgwv-btn-width-lg, auto) !important;
  text-align: var(--tgwv-btn-text-align-lg, left) !important;
  border-radius: var(--tgwv-btn-radius-lg, 4px) !important;
  font-family: var(--tgwv-btn-ff-lg, inherit) !important;
  font-size: var(--tgwv-btn-fs-lg, var(--tgwv-font-size-body, 14px)) !important;
}
.tgwv-pb-preview-body[data-device="md"] .tgwv-button-wrap {
  align-items: var(--tgwv-btn-flex-md, var(--tgwv-btn-flex-lg, flex-start)) !important;
  margin-top: var(--tgwv-btn-my-md, var(--tgwv-btn-my-lg, 0.5rem));
  margin-bottom: var(--tgwv-btn-my-md, var(--tgwv-btn-my-lg, 0.5rem));
}
.tgwv-pb-preview-body[data-device="md"] .tgwv-button-group {
  align-items: var(--tgwv-btn-group-flex-md, var(--tgwv-btn-group-flex-lg, flex-start));
  justify-content: var(--tgwv-btn-group-flex-md, var(--tgwv-btn-group-flex-lg, flex-start));
  margin-top: var(--tgwv-btn-my-md, var(--tgwv-btn-my-lg, 0.5rem));
  margin-bottom: var(--tgwv-btn-my-md, var(--tgwv-btn-my-lg, 0.5rem));
}
.tgwv-pb-preview-body[data-device="md"] .tgwv-button-responsive .tgwv-button {
  padding: var(--tgwv-btn-pad-md, var(--tgwv-btn-pad-lg, 8px 18px)) !important;
  display: var(--tgwv-btn-display-md, var(--tgwv-btn-display-lg, inline-flex)) !important;
  width: var(--tgwv-btn-width-md, var(--tgwv-btn-width-lg, auto)) !important;
  text-align: var(--tgwv-btn-text-align-md, var(--tgwv-btn-text-align-lg, left)) !important;
  border-radius: var(--tgwv-btn-radius-md, var(--tgwv-btn-radius-lg, 4px)) !important;
  font-family: var(--tgwv-btn-ff-md, var(--tgwv-btn-ff-lg, inherit)) !important;
  font-size: var(--tgwv-btn-fs-md, var(--tgwv-btn-fs-lg, var(--tgwv-font-size-body, 14px))) !important;
}
.tgwv-pb-preview-body[data-device="sm"] .tgwv-button-wrap {
  align-items: var(--tgwv-btn-flex-sm, var(--tgwv-btn-flex-md, var(--tgwv-btn-flex-lg, flex-start))) !important;
  margin-top: var(--tgwv-btn-my-sm, var(--tgwv-btn-my-md, var(--tgwv-btn-my-lg, 0.5rem)));
  margin-bottom: var(--tgwv-btn-my-sm, var(--tgwv-btn-my-md, var(--tgwv-btn-my-lg, 0.5rem)));
}
.tgwv-pb-preview-body[data-device="sm"] .tgwv-button-group {
  align-items: var(--tgwv-btn-group-flex-sm, var(--tgwv-btn-group-flex-md, var(--tgwv-btn-group-flex-lg, flex-start)));
  justify-content: var(--tgwv-btn-group-flex-sm, var(--tgwv-btn-group-flex-md, var(--tgwv-btn-group-flex-lg, flex-start)));
  margin-top: var(--tgwv-btn-my-sm, var(--tgwv-btn-my-md, var(--tgwv-btn-my-lg, 0.5rem)));
  margin-bottom: var(--tgwv-btn-my-sm, var(--tgwv-btn-my-md, var(--tgwv-btn-my-lg, 0.5rem)));
}
.tgwv-pb-preview-body[data-device="sm"] .tgwv-button-group--stack-sm {
  flex-direction: column !important;
}
.tgwv-pb-preview-body[data-device="sm"] .tgwv-button-responsive .tgwv-button {
  padding: var(--tgwv-btn-pad-sm, var(--tgwv-btn-pad-md, var(--tgwv-btn-pad-lg, 8px 18px))) !important;
  display: var(--tgwv-btn-display-sm, var(--tgwv-btn-display-md, var(--tgwv-btn-display-lg, inline-flex))) !important;
  width: var(--tgwv-btn-width-sm, var(--tgwv-btn-width-md, var(--tgwv-btn-width-lg, auto))) !important;
  text-align: var(--tgwv-btn-text-align-sm, var(--tgwv-btn-text-align-md, var(--tgwv-btn-text-align-lg, left))) !important;
  border-radius: var(--tgwv-btn-radius-sm, var(--tgwv-btn-radius-md, var(--tgwv-btn-radius-lg, 4px))) !important;
  font-family: var(--tgwv-btn-ff-sm, var(--tgwv-btn-ff-md, var(--tgwv-btn-ff-lg, inherit))) !important;
  font-size: var(--tgwv-btn-fs-sm, var(--tgwv-btn-fs-md, var(--tgwv-btn-fs-lg, var(--tgwv-font-size-body, 14px)))) !important;
}

@media (max-width: 1199px) and (min-width: 768px) {
  .tgwv-button-wrap {
    align-items: var(--tgwv-btn-flex-md, var(--tgwv-btn-flex-lg, flex-start));
    margin-top: var(--tgwv-btn-my-md, var(--tgwv-btn-my-lg, 0.5rem));
    margin-bottom: var(--tgwv-btn-my-md, var(--tgwv-btn-my-lg, 0.5rem));
  }
  .tgwv-button-group {
    align-items: var(--tgwv-btn-group-flex-md, var(--tgwv-btn-group-flex-lg, flex-start));
    justify-content: var(--tgwv-btn-group-flex-md, var(--tgwv-btn-group-flex-lg, flex-start));
    margin-top: var(--tgwv-btn-my-md, var(--tgwv-btn-my-lg, 0.5rem));
    margin-bottom: var(--tgwv-btn-my-md, var(--tgwv-btn-my-lg, 0.5rem));
  }
  .tgwv-button-responsive .tgwv-button {
    display: var(--tgwv-btn-display-md, var(--tgwv-btn-display-lg, inline-flex));
    width: var(--tgwv-btn-width-md, var(--tgwv-btn-width-lg, auto));
    text-align: var(--tgwv-btn-text-align-md, var(--tgwv-btn-text-align-lg, left));
    border-radius: var(--tgwv-btn-radius-md, var(--tgwv-btn-radius-lg, 4px));
    font-family: var(--tgwv-btn-ff-md, var(--tgwv-btn-ff-lg, inherit));
    font-size: var(--tgwv-btn-fs-md, var(--tgwv-btn-fs-lg, var(--tgwv-font-size-body, 14px)));
    padding: var(--tgwv-btn-pad-md, var(--tgwv-btn-pad-lg, 8px 18px));
  }
}

@media (max-width: 767px) {
  .tgwv-button-wrap {
    align-items: var(--tgwv-btn-flex-sm, var(--tgwv-btn-flex-md, var(--tgwv-btn-flex-lg, flex-start)));
    margin-top: var(--tgwv-btn-my-sm, var(--tgwv-btn-my-md, var(--tgwv-btn-my-lg, 0.5rem)));
    margin-bottom: var(--tgwv-btn-my-sm, var(--tgwv-btn-my-md, var(--tgwv-btn-my-lg, 0.5rem)));
  }
  .tgwv-button-group {
    align-items: var(--tgwv-btn-group-flex-sm, var(--tgwv-btn-group-flex-md, var(--tgwv-btn-group-flex-lg, flex-start)));
    justify-content: var(--tgwv-btn-group-flex-sm, var(--tgwv-btn-group-flex-md, var(--tgwv-btn-group-flex-lg, flex-start)));
    margin-top: var(--tgwv-btn-my-sm, var(--tgwv-btn-my-md, var(--tgwv-btn-my-lg, 0.5rem)));
    margin-bottom: var(--tgwv-btn-my-sm, var(--tgwv-btn-my-md, var(--tgwv-btn-my-lg, 0.5rem)));
  }
  .tgwv-button-group--stack-sm {
    flex-direction: column;
  }
  .tgwv-button-group--stack-sm > .tgwv-button {
    width: 100%;
  }
  .tgwv-button-responsive .tgwv-button {
    display: var(--tgwv-btn-display-sm, var(--tgwv-btn-display-md, var(--tgwv-btn-display-lg, inline-flex)));
    width: var(--tgwv-btn-width-sm, var(--tgwv-btn-width-md, var(--tgwv-btn-width-lg, auto)));
    text-align: var(--tgwv-btn-text-align-sm, var(--tgwv-btn-text-align-md, var(--tgwv-btn-text-align-lg, left)));
    border-radius: var(--tgwv-btn-radius-sm, var(--tgwv-btn-radius-md, var(--tgwv-btn-radius-lg, 4px)));
    font-family: var(--tgwv-btn-ff-sm, var(--tgwv-btn-ff-md, var(--tgwv-btn-ff-lg, inherit)));
    font-size: var(--tgwv-btn-fs-sm, var(--tgwv-btn-fs-md, var(--tgwv-btn-fs-lg, var(--tgwv-font-size-body, 14px))));
    padding: var(--tgwv-btn-pad-sm, var(--tgwv-btn-pad-md, var(--tgwv-btn-pad-lg, 8px 18px)));
  }
}

.tgwv-button-responsive .tgwv-button {
  padding: var(--tgwv-btn-pad-lg, 8px 18px);
}

/* Icon responsive */
.tgwv-icon-responsive {
  text-align: var(--tgwv-icon-align-lg, left);
  color: var(--tgwv-icon-color, var(--tgwv-brand, inherit));
  margin-top: var(--tgwv-icon-my-lg, 0.5rem);
  margin-bottom: var(--tgwv-icon-my-lg, 0.5rem);
}
.tgwv-icon-responsive .tgwv-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  vertical-align: middle;
}
.tgwv-icon-responsive .tgwv-icon-link,
.tgwv-icon-responsive .tgwv-icon-label {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
}
.tgwv-icon-responsive .tgwv-icon-link:hover,
.tgwv-icon-responsive .tgwv-icon-link:focus-visible {
  color: var(--tgwv-icon-color-hover, var(--tgwv-icon-color, var(--tgwv-brand, inherit)));
}
.tgwv-icon-responsive i {
  font-size: var(--tgwv-icon-fs-lg, 24px);
}
.tgwv-icon--shape-circle .tgwv-icon-badge,
.tgwv-icon--shape-rounded .tgwv-icon-badge {
  background: var(--tgwv-icon-bg, rgba(0, 0, 0, 0.06));
  padding: var(--tgwv-icon-pad-lg, 12px);
}
.tgwv-icon--shape-circle .tgwv-icon-badge {
  border-radius: 50%;
}
.tgwv-icon--shape-rounded .tgwv-icon-badge {
  border-radius: var(--tgwv-icon-radius-lg, 8px);
}

@media (max-width: 1199px) and (min-width: 768px) {
  .tgwv-icon-responsive {
    text-align: var(--tgwv-icon-align-md, var(--tgwv-icon-align-lg, left));
    margin-top: var(--tgwv-icon-my-md, var(--tgwv-icon-my-lg, 0.5rem));
    margin-bottom: var(--tgwv-icon-my-md, var(--tgwv-icon-my-lg, 0.5rem));
  }
  .tgwv-icon-responsive i {
    font-size: var(--tgwv-icon-fs-md, var(--tgwv-icon-fs-lg, 24px));
  }
  .tgwv-icon--shape-circle .tgwv-icon-badge,
  .tgwv-icon--shape-rounded .tgwv-icon-badge {
    padding: var(--tgwv-icon-pad-md, var(--tgwv-icon-pad-lg, 12px));
  }
  .tgwv-icon--shape-rounded .tgwv-icon-badge {
    border-radius: var(--tgwv-icon-radius-md, var(--tgwv-icon-radius-lg, 8px));
  }
}

@media (max-width: 767px) {
  .tgwv-icon-responsive {
    text-align: var(--tgwv-icon-align-sm, var(--tgwv-icon-align-md, var(--tgwv-icon-align-lg, left)));
    margin-top: var(--tgwv-icon-my-sm, var(--tgwv-icon-my-md, var(--tgwv-icon-my-lg, 0.5rem)));
    margin-bottom: var(--tgwv-icon-my-sm, var(--tgwv-icon-my-md, var(--tgwv-icon-my-lg, 0.5rem)));
  }
  .tgwv-icon-responsive i {
    font-size: var(--tgwv-icon-fs-sm, var(--tgwv-icon-fs-md, var(--tgwv-icon-fs-lg, 24px)));
  }
  .tgwv-icon--shape-circle .tgwv-icon-badge,
  .tgwv-icon--shape-rounded .tgwv-icon-badge {
    padding: var(--tgwv-icon-pad-sm, var(--tgwv-icon-pad-md, var(--tgwv-icon-pad-lg, 12px)));
  }
  .tgwv-icon--shape-rounded .tgwv-icon-badge {
    border-radius: var(--tgwv-icon-radius-sm, var(--tgwv-icon-radius-md, var(--tgwv-icon-radius-lg, 8px)));
  }
}

/* Quote responsive */
.tgwv-quote-responsive {
  font-family: var(--tgwv-quote-ff-lg, inherit);
  font-size: var(--tgwv-quote-fs-lg, var(--tgwv-font-size-body, 14px));
  text-align: var(--tgwv-quote-align-lg, left);
  line-height: var(--tgwv-quote-lh, 1.6);
  color: var(--tgwv-quote-color, inherit);
  margin-top: var(--tgwv-quote-my-lg, 1rem);
  margin-bottom: var(--tgwv-quote-my-lg, 1rem);
}

@media (max-width: 1199px) and (min-width: 768px) {
  .tgwv-quote-responsive {
    font-family: var(--tgwv-quote-ff-md, var(--tgwv-quote-ff-lg, inherit));
    font-size: var(--tgwv-quote-fs-md, var(--tgwv-quote-fs-lg, var(--tgwv-font-size-body, 14px)));
    text-align: var(--tgwv-quote-align-md, var(--tgwv-quote-align-lg, left));
    margin-top: var(--tgwv-quote-my-md, var(--tgwv-quote-my-lg, 1rem));
    margin-bottom: var(--tgwv-quote-my-md, var(--tgwv-quote-my-lg, 1rem));
  }
}

@media (max-width: 767px) {
  .tgwv-quote-responsive {
    font-family: var(--tgwv-quote-ff-sm, var(--tgwv-quote-ff-md, var(--tgwv-quote-ff-lg, inherit)));
    font-size: var(--tgwv-quote-fs-sm, var(--tgwv-quote-fs-md, var(--tgwv-quote-fs-lg, var(--tgwv-font-size-body, 14px))));
    text-align: var(--tgwv-quote-align-sm, var(--tgwv-quote-align-md, var(--tgwv-quote-align-lg, left)));
    margin-top: var(--tgwv-quote-my-sm, var(--tgwv-quote-my-md, var(--tgwv-quote-my-lg, 1rem)));
    margin-bottom: var(--tgwv-quote-my-sm, var(--tgwv-quote-my-md, var(--tgwv-quote-my-lg, 1rem)));
  }
}

.tgwv-spacer {
  display: block;
  width: 100%;
  pointer-events: none;
}

.tgwv-spacer-responsive {
  height: var(--tgwv-spacer-h-lg, 40px);
}

@media (max-width: 1199px) and (min-width: 768px) {
  .tgwv-spacer-responsive {
    height: var(--tgwv-spacer-h-md, var(--tgwv-spacer-h-lg, 40px));
  }
}

@media (max-width: 767px) {
  .tgwv-spacer-responsive {
    height: var(--tgwv-spacer-h-sm, var(--tgwv-spacer-h-md, var(--tgwv-spacer-h-lg, 40px)));
  }
}

.tgwv-divider {
  display: block;
  border-top-width: var(--tgwv-divider-th-lg, 1px);
  opacity: var(--tgwv-divider-opacity-lg, 1);
  width: var(--tgwv-divider-w-lg, 100%);
  margin-top: var(--tgwv-divider-mt-lg, 16px);
  margin-bottom: var(--tgwv-divider-mb-lg, 16px);
  margin-left: var(--tgwv-divider-ml-lg, auto);
  margin-right: var(--tgwv-divider-mr-lg, auto);
}

.tgwv-divider-responsive {
  width: var(--tgwv-divider-w-lg, 100%);
  max-width: 100%;
}

.tgwv-divider--labeled {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 0;
  box-sizing: border-box;
}

.tgwv-divider__line {
  flex: 1 1 auto;
  min-width: 1rem;
  border: 0;
  border-top-style: var(--tgwv-divider-style, solid);
  border-top-color: var(--tgwv-divider-color, #e0e0e0);
  border-top-width: var(--tgwv-divider-th-lg, 1px);
  align-self: center;
}

.tgwv-divider__label {
  flex: 0 0 auto;
  font-size: 0.875rem;
  line-height: 1.3;
  white-space: nowrap;
  color: var(--tgwv-divider-label-color, var(--tgwv-text, #333));
}

@media (max-width: 1199px) and (min-width: 768px) {
  .tgwv-divider-responsive {
    border-top-width: var(--tgwv-divider-th-md, var(--tgwv-divider-th-lg, 1px));
    opacity: var(--tgwv-divider-opacity-md, var(--tgwv-divider-opacity-lg, 1));
    width: var(--tgwv-divider-w-md, var(--tgwv-divider-w-lg, 100%));
    margin-top: var(--tgwv-divider-mt-md, var(--tgwv-divider-mt-lg, 16px));
    margin-bottom: var(--tgwv-divider-mb-md, var(--tgwv-divider-mb-lg, 16px));
    margin-left: var(--tgwv-divider-ml-md, var(--tgwv-divider-ml-lg, auto));
    margin-right: var(--tgwv-divider-mr-md, var(--tgwv-divider-mr-lg, auto));
  }

  .tgwv-divider--labeled.tgwv-divider-responsive {
    border-top-width: 0;
  }

  .tgwv-divider--labeled .tgwv-divider__line {
    border-top-width: var(--tgwv-divider-th-md, var(--tgwv-divider-th-lg, 1px));
  }
}

@media (max-width: 767px) {
  .tgwv-divider-responsive {
    border-top-width: var(--tgwv-divider-th-sm, var(--tgwv-divider-th-md, var(--tgwv-divider-th-lg, 1px)));
    opacity: var(--tgwv-divider-opacity-sm, var(--tgwv-divider-opacity-md, var(--tgwv-divider-opacity-lg, 1)));
    width: var(--tgwv-divider-w-sm, var(--tgwv-divider-w-md, var(--tgwv-divider-w-lg, 100%)));
    margin-top: var(--tgwv-divider-mt-sm, var(--tgwv-divider-mt-md, var(--tgwv-divider-mt-lg, 16px)));
    margin-bottom: var(--tgwv-divider-mb-sm, var(--tgwv-divider-mb-md, var(--tgwv-divider-mb-lg, 16px)));
    margin-left: var(--tgwv-divider-ml-sm, var(--tgwv-divider-ml-md, var(--tgwv-divider-ml-lg, auto)));
    margin-right: var(--tgwv-divider-mr-sm, var(--tgwv-divider-mr-md, var(--tgwv-divider-mr-lg, auto)));
  }

  .tgwv-divider--labeled.tgwv-divider-responsive {
    border-top-width: 0;
  }

  .tgwv-divider--labeled .tgwv-divider__line {
    border-top-width: var(--tgwv-divider-th-sm, var(--tgwv-divider-th-md, var(--tgwv-divider-th-lg, 1px)));
  }
}

.tgwv-image.tgwv-image-responsive {
  width: var(--tgwv-img-mw-lg, 100%);
  max-width: 100%;
  margin-left: var(--tgwv-img-ml-lg, 0);
  margin-right: var(--tgwv-img-mr-lg, 0);
  text-align: var(--tgwv-img-ta-lg, left);
}

.tgwv-image-responsive .tgwv-image-link,
.tgwv-image-responsive .tgwv-image__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--tgwv-img-radius-lg, 0);
}

.tgwv-image__caption {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #646970;
}

.tgwv-image--framed .tgwv-image-link {
  aspect-ratio: var(--tgwv-img-ar-lg, auto);
  overflow: hidden;
}

.tgwv-image--framed > .tgwv-image__img {
  aspect-ratio: var(--tgwv-img-ar-lg, auto);
  object-fit: var(--tgwv-img-fit, cover);
  object-position: var(--tgwv-img-pos, center);
}

.tgwv-image--framed .tgwv-image-link .tgwv-image__img {
  width: 100%;
  height: 100%;
  object-fit: var(--tgwv-img-fit, cover);
  object-position: var(--tgwv-img-pos, center);
}

.tgwv-image--shadow-soft .tgwv-image-link,
.tgwv-image--shadow-soft > .tgwv-image__img {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.tgwv-image--shadow-medium .tgwv-image-link,
.tgwv-image--shadow-medium > .tgwv-image__img {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.tgwv-image--hover-zoom .tgwv-image-link,
.tgwv-image--hover-zoom > .tgwv-image__img {
  overflow: hidden;
}

.tgwv-image--hover-zoom .tgwv-image__img {
  transition: transform 0.35s ease;
}

.tgwv-image--hover-zoom:hover .tgwv-image__img {
  transform: scale(1.05);
}

.tgwv-image--hover-opacity .tgwv-image__img {
  transition: opacity 0.3s ease;
}

.tgwv-image--hover-opacity:hover .tgwv-image__img {
  opacity: 0.85;
}

.tgwv-image-lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 18, 22, 0.82);
  cursor: zoom-out;
}

.tgwv-image-lightbox-overlay[hidden] {
  display: none !important;
}

.tgwv-image-lightbox-inner {
  position: relative;
  max-width: min(96vw, 1200px);
  max-height: 90vh;
  cursor: default;
}

.tgwv-image-lightbox-inner img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.tgwv-image-lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #1d2327;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.tgwv-image-lightbox-close:hover {
  background: #f0f0f1;
}

body.tgwv-image-lightbox-open {
  overflow: hidden;
}

@media (max-width: 1199px) and (min-width: 768px) {
  .tgwv-image.tgwv-image-responsive {
    width: var(--tgwv-img-mw-md, var(--tgwv-img-mw-lg, 100%));
    margin-left: var(--tgwv-img-ml-md, var(--tgwv-img-ml-lg, 0));
    margin-right: var(--tgwv-img-mr-md, var(--tgwv-img-mr-lg, 0));
    text-align: var(--tgwv-img-ta-md, var(--tgwv-img-ta-lg, left));
  }

  .tgwv-image-responsive .tgwv-image-link,
  .tgwv-image-responsive .tgwv-image__img {
    border-radius: var(--tgwv-img-radius-md, var(--tgwv-img-radius-lg, 0));
  }

  .tgwv-image--framed .tgwv-image-link,
  .tgwv-image--framed > .tgwv-image__img {
    aspect-ratio: var(--tgwv-img-ar-md, var(--tgwv-img-ar-lg, auto));
  }
}

@media (max-width: 767px) {
  .tgwv-image.tgwv-image-responsive {
    width: var(--tgwv-img-mw-sm, var(--tgwv-img-mw-md, var(--tgwv-img-mw-lg, 100%)));
    margin-left: var(--tgwv-img-ml-sm, var(--tgwv-img-ml-md, var(--tgwv-img-ml-lg, 0)));
    margin-right: var(--tgwv-img-mr-sm, var(--tgwv-img-mr-md, var(--tgwv-img-mr-lg, 0)));
    text-align: var(--tgwv-img-ta-sm, var(--tgwv-img-ta-md, var(--tgwv-img-ta-lg, left)));
  }

  .tgwv-image-responsive .tgwv-image-link,
  .tgwv-image-responsive .tgwv-image__img {
    border-radius: var(--tgwv-img-radius-sm, var(--tgwv-img-radius-md, var(--tgwv-img-radius-lg, 0)));
  }

  .tgwv-image--framed .tgwv-image-link,
  .tgwv-image--framed > .tgwv-image__img {
    aspect-ratio: var(--tgwv-img-ar-sm, var(--tgwv-img-ar-md, var(--tgwv-img-ar-lg, auto)));
  }
}

.tgwv-quote {
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--tgwv-brand, #000000);
  background: rgba(0, 0, 0, 0.03);
}
.tgwv-quote p {
  margin: 0;
  font-style: italic;
}
.tgwv-quote__author {
  margin: 0.75rem 0 0;
  font-size: 14px;
  font-style: normal;
  color: #646970;
}

.tgwv-video-wrap {
  position: relative;
  width: var(--tgwv-video-mw-lg, 100%);
  max-width: 100%;
  margin: 0.5rem 0;
  margin-left: var(--tgwv-video-ml-lg, auto);
  margin-right: var(--tgwv-video-mr-lg, auto);
}
.tgwv-video,
.tgwv-embed {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.tgwv-embed-wrap {
  width: var(--tgwv-embed-mw-lg, 100%);
  max-width: 100%;
  margin-left: var(--tgwv-embed-ml-lg, auto);
  margin-right: var(--tgwv-embed-mr-lg, auto);
}
.tgwv-video.tgwv-video-responsive {
  border-radius: var(--tgwv-video-poster-radius-lg, 0);
  overflow: hidden;
}
.tgwv-video iframe,
.tgwv-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.tgwv-embed {
  margin: 0.5rem 0;
}
.tgwv-embed-responsive {
  height: var(--tgwv-embed-h-lg, 400px);
  border-radius: var(--tgwv-embed-radius-lg, 0);
  overflow: hidden;
}
.tgwv-embed-responsive.tgwv-embed--aspect {
  height: auto;
  aspect-ratio: var(--tgwv-embed-ar-lg, 16 / 9);
}

@media (max-width: 1199px) and (min-width: 768px) {
  .tgwv-embed-wrap {
    width: var(--tgwv-embed-mw-md, var(--tgwv-embed-mw-lg, 100%));
    margin-left: var(--tgwv-embed-ml-md, var(--tgwv-embed-ml-lg, auto));
    margin-right: var(--tgwv-embed-mr-md, var(--tgwv-embed-mr-lg, auto));
  }
  .tgwv-embed-responsive {
    height: var(--tgwv-embed-h-md, var(--tgwv-embed-h-lg, 400px));
    border-radius: var(
      --tgwv-embed-radius-md,
      var(--tgwv-embed-radius-lg, 0)
    );
  }
  .tgwv-embed-responsive.tgwv-embed--aspect {
    height: auto;
    aspect-ratio: var(--tgwv-embed-ar-md, var(--tgwv-embed-ar-lg, 16 / 9));
  }
  .tgwv-video-wrap {
    width: var(--tgwv-video-mw-md, var(--tgwv-video-mw-lg, 100%));
    margin-left: var(--tgwv-video-ml-md, var(--tgwv-video-ml-lg, auto));
    margin-right: var(--tgwv-video-mr-md, var(--tgwv-video-mr-lg, auto));
  }
  .tgwv-video.tgwv-video-responsive {
    border-radius: var(
      --tgwv-video-poster-radius-md,
      var(--tgwv-video-poster-radius-lg, 0)
    );
  }
}

@media (max-width: 767px) {
  .tgwv-embed-wrap {
    width: var(--tgwv-embed-mw-sm, var(--tgwv-embed-mw-md, var(--tgwv-embed-mw-lg, 100%)));
    margin-left: var(
      --tgwv-embed-ml-sm,
      var(--tgwv-embed-ml-md, var(--tgwv-embed-ml-lg, auto))
    );
    margin-right: var(
      --tgwv-embed-mr-sm,
      var(--tgwv-embed-mr-md, var(--tgwv-embed-mr-lg, auto))
    );
  }
  .tgwv-embed-responsive {
    height: var(--tgwv-embed-h-sm, var(--tgwv-embed-h-md, var(--tgwv-embed-h-lg, 400px)));
    border-radius: var(
      --tgwv-embed-radius-sm,
      var(--tgwv-embed-radius-md, var(--tgwv-embed-radius-lg, 0))
    );
  }
  .tgwv-embed-responsive.tgwv-embed--aspect {
    height: auto;
    aspect-ratio: var(
      --tgwv-embed-ar-sm,
      var(--tgwv-embed-ar-md, var(--tgwv-embed-ar-lg, 16 / 9))
    );
  }
  .tgwv-video-wrap {
    width: var(--tgwv-video-mw-sm, var(--tgwv-video-mw-md, var(--tgwv-video-mw-lg, 100%)));
    margin-left: var(
      --tgwv-video-ml-sm,
      var(--tgwv-video-ml-md, var(--tgwv-video-ml-lg, auto))
    );
    margin-right: var(
      --tgwv-video-mr-sm,
      var(--tgwv-video-mr-md, var(--tgwv-video-mr-lg, auto))
    );
  }
  .tgwv-video.tgwv-video-responsive {
    border-radius: var(
      --tgwv-video-poster-radius-sm,
      var(--tgwv-video-poster-radius-md, var(--tgwv-video-poster-radius-lg, 0))
    );
  }
}

.tgwv-video-responsive {
  aspect-ratio: var(--tgwv-video-ar-lg, 16 / 9);
}

@media (max-width: 1199px) and (min-width: 768px) {
  .tgwv-video-responsive {
    aspect-ratio: var(--tgwv-video-ar-md, var(--tgwv-video-ar-lg, 16 / 9));
  }
}

@media (max-width: 767px) {
  .tgwv-video-responsive {
    aspect-ratio: var(--tgwv-video-ar-sm, var(--tgwv-video-ar-md, var(--tgwv-video-ar-lg, 16 / 9)));
  }
}

.tgwv-video-aspect-169 {
  aspect-ratio: 16 / 9;
}
.tgwv-video-aspect-43 {
  aspect-ratio: 4 / 3;
}
.tgwv-video__caption {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #646970;
  text-align: center;
}
.tgwv-video--shadow-soft,
.tgwv-video-wrap.tgwv-video--shadow-soft .tgwv-video {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.tgwv-video--shadow-medium,
.tgwv-video-wrap.tgwv-video--shadow-medium .tgwv-video {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}
.tgwv-video.tgwv-video--poster.tgwv-video-responsive {
  overflow: hidden;
}
.tgwv-video--poster .tgwv-youtube,
.tgwv-video--poster .tgwv-native-video {
  margin: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}
.tgwv-video--poster .tgwv-native-video {
  position: relative;
}
.tgwv-video--poster .tgwv-native-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.12);
  cursor: pointer;
}
.tgwv-video--poster figure.tgwv-native-video.tgwv-native-video-is-playing .tgwv-native-video-overlay {
  display: none;
}
.tgwv-video--poster .tgwv-youtube-poster,
.tgwv-video--poster .tgwv-native-video-overlay,
.tgwv-video--poster .tgwv-video-poster-fallback {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  text-decoration: none;
}
.tgwv-video--poster .tgwv-youtube-poster img,
.tgwv-video--poster .tgwv-native-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.tgwv-page-builder-output .tgwv-video--poster .tgwv-youtube-poster,
.tgwv-page-builder-output .tgwv-video--poster .tgwv-youtube-poster img {
  border-radius: inherit;
}
.tgwv-video--poster .tgwv-native-video video {
  pointer-events: none;
}
.tgwv-video--poster .tgwv-youtube-poster .tgwv-youtube-play,
.tgwv-video--poster .tgwv-native-video-overlay .tgwv-native-video-play,
.tgwv-video--poster .tgwv-video-poster-fallback .tgwv-native-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(56px, 11vw, 76px);
  height: clamp(56px, 11vw, 76px);
  border-radius: 50%;
  background: var(--tgwv-color-light);
  box-shadow: none;
  pointer-events: none;
  transition: transform 0.2s ease;
}
.tgwv-video--poster .tgwv-native-video-overlay .tgwv-native-video-play,
.tgwv-video--poster .tgwv-video-poster-fallback .tgwv-native-video-play {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  flex-shrink: 0;
}
.tgwv-video--poster .tgwv-youtube-poster .tgwv-youtube-play::after,
.tgwv-video--poster .tgwv-native-video-overlay .tgwv-native-video-play::after,
.tgwv-video--poster .tgwv-video-poster-fallback .tgwv-native-video-play::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-36%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 17px;
  border-color: transparent transparent transparent #2d9f47;
}
.tgwv-video--poster .tgwv-youtube-poster:hover .tgwv-youtube-play {
  transform: translate(-50%, -50%) scale(1.06);
}
.tgwv-video--poster .tgwv-native-video-overlay:hover .tgwv-native-video-play,
.tgwv-video--poster .tgwv-video-poster-fallback:hover .tgwv-native-video-play {
  transform: scale(1.06);
}
.tgwv-video--play-dark .tgwv-youtube-play,
.tgwv-video--play-dark .tgwv-native-video-play {
  background: rgba(17, 17, 17, 0.88);
}
.tgwv-video--play-dark .tgwv-youtube-play::after,
.tgwv-video--play-dark .tgwv-native-video-play::after {
  border-color: transparent transparent transparent #fff;
}
.tgwv-video--play-light .tgwv-youtube-play,
.tgwv-video--play-light .tgwv-native-video-play {
  background: rgba(255, 255, 255, 0.95);
}
.tgwv-video--play-light .tgwv-youtube-play::after,
.tgwv-video--play-light .tgwv-native-video-play::after {
  border-color: transparent transparent transparent #111;
}
.tgwv-video--play-hidden .tgwv-youtube-play,
.tgwv-video--play-hidden .tgwv-native-video-play {
  display: none;
}

.tgwv-video-placeholder,
.tgwv-embed-placeholder {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tgwv-color-light, #ffffff);
  color: #646970;
  font-size: 14px;
  border-radius: 4px;
  padding: 16px;
  text-align: center;
}

.tgwv-icon-wrap {
  line-height: 1;
}
.tgwv-icon-wrap .tgwv-icon-link {
  text-decoration: none;
  display: inline-block;
}
.tgwv-icon-size-sm { font-size: 20px; }
.tgwv-icon-size-md { font-size: 32px; }
.tgwv-icon-size-lg { font-size: 44px; }
.tgwv-icon-size-xl { font-size: 56px; }
