@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');

.schv-snapchat-highlight-viewer,
.schv-snapchat-highlight-viewer * {
  box-sizing: border-box;
  min-width: 0;
}

.schv-snapchat-highlight-viewer {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #17201c;
  font-family: inherit;
  --schv-primary: #12b886;
  --schv-secondary: #ffcc00;
  --schv-accent: #101820;
  --schv-soft: #f1fbf6;
  --schv-border: rgba(18, 184, 134, 0.18);
  --schv-shadow: rgba(16, 24, 32, 0.1);
  --schv-glow: rgba(255, 204, 0, 0.28);
}

.schv-snapchat-highlight-viewer .schv-section {
  width: 100% !important;
  text-align: center;
}

.schv-snapchat-highlight-viewer .schv-section-one,
.schv-snapchat-highlight-viewer .schv-section-three {
  background: #ffffff !important;
}

.schv-snapchat-highlight-viewer .schv-section-two {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 204, 0, 0.16), transparent 36%),
    linear-gradient(180deg, #f6fff9 0%, #f1fbf6 100%);
}

.schv-snapchat-highlight-viewer .schv-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.schv-snapchat-highlight-viewer h2,
.schv-snapchat-highlight-viewer h3,
.schv-snapchat-highlight-viewer p {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

.schv-snapchat-highlight-viewer h2 {
  color: #101820;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  margin-top: 0;
}

.schv-snapchat-highlight-viewer .schv-intro {
  color: #51615b;
  line-height: 1.7;
  margin-top: 0;
}

.schv-snapchat-highlight-viewer .schv-grid {
  display: grid !important;
  align-items: stretch !important;
  width: 100% !important;
}

.schv-snapchat-highlight-viewer .schv-card {
  height: 100% !important;
  display: grid !important;
  justify-items: center !important;
  align-content: start !important;
  text-align: center !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 1)),
    radial-gradient(circle at 50% 0%, rgba(18, 184, 134, 0.12), transparent 48%);
  border: 1px solid var(--schv-border);
  box-shadow: 0 18px 46px var(--schv-shadow);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
  position: relative;
  overflow: hidden;
}

.schv-snapchat-highlight-viewer .schv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 184, 134, 0.11), rgba(255, 204, 0, 0.1));
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.schv-snapchat-highlight-viewer .schv-card:hover {
  transform: translateY(-7px) scale(1.01);
  border-color: rgba(18, 184, 134, 0.42);
  box-shadow: 0 24px 58px rgba(16, 24, 32, 0.15), 0 0 0 4px var(--schv-glow);
}

.schv-snapchat-highlight-viewer .schv-card:hover::before {
  opacity: 1;
}

.schv-snapchat-highlight-viewer .schv-card:hover .schv-icon {
  transform: translateY(-4px);
  background-position: 100% 50%;
}

.schv-snapchat-highlight-viewer .schv-card:hover .schv-i {
  transform: scale(1.08);
}

.schv-snapchat-highlight-viewer .schv-icon {
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  color: #101820;
  background: linear-gradient(135deg, var(--schv-secondary), var(--schv-primary), #7ee2bd);
  background-size: 180% 180%;
  box-shadow: 0 12px 28px rgba(18, 184, 134, 0.22);
  transition: transform 260ms ease, background-position 360ms ease;
  position: relative;
  z-index: 1;
}

.schv-snapchat-highlight-viewer .schv-i {
  display: block;
  line-height: 1;
  transition: transform 260ms ease;
}

.schv-snapchat-highlight-viewer h3 {
  color: #101820;
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.schv-snapchat-highlight-viewer .schv-card p {
  color: #5a6862;
  line-height: 1.62;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.schv-snapchat-highlight-viewer .schv-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.schv-snapchat-highlight-viewer .schv-reveal.schv-in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

@media (min-width: 1024px) {
  .schv-snapchat-highlight-viewer .schv-section {
    padding: 86px 0;
  }

  .schv-snapchat-highlight-viewer .schv-container {
    padding: 0 28px;
  }

  .schv-snapchat-highlight-viewer h2 {
    font-size: 42px;
    margin-bottom: 16px;
    white-space: nowrap;
  }

  .schv-snapchat-highlight-viewer .schv-intro {
    max-width: 760px;
    font-size: 17px;
    margin-bottom: 38px;
  }

  .schv-snapchat-highlight-viewer .schv-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .schv-snapchat-highlight-viewer .schv-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }

  .schv-snapchat-highlight-viewer .schv-card {
    min-height: 296px;
    padding: 34px 26px 30px;
    border-radius: 22px;
  }

  .schv-snapchat-highlight-viewer .schv-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    margin-bottom: 22px;
    font-size: 28px;
  }

  .schv-snapchat-highlight-viewer h3 {
    font-size: 20px;
  }

  .schv-snapchat-highlight-viewer .schv-card p {
    font-size: 15px;
    margin-top: 13px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .schv-snapchat-highlight-viewer .schv-section {
    padding: 70px 0;
  }

  .schv-snapchat-highlight-viewer .schv-container {
    padding: 0 24px;
  }

  .schv-snapchat-highlight-viewer h2 {
    font-size: 34px;
    margin-bottom: 14px;
  }

  .schv-snapchat-highlight-viewer .schv-intro {
    max-width: 690px;
    font-size: 16px;
    margin-bottom: 30px;
  }

  .schv-snapchat-highlight-viewer .schv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px;
  }

  .schv-snapchat-highlight-viewer .schv-card {
    min-height: 270px;
    padding: 30px 24px 28px;
    border-radius: 20px;
  }

  .schv-snapchat-highlight-viewer .schv-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    margin-bottom: 19px;
    font-size: 25px;
  }

  .schv-snapchat-highlight-viewer h3 {
    font-size: 19px;
  }

  .schv-snapchat-highlight-viewer .schv-card p {
    font-size: 14.5px;
    margin-top: 12px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .schv-snapchat-highlight-viewer .schv-section {
    padding: 52px 0;
  }

  .schv-snapchat-highlight-viewer .schv-container {
    padding: 0 16px;
  }

  .schv-snapchat-highlight-viewer h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .schv-snapchat-highlight-viewer .schv-intro {
    max-width: 560px;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .schv-snapchat-highlight-viewer .schv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px;
  }

  .schv-snapchat-highlight-viewer .schv-card {
    min-height: 232px;
    padding: 22px 14px 20px;
    border-radius: 17px;
  }

  .schv-snapchat-highlight-viewer .schv-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    margin-bottom: 15px;
    font-size: 21px;
  }

  .schv-snapchat-highlight-viewer h3 {
    font-size: 16px;
  }

  .schv-snapchat-highlight-viewer .schv-card p {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 10px;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .schv-snapchat-highlight-viewer .schv-section {
    padding: 46px 0;
  }

  .schv-snapchat-highlight-viewer .schv-container {
    padding: 0 12px;
  }

  .schv-snapchat-highlight-viewer h2 {
    font-size: 25px;
    line-height: 1.16;
    margin-bottom: 10px;
  }

  .schv-snapchat-highlight-viewer .schv-intro {
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .schv-snapchat-highlight-viewer .schv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }

  .schv-snapchat-highlight-viewer .schv-card {
    min-height: 224px;
    padding: 18px 11px 17px;
    border-radius: 15px;
  }

  .schv-snapchat-highlight-viewer .schv-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    margin-bottom: 13px;
    font-size: 19px;
  }

  .schv-snapchat-highlight-viewer h3 {
    font-size: 14.5px;
    line-height: 1.22;
  }

  .schv-snapchat-highlight-viewer .schv-card p {
    font-size: 12.4px;
    line-height: 1.45;
    margin-top: 8px;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .schv-snapchat-highlight-viewer .schv-section {
    padding: 40px 0;
  }

  .schv-snapchat-highlight-viewer .schv-container {
    padding: 0 10px;
  }

  .schv-snapchat-highlight-viewer h2 {
    font-size: 22px;
    line-height: 1.18;
    margin-bottom: 9px;
  }

  .schv-snapchat-highlight-viewer .schv-intro {
    font-size: 12.8px;
    line-height: 1.48;
    margin-bottom: 18px;
  }

  .schv-snapchat-highlight-viewer .schv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }

  .schv-snapchat-highlight-viewer .schv-card {
    min-height: 218px;
    padding: 16px 9px 15px;
    border-radius: 14px;
  }

  .schv-snapchat-highlight-viewer .schv-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    margin-bottom: 11px;
    font-size: 17px;
  }

  .schv-snapchat-highlight-viewer h3 {
    font-size: 13.5px;
    line-height: 1.2;
  }

  .schv-snapchat-highlight-viewer .schv-card p {
    font-size: 11.8px;
    line-height: 1.42;
    margin-top: 7px;
  }
}