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

.ytpv-showcase,
.ytpv-showcase * {
  box-sizing: border-box;
  min-width: 0;
}

.ytpv-showcase {
  width: 100% !important;
  overflow: hidden;
  --ytpv-primary: #e62117;
  --ytpv-secondary: #ff7a1a;
  --ytpv-accent: #111827;
  --ytpv-soft: #fff5f2;
  --ytpv-text: #18202f;
  --ytpv-muted: #5f6b7a;
  --ytpv-border: rgba(230, 33, 23, 0.15);
  --ytpv-shadow: rgba(166, 31, 22, 0.13);
  font-family: inherit;
  color: var(--ytpv-text);
}

.ytpv-showcase .ytpv-band {
  width: 100% !important;
  position: relative;
}

.ytpv-showcase .ytpv-band-white {
  background: #ffffff;
}

.ytpv-showcase .ytpv-band-tint {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 122, 26, 0.12), transparent 34%),
    linear-gradient(180deg, #fff8f5 0%, #fff3ef 100%);
}

.ytpv-showcase .ytpv-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  text-align: center;
}

.ytpv-showcase .ytpv-heading {
  margin: 0 auto;
  color: var(--ytpv-text);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
}

.ytpv-showcase .ytpv-intro {
  margin: 0 auto;
  color: var(--ytpv-muted);
  font-weight: 400;
  line-height: 1.65;
  text-align: center;
  max-width: 760px;
}

.ytpv-showcase .ytpv-grid {
  display: grid !important;
  align-items: stretch !important;
  width: 100% !important;
}

.ytpv-showcase .ytpv-card {
  height: 100% !important;
  min-width: 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.94)),
    linear-gradient(135deg, rgba(230,33,23,0.08), rgba(255,122,26,0.08));
  border: 1px solid var(--ytpv-border);
  box-shadow: 0 18px 42px var(--ytpv-shadow);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, background-position 420ms ease;
  display: grid;
  justify-items: center;
  align-content: start;
}

.ytpv-showcase .ytpv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230,33,23,0.1), transparent 42%, rgba(255,122,26,0.1));
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}

.ytpv-showcase .ytpv-card-tint {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,250,247,0.92)),
    linear-gradient(135deg, rgba(230,33,23,0.1), rgba(255,122,26,0.09));
}

.ytpv-showcase .ytpv-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  background: linear-gradient(135deg, var(--ytpv-primary), var(--ytpv-secondary));
  box-shadow: 0 14px 28px rgba(230, 33, 23, 0.24);
  transition: transform 280ms ease, box-shadow 280ms ease, background-position 420ms ease;
  background-size: 160% 160%;
  text-align: center;
}

.ytpv-showcase .ytpv-i {
  display: block;
  line-height: 1;
  color: #ffffff;
  text-align: center;
}

.ytpv-showcase .ytpv-card-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ytpv-text);
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
}

.ytpv-showcase .ytpv-card-text {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  color: var(--ytpv-muted);
  font-weight: 400;
  line-height: 1.58;
  text-align: center;
}

.ytpv-showcase .ytpv-card:hover {
  transform: translateY(-8px) scale(1.012);
  border-color: rgba(230, 33, 23, 0.34);
  box-shadow: 0 24px 58px rgba(166, 31, 22, 0.2);
}

.ytpv-showcase .ytpv-card:hover::before {
  opacity: 1;
}

.ytpv-showcase .ytpv-card:hover .ytpv-icon {
  transform: translateY(-4px);
  background-position: 100% 0;
  box-shadow: 0 18px 34px rgba(230, 33, 23, 0.3);
}

.ytpv-showcase .ytpv-card.ytpv-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.ytpv-showcase .ytpv-card.ytpv-reveal.ytpv-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

@media (min-width: 1024px) {
  .ytpv-showcase .ytpv-band {
    padding: 86px 0;
  }

  .ytpv-showcase .ytpv-container {
    padding: 0 28px;
  }

  .ytpv-showcase .ytpv-heading {
    font-size: 42px;
    max-width: 980px;
    white-space: nowrap;
  }

  .ytpv-showcase .ytpv-intro {
    font-size: 17px;
    margin-top: 18px;
  }

  .ytpv-showcase .ytpv-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 42px;
  }

  .ytpv-showcase .ytpv-card {
    min-height: 292px;
    padding: 34px 28px 30px;
    border-radius: 24px;
  }

  .ytpv-showcase .ytpv-icon {
    width: 74px;
    height: 74px;
    border-radius: 22px;
    margin-bottom: 24px;
  }

  .ytpv-showcase .ytpv-i {
    font-size: 31px;
  }

  .ytpv-showcase .ytpv-card-title {
    font-size: 21px;
    margin-bottom: 13px;
  }

  .ytpv-showcase .ytpv-card-text {
    font-size: 15.5px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .ytpv-showcase .ytpv-band {
    padding: 68px 0;
  }

  .ytpv-showcase .ytpv-container {
    padding: 0 24px;
  }

  .ytpv-showcase .ytpv-heading {
    font-size: 34px;
    max-width: 760px;
  }

  .ytpv-showcase .ytpv-intro {
    font-size: 16px;
    margin-top: 16px;
  }

  .ytpv-showcase .ytpv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 36px;
  }

  .ytpv-showcase .ytpv-card {
    min-height: 264px;
    padding: 30px 24px 26px;
    border-radius: 22px;
  }

  .ytpv-showcase .ytpv-icon {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    margin-bottom: 21px;
  }

  .ytpv-showcase .ytpv-i {
    font-size: 28px;
  }

  .ytpv-showcase .ytpv-card-title {
    font-size: 19px;
    margin-bottom: 11px;
  }

  .ytpv-showcase .ytpv-card-text {
    font-size: 14.5px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .ytpv-showcase .ytpv-band {
    padding: 50px 0;
  }

  .ytpv-showcase .ytpv-container {
    padding: 0 16px;
  }

  .ytpv-showcase .ytpv-heading {
    font-size: 28px;
    max-width: 420px;
  }

  .ytpv-showcase .ytpv-intro {
    font-size: 14.5px;
    margin-top: 13px;
  }

  .ytpv-showcase .ytpv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
  }

  .ytpv-showcase .ytpv-card {
    min-height: 226px;
    padding: 22px 14px 20px;
    border-radius: 18px;
  }

  .ytpv-showcase .ytpv-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    margin-bottom: 16px;
  }

  .ytpv-showcase .ytpv-i {
    font-size: 23px;
  }

  .ytpv-showcase .ytpv-card-title {
    font-size: 16px;
    margin-bottom: 9px;
  }

  .ytpv-showcase .ytpv-card-text {
    font-size: 13px;
    line-height: 1.48;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .ytpv-showcase .ytpv-band {
    padding: 44px 0;
  }

  .ytpv-showcase .ytpv-container {
    padding: 0 12px;
  }

  .ytpv-showcase .ytpv-heading {
    font-size: 25px;
    max-width: 350px;
  }

  .ytpv-showcase .ytpv-intro {
    font-size: 13.5px;
    margin-top: 11px;
    line-height: 1.55;
  }

  .ytpv-showcase .ytpv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
  }

  .ytpv-showcase .ytpv-card {
    min-height: 218px;
    padding: 20px 11px 18px;
    border-radius: 16px;
  }

  .ytpv-showcase .ytpv-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    margin-bottom: 14px;
  }

  .ytpv-showcase .ytpv-i {
    font-size: 21px;
  }

  .ytpv-showcase .ytpv-card-title {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .ytpv-showcase .ytpv-card-text {
    font-size: 12.4px;
    line-height: 1.45;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .ytpv-showcase .ytpv-band {
    padding: 38px 0;
  }

  .ytpv-showcase .ytpv-container {
    padding: 0 10px;
  }

  .ytpv-showcase .ytpv-heading {
    font-size: 22px;
    max-width: 300px;
  }

  .ytpv-showcase .ytpv-intro {
    font-size: 12.8px;
    margin-top: 10px;
    line-height: 1.5;
  }

  .ytpv-showcase .ytpv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .ytpv-showcase .ytpv-card {
    min-height: 212px;
    padding: 18px 9px 16px;
    border-radius: 14px;
  }

  .ytpv-showcase .ytpv-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    margin-bottom: 13px;
  }

  .ytpv-showcase .ytpv-i {
    font-size: 19px;
  }

  .ytpv-showcase .ytpv-card-title {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .ytpv-showcase .ytpv-card-text {
    font-size: 11.8px;
    line-height: 1.42;
  }
}

@media (max-width: 319px) {
  .ytpv-showcase .ytpv-band {
    padding: 34px 0;
  }

  .ytpv-showcase .ytpv-container {
    padding: 0 10px;
  }

  .ytpv-showcase .ytpv-heading {
    font-size: 21px;
  }

  .ytpv-showcase .ytpv-intro {
    font-size: 12.5px;
    margin-top: 10px;
  }

  .ytpv-showcase .ytpv-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .ytpv-showcase .ytpv-card {
    min-height: 210px;
    padding: 18px 12px;
    border-radius: 14px;
  }

  .ytpv-showcase .ytpv-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    margin-bottom: 12px;
  }

  .ytpv-showcase .ytpv-i {
    font-size: 19px;
  }

  .ytpv-showcase .ytpv-card-title {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .ytpv-showcase .ytpv-card-text {
    font-size: 12px;
    line-height: 1.45;
  }
}