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

#ytav-section-lens,
#ytav-section-lens * {
  box-sizing: border-box;
  min-width: 0;
}

#ytav-section-lens {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #1d232b;
  font-family: Arial, Helvetica, sans-serif;
  --ytav-primary: #e62117;
  --ytav-secondary: #ff8a4c;
  --ytav-accent: #111827;
  --ytav-soft: #fff4f1;
  --ytav-border: rgba(230, 33, 23, 0.16);
  --ytav-shadow: rgba(230, 33, 23, 0.14);
  --ytav-text: #1d232b;
  --ytav-muted: #596171;
}

#ytav-section-lens .ytav-band {
  width: 100% !important;
  overflow: hidden;
}

#ytav-section-lens .ytav-band-white {
  background: #ffffff;
}

#ytav-section-lens .ytav-band-tint {
  background: linear-gradient(180deg, #fff8f6 0%, #fff2ee 100%);
}

#ytav-section-lens .ytav-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

#ytav-section-lens h2,
#ytav-section-lens .ytav-intro,
#ytav-section-lens h3,
#ytav-section-lens p {
  text-align: center !important;
}

#ytav-section-lens h2 {
  color: var(--ytav-text);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  margin: 0 auto;
  max-width: 980px;
}

#ytav-section-lens .ytav-intro {
  color: var(--ytav-muted);
  line-height: 1.65;
  margin: 14px auto 0;
  max-width: 760px;
  font-weight: 500;
}

#ytav-section-lens .ytav-grid {
  display: grid !important;
  align-items: stretch !important;
}

#ytav-section-lens .ytav-card {
  position: relative;
  height: 100% !important;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--ytav-border);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.07);
  overflow: hidden;
  transform: translateY(18px);
  opacity: 1;
  transition: transform 360ms ease, box-shadow 360ms ease, border-color 360ms ease, background 360ms ease;
}

#ytav-section-lens .ytav-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(230, 33, 23, 0.12), transparent 42%);
  opacity: 0;
  transition: opacity 360ms ease;
  pointer-events: none;
}

#ytav-section-lens .ytav-card.ytav-visible {
  transform: translateY(0);
}

#ytav-section-lens .ytav-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(230, 33, 23, 0.34);
  box-shadow: 0 24px 58px var(--ytav-shadow);
  background: #ffffff;
}

#ytav-section-lens .ytav-card:hover:before {
  opacity: 1;
}

#ytav-section-lens .ytav-icon {
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ytav-primary), var(--ytav-secondary));
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(230, 33, 23, 0.24);
  transition: transform 360ms ease, box-shadow 360ms ease;
}

#ytav-section-lens .ytav-card:hover .ytav-icon {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(230, 33, 23, 0.3);
}

#ytav-section-lens .ytav-i {
  color: #ffffff;
  line-height: 1;
}

#ytav-section-lens h3 {
  position: relative;
  color: var(--ytav-text);
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: 0;
  margin: 0;
}

#ytav-section-lens .ytav-card p {
  position: relative;
  color: var(--ytav-muted);
  line-height: 1.58;
  margin: 0 auto;
  font-weight: 500;
}

@media (min-width: 1024px) {
  #ytav-section-lens .ytav-band {
    padding: 92px 0;
  }

  #ytav-section-lens .ytav-container {
    padding: 0 28px;
  }

  #ytav-section-lens h2 {
    font-size: 42px;
    white-space: nowrap;
  }

  #ytav-section-lens .ytav-intro {
    font-size: 17px;
    margin-bottom: 42px;
  }

  #ytav-section-lens .ytav-grid {
    gap: 24px;
  }

  #ytav-section-lens .ytav-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #ytav-section-lens .ytav-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  #ytav-section-lens .ytav-card {
    min-height: 292px;
    padding: 34px 26px;
  }

  #ytav-section-lens .ytav-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
  }

  #ytav-section-lens .ytav-i {
    font-size: 28px;
  }

  #ytav-section-lens h3 {
    font-size: 21px;
    margin-bottom: 12px;
  }

  #ytav-section-lens .ytav-card p {
    font-size: 15.5px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  #ytav-section-lens .ytav-band {
    padding: 76px 0;
  }

  #ytav-section-lens .ytav-container {
    padding: 0 24px;
  }

  #ytav-section-lens h2 {
    font-size: 34px;
  }

  #ytav-section-lens .ytav-intro {
    font-size: 16px;
    margin-bottom: 34px;
  }

  #ytav-section-lens .ytav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  #ytav-section-lens .ytav-card {
    min-height: 270px;
    padding: 30px 24px;
  }

  #ytav-section-lens .ytav-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 22px;
  }

  #ytav-section-lens .ytav-i {
    font-size: 25px;
  }

  #ytav-section-lens h3 {
    font-size: 20px;
    margin-bottom: 11px;
  }

  #ytav-section-lens .ytav-card p {
    font-size: 15px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  #ytav-section-lens .ytav-band {
    padding: 56px 0;
  }

  #ytav-section-lens .ytav-container {
    padding: 0 16px;
  }

  #ytav-section-lens h2 {
    font-size: 28px;
    max-width: 390px;
  }

  #ytav-section-lens .ytav-intro {
    font-size: 14.5px;
    margin-bottom: 24px;
  }

  #ytav-section-lens .ytav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  #ytav-section-lens .ytav-card {
    min-height: 236px;
    padding: 22px 14px;
    border-radius: 18px;
  }

  #ytav-section-lens .ytav-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
  }

  #ytav-section-lens .ytav-i {
    font-size: 21px;
  }

  #ytav-section-lens h3 {
    font-size: 16px;
    margin-bottom: 9px;
  }

  #ytav-section-lens .ytav-card p {
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  #ytav-section-lens .ytav-band {
    padding: 50px 0;
  }

  #ytav-section-lens .ytav-container {
    padding: 0 12px;
  }

  #ytav-section-lens h2 {
    font-size: 25px;
    max-width: 335px;
  }

  #ytav-section-lens .ytav-intro {
    font-size: 13.5px;
    margin-bottom: 20px;
    line-height: 1.55;
  }

  #ytav-section-lens .ytav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  #ytav-section-lens .ytav-card {
    min-height: 224px;
    padding: 18px 11px;
    border-radius: 16px;
  }

  #ytav-section-lens .ytav-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

  #ytav-section-lens .ytav-i {
    font-size: 19px;
  }

  #ytav-section-lens h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  #ytav-section-lens .ytav-card p {
    font-size: 12.4px;
    line-height: 1.46;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  #ytav-section-lens .ytav-band {
    padding: 44px 0;
  }

  #ytav-section-lens .ytav-container {
    padding: 0 10px;
  }

  #ytav-section-lens h2 {
    font-size: 22px;
    max-width: 300px;
  }

  #ytav-section-lens .ytav-intro {
    font-size: 12.8px;
    margin-bottom: 18px;
    line-height: 1.5;
  }

  #ytav-section-lens .ytav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  #ytav-section-lens .ytav-card {
    min-height: 216px;
    padding: 16px 9px;
    border-radius: 15px;
  }

  #ytav-section-lens .ytav-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

  #ytav-section-lens .ytav-i {
    font-size: 18px;
  }

  #ytav-section-lens h3 {
    font-size: 14px;
    margin-bottom: 7px;
  }

  #ytav-section-lens .ytav-card p {
    font-size: 11.8px;
    line-height: 1.42;
  }
}