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

.ytcv-viewer-wrap,
.ytcv-viewer-wrap * {
  box-sizing: border-box;
  min-width: 0;
}

.ytcv-viewer-wrap {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #182026;
  font-family: inherit;
  --ytcv-primary: #e62117;
  --ytcv-secondary: #111827;
  --ytcv-accent: #ffb703;
  --ytcv-tint: #fff7f5;
  --ytcv-border: rgba(230, 33, 23, 0.16);
  --ytcv-border-strong: rgba(230, 33, 23, 0.32);
  --ytcv-text: #182026;
  --ytcv-muted: #5f6b76;
  --ytcv-shadow: rgba(87, 23, 18, 0.12);
  --ytcv-shadow-hover: rgba(230, 33, 23, 0.18);
}

.ytcv-viewer-wrap .ytcv-section {
  width: 100% !important;
  position: relative;
}

.ytcv-viewer-wrap .ytcv-section-white {
  background: #ffffff !important;
}

.ytcv-viewer-wrap .ytcv-section-tint {
  background:
    radial-gradient(circle at 50% 0%, rgba(230, 33, 23, 0.055), transparent 34%),
    linear-gradient(180deg, #fff7f5 0%, #fffdfc 100%) !important;
}

.ytcv-viewer-wrap .ytcv-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  position: relative;
}

.ytcv-viewer-wrap .ytcv-heading {
  margin: 0 auto;
  color: var(--ytcv-text);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
  text-align: center !important;
  text-transform: capitalize;
}

.ytcv-viewer-wrap .ytcv-intro {
  margin: 0 auto;
  max-width: 780px;
  color: var(--ytcv-muted);
  font-weight: 400;
  line-height: 1.7;
  text-align: center !important;
}

.ytcv-viewer-wrap .ytcv-grid {
  display: grid !important;
  align-items: stretch !important;
  width: 100% !important;
}

.ytcv-viewer-wrap .ytcv-card {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: start;
  height: 100% !important;
  overflow: hidden;
  text-align: center !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 50% 0%, rgba(230, 33, 23, 0.08), transparent 45%);
  border: 1px solid var(--ytcv-border);
  border-radius: 22px;
  box-shadow: 0 18px 44px var(--ytcv-shadow);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.ytcv-viewer-wrap .ytcv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(135deg, rgba(230, 33, 23, 0.09), rgba(255, 183, 3, 0.08));
  transition: opacity 260ms ease;
}

.ytcv-viewer-wrap .ytcv-card-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 248, 0.96)),
    radial-gradient(circle at 50% 0%, rgba(255, 183, 3, 0.1), transparent 48%);
}

.ytcv-viewer-wrap .ytcv-icon {
  display: grid;
  place-items: center;
  margin: 0 auto;
  color: #ffffff;
  background:
    linear-gradient(135deg, var(--ytcv-primary), #ff4b3e 52%, var(--ytcv-secondary));
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(230, 33, 23, 0.22);
  text-align: center !important;
  transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

.ytcv-viewer-wrap .ytcv-i {
  line-height: 1;
  color: #ffffff;
  text-align: center !important;
}

.ytcv-viewer-wrap .ytcv-card h3 {
  margin: 0;
  color: var(--ytcv-text);
  font-weight: 780;
  line-height: 1.28;
  letter-spacing: 0;
  text-align: center !important;
}

.ytcv-viewer-wrap .ytcv-card p {
  margin: 0;
  color: var(--ytcv-muted);
  font-weight: 400;
  line-height: 1.62;
  text-align: center !important;
}

.ytcv-viewer-wrap .ytcv-card:hover {
  transform: translateY(-8px) scale(1.012);
  border-color: var(--ytcv-border-strong);
  box-shadow: 0 26px 58px var(--ytcv-shadow-hover);
}

.ytcv-viewer-wrap .ytcv-card:hover::before {
  opacity: 1;
}

.ytcv-viewer-wrap .ytcv-card:hover .ytcv-icon {
  transform: translateY(-4px);
  filter: saturate(1.08);
  box-shadow: 0 18px 38px rgba(230, 33, 23, 0.28);
}

.ytcv-viewer-wrap.ytcv-js .ytcv-card {
  opacity: 0;
  transform: translateY(18px);
}

.ytcv-viewer-wrap.ytcv-js .ytcv-card.ytcv-in {
  opacity: 1;
  transform: translateY(0);
}

.ytcv-viewer-wrap.ytcv-js .ytcv-card.ytcv-in:hover {
  transform: translateY(-8px) scale(1.012);
}

@media (min-width: 1024px) {
  .ytcv-viewer-wrap .ytcv-section {
    padding: 92px 0 !important;
  }

  .ytcv-viewer-wrap .ytcv-container {
    padding: 0 28px !important;
  }

  .ytcv-viewer-wrap .ytcv-heading {
    max-width: 1060px;
    font-size: 42px;
  }

  .ytcv-viewer-wrap .ytcv-intro {
    margin-top: 18px;
    font-size: 17px;
  }

  .ytcv-viewer-wrap .ytcv-grid {
    margin-top: 42px;
    gap: 26px;
  }

  .ytcv-viewer-wrap .ytcv-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ytcv-viewer-wrap .ytcv-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ytcv-viewer-wrap .ytcv-card {
    min-height: 300px;
    padding: 34px 26px 30px;
    border-radius: 22px;
  }

  .ytcv-viewer-wrap .ytcv-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 24px;
    border-radius: 18px;
  }

  .ytcv-viewer-wrap .ytcv-i {
    font-size: 28px;
  }

  .ytcv-viewer-wrap .ytcv-card h3 {
    font-size: 20px;
  }

  .ytcv-viewer-wrap .ytcv-card p {
    margin-top: 13px;
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .ytcv-viewer-wrap .ytcv-section {
    padding: 76px 0 !important;
  }

  .ytcv-viewer-wrap .ytcv-container {
    padding: 0 24px !important;
  }

  .ytcv-viewer-wrap .ytcv-heading {
    max-width: 760px;
    font-size: 34px;
  }

  .ytcv-viewer-wrap .ytcv-intro {
    margin-top: 16px;
    font-size: 16px;
  }

  .ytcv-viewer-wrap .ytcv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 34px;
    gap: 22px;
  }

  .ytcv-viewer-wrap .ytcv-card {
    min-height: 270px;
    padding: 30px 24px 27px;
    border-radius: 20px;
  }

  .ytcv-viewer-wrap .ytcv-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 21px;
    border-radius: 16px;
  }

  .ytcv-viewer-wrap .ytcv-i {
    font-size: 25px;
  }

  .ytcv-viewer-wrap .ytcv-card h3 {
    font-size: 18px;
  }

  .ytcv-viewer-wrap .ytcv-card p {
    margin-top: 11px;
    font-size: 14px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .ytcv-viewer-wrap .ytcv-section {
    padding: 58px 0 !important;
  }

  .ytcv-viewer-wrap .ytcv-container {
    padding: 0 18px !important;
  }

  .ytcv-viewer-wrap .ytcv-heading {
    max-width: 430px;
    font-size: 27px;
  }

  .ytcv-viewer-wrap .ytcv-intro {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.6;
  }

  .ytcv-viewer-wrap .ytcv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 26px;
    gap: 14px;
  }

  .ytcv-viewer-wrap .ytcv-card {
    min-height: 236px;
    padding: 22px 14px 20px;
    border-radius: 16px;
  }

  .ytcv-viewer-wrap .ytcv-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
    border-radius: 14px;
  }

  .ytcv-viewer-wrap .ytcv-i {
    font-size: 20px;
  }

  .ytcv-viewer-wrap .ytcv-card h3 {
    font-size: 15px;
  }

  .ytcv-viewer-wrap .ytcv-card p {
    margin-top: 8px;
    font-size: 12.5px;
    line-height: 1.48;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .ytcv-viewer-wrap .ytcv-section {
    padding: 50px 0 !important;
  }

  .ytcv-viewer-wrap .ytcv-container {
    padding: 0 14px !important;
  }

  .ytcv-viewer-wrap .ytcv-heading {
    max-width: 360px;
    font-size: 24px;
  }

  .ytcv-viewer-wrap .ytcv-intro {
    margin-top: 11px;
    font-size: 13px;
    line-height: 1.56;
  }

  .ytcv-viewer-wrap .ytcv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
    gap: 12px;
  }

  .ytcv-viewer-wrap .ytcv-card {
    min-height: 226px;
    padding: 20px 12px 18px;
    border-radius: 15px;
  }

  .ytcv-viewer-wrap .ytcv-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 13px;
    border-radius: 13px;
  }

  .ytcv-viewer-wrap .ytcv-i {
    font-size: 18px;
  }

  .ytcv-viewer-wrap .ytcv-card h3 {
    font-size: 14px;
  }

  .ytcv-viewer-wrap .ytcv-card p {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.43;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .ytcv-viewer-wrap .ytcv-section {
    padding: 44px 0 !important;
  }

  .ytcv-viewer-wrap .ytcv-container {
    padding: 0 10px !important;
  }

  .ytcv-viewer-wrap .ytcv-heading {
    max-width: 300px;
    font-size: 21px;
  }

  .ytcv-viewer-wrap .ytcv-intro {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.5;
  }

  .ytcv-viewer-wrap .ytcv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
    gap: 10px;
  }

  .ytcv-viewer-wrap .ytcv-card {
    min-height: 218px;
    padding: 18px 9px 16px;
    border-radius: 14px;
  }

  .ytcv-viewer-wrap .ytcv-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    border-radius: 12px;
  }

  .ytcv-viewer-wrap .ytcv-i {
    font-size: 16px;
  }

  .ytcv-viewer-wrap .ytcv-card h3 {
    font-size: 13px;
  }

  .ytcv-viewer-wrap .ytcv-card p {
    margin-top: 7px;
    font-size: 11px;
    line-height: 1.38;
  }
}

@media (max-width: 319px) {
  .ytcv-viewer-wrap .ytcv-section {
    padding: 40px 0 !important;
  }

  .ytcv-viewer-wrap .ytcv-container {
    padding: 0 10px !important;
  }

  .ytcv-viewer-wrap .ytcv-heading {
    font-size: 20px;
  }

  .ytcv-viewer-wrap .ytcv-intro {
    margin-top: 10px;
    font-size: 12px;
  }

  .ytcv-viewer-wrap .ytcv-grid {
    grid-template-columns: 1fr;
    margin-top: 18px;
    gap: 10px;
  }

  .ytcv-viewer-wrap .ytcv-card {
    min-height: 210px;
    padding: 18px 12px;
  }
}