@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

.snap-highlight-viewer-ux,
.snap-highlight-viewer-ux * {
  box-sizing: border-box !important;
}

.snap-highlight-viewer-ux {
  --shv-primary: #ffcc19;
  --shv-secondary: #12d7a8;
  --shv-accent: #141414;
  --shv-soft: #fffbea;
  --shv-text: #1d1d1f;
  --shv-muted: #62646b;
  --shv-border: rgba(20, 20, 20, 0.1);
  --shv-shadow: rgba(255, 204, 25, 0.22);
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
  background: #ffffff;
  color: var(--shv-text);
  font-family: inherit;
}

.snap-highlight-viewer-ux .shv-section {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

.snap-highlight-viewer-ux .shv-section-one,
.snap-highlight-viewer-ux .shv-section-three {
  background: #ffffff !important;
}

.snap-highlight-viewer-ux .shv-section-two {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 204, 25, 0.2), transparent 34%),
    linear-gradient(180deg, #fffdf2 0%, #f7fff8 100%) !important;
}

.snap-highlight-viewer-ux .shv-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  min-width: 0 !important;
}

.snap-highlight-viewer-ux h2,
.snap-highlight-viewer-ux .shv-intro,
.snap-highlight-viewer-ux h3,
.snap-highlight-viewer-ux p {
  text-align: center !important;
}

.snap-highlight-viewer-ux h2 {
  margin: 0 auto !important;
  max-width: 980px;
  color: var(--shv-text);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.snap-highlight-viewer-ux .shv-intro {
  margin: 16px auto 0 !important;
  max-width: 760px;
  color: var(--shv-muted);
  line-height: 1.7;
  font-weight: 500;
}

.snap-highlight-viewer-ux .shv-grid {
  display: grid !important;
  align-items: stretch !important;
  width: 100% !important;
  min-width: 0 !important;
}

.snap-highlight-viewer-ux .shv-card {
  position: relative;
  display: grid !important;
  justify-items: center !important;
  align-content: start !important;
  height: 100% !important;
  min-width: 0 !important;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--shv-border);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(20, 20, 20, 0.07);
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease, background 320ms ease;
}

.snap-highlight-viewer-ux .shv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 204, 25, 0.16), rgba(18, 215, 168, 0.08), transparent 58%);
  opacity: 0;
  transition: opacity 320ms ease, transform 320ms ease;
  transform: translateY(12px);
}

.snap-highlight-viewer-ux .shv-card-tint {
  background: rgba(255, 255, 255, 0.86);
}

.snap-highlight-viewer-ux .shv-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255, 204, 25, 0.55);
  box-shadow: 0 24px 56px var(--shv-shadow), 0 10px 24px rgba(18, 215, 168, 0.1);
}

.snap-highlight-viewer-ux .shv-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.snap-highlight-viewer-ux .shv-icon {
  position: relative;
  z-index: 1;
  display: grid !important;
  place-items: center !important;
  margin: 0 auto !important;
  border-radius: 18px;
  color: var(--shv-accent);
  background:
    linear-gradient(135deg, rgba(255, 204, 25, 0.95), rgba(18, 215, 168, 0.72));
  box-shadow: 0 14px 28px rgba(255, 204, 25, 0.24);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.snap-highlight-viewer-ux .shv-card:hover .shv-icon {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(18, 215, 168, 0.22);
}

.snap-highlight-viewer-ux .shv-i {
  display: inline-block !important;
  line-height: 1 !important;
  text-align: center !important;
}

.snap-highlight-viewer-ux h3 {
  position: relative;
  z-index: 1;
  margin: 0 !important;
  color: var(--shv-text);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.snap-highlight-viewer-ux .shv-card p {
  position: relative;
  z-index: 1;
  margin: 0 !important;
  color: var(--shv-muted);
  font-weight: 500;
  line-height: 1.62;
}

.snap-highlight-viewer-ux.shv-js .shv-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.snap-highlight-viewer-ux.shv-js .shv-reveal.shv-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 560ms ease, transform 560ms ease, box-shadow 320ms ease, border-color 320ms ease, background 320ms ease;
}

@media (min-width: 1024px) {
  .snap-highlight-viewer-ux .shv-section {
    padding: 92px 0 !important;
  }

  .snap-highlight-viewer-ux .shv-container {
    padding: 0 28px !important;
  }

  .snap-highlight-viewer-ux h2 {
    font-size: 42px;
    white-space: nowrap;
  }

  .snap-highlight-viewer-ux .shv-intro {
    font-size: 17px;
  }

  .snap-highlight-viewer-ux .shv-grid {
    gap: 24px;
    margin-top: 44px;
  }

  .snap-highlight-viewer-ux .shv-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .snap-highlight-viewer-ux .shv-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .snap-highlight-viewer-ux .shv-card {
    min-height: 300px;
    padding: 36px 26px 30px;
  }

  .snap-highlight-viewer-ux .shv-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 24px !important;
    font-size: 28px;
  }

  .snap-highlight-viewer-ux h3 {
    font-size: 20px;
    margin-bottom: 14px !important;
  }

  .snap-highlight-viewer-ux .shv-card p {
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .snap-highlight-viewer-ux .shv-section {
    padding: 74px 0 !important;
  }

  .snap-highlight-viewer-ux .shv-container {
    padding: 0 24px !important;
  }

  .snap-highlight-viewer-ux h2 {
    font-size: 34px;
  }

  .snap-highlight-viewer-ux .shv-intro {
    font-size: 16px;
  }

  .snap-highlight-viewer-ux .shv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px;
    margin-top: 38px;
  }

  .snap-highlight-viewer-ux .shv-card {
    min-height: 270px;
    padding: 32px 24px 28px;
    border-radius: 20px;
  }

  .snap-highlight-viewer-ux .shv-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 22px !important;
    font-size: 25px;
  }

  .snap-highlight-viewer-ux h3 {
    font-size: 19px;
    margin-bottom: 12px !important;
  }

  .snap-highlight-viewer-ux .shv-card p {
    font-size: 15px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .snap-highlight-viewer-ux .shv-section {
    padding: 54px 0 !important;
  }

  .snap-highlight-viewer-ux .shv-container {
    padding: 0 16px !important;
  }

  .snap-highlight-viewer-ux h2 {
    font-size: 28px;
  }

  .snap-highlight-viewer-ux .shv-intro {
    font-size: 14px;
    line-height: 1.62;
  }

  .snap-highlight-viewer-ux .shv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px;
    margin-top: 30px;
  }

  .snap-highlight-viewer-ux .shv-card {
    min-height: 236px;
    padding: 23px 14px 20px;
    border-radius: 17px;
  }

  .snap-highlight-viewer-ux .shv-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px !important;
    font-size: 21px;
    border-radius: 15px;
  }

  .snap-highlight-viewer-ux h3 {
    font-size: 16px;
    margin-bottom: 9px !important;
  }

  .snap-highlight-viewer-ux .shv-card p {
    font-size: 13px;
    line-height: 1.48;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .snap-highlight-viewer-ux .shv-section {
    padding: 48px 0 !important;
  }

  .snap-highlight-viewer-ux .shv-container {
    padding: 0 12px !important;
  }

  .snap-highlight-viewer-ux h2 {
    font-size: 25px;
  }

  .snap-highlight-viewer-ux .shv-intro {
    font-size: 13px;
    line-height: 1.55;
  }

  .snap-highlight-viewer-ux .shv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 11px;
    margin-top: 26px;
  }

  .snap-highlight-viewer-ux .shv-card {
    min-height: 224px;
    padding: 20px 11px 18px;
    border-radius: 15px;
  }

  .snap-highlight-viewer-ux .shv-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 14px !important;
    font-size: 19px;
    border-radius: 14px;
  }

  .snap-highlight-viewer-ux h3 {
    font-size: 15px;
    margin-bottom: 8px !important;
  }

  .snap-highlight-viewer-ux .shv-card p {
    font-size: 12.5px;
    line-height: 1.42;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .snap-highlight-viewer-ux .shv-section {
    padding: 42px 0 !important;
  }

  .snap-highlight-viewer-ux .shv-container {
    padding: 0 10px !important;
  }

  .snap-highlight-viewer-ux h2 {
    font-size: 22px;
  }

  .snap-highlight-viewer-ux .shv-intro {
    font-size: 12.5px;
    line-height: 1.5;
  }

  .snap-highlight-viewer-ux .shv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px;
    margin-top: 22px;
  }

  .snap-highlight-viewer-ux .shv-card {
    min-height: 214px;
    padding: 18px 9px 16px;
    border-radius: 14px;
  }

  .snap-highlight-viewer-ux .shv-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px !important;
    font-size: 17px;
    border-radius: 13px;
  }

  .snap-highlight-viewer-ux h3 {
    font-size: 14px;
    margin-bottom: 7px !important;
  }

  .snap-highlight-viewer-ux .shv-card p {
    font-size: 12px;
    line-height: 1.36;
  }
}

@media (max-width: 319px) {
  .snap-highlight-viewer-ux .shv-grid {
    grid-template-columns: 1fr !important;
  }
}