@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-editorial-wrap,
.ytpv-editorial-wrap * {
  box-sizing: border-box;
  min-width: 0;
}

.ytpv-editorial-wrap {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #17202a;
  font-family: Arial, Helvetica, sans-serif;
}

.ytpv-editorial-wrap .ytpv-section {
  width: 100% !important;
}

.ytpv-editorial-wrap .ytpv-section-one,
.ytpv-editorial-wrap .ytpv-section-three {
  background: #ffffff;
}

.ytpv-editorial-wrap .ytpv-section-two {
  background: linear-gradient(180deg, #fff7f5 0%, #f8fbff 100%);
}

.ytpv-editorial-wrap .ytpv-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.ytpv-editorial-wrap h2,
.ytpv-editorial-wrap h3,
.ytpv-editorial-wrap p {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

.ytpv-editorial-wrap h2 {
  color: #111827;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  margin-top: 0;
}

.ytpv-editorial-wrap .ytpv-intro {
  color: #516070;
  line-height: 1.7;
  max-width: 760px;
  margin-top: 0;
}

.ytpv-editorial-wrap .ytpv-grid {
  display: grid !important;
  align-items: stretch !important;
}

.ytpv-editorial-wrap .ytpv-card {
  height: 100% !important;
  border: 1px solid #ffd2ca;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fffdfc 100%);
  box-shadow: 0 18px 45px rgba(198, 40, 40, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
  position: relative;
  overflow: hidden;
}

.ytpv-editorial-wrap .ytpv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 0, 0, 0.1), transparent 42%);
  opacity: 0;
  transition: opacity 260ms ease, transform 260ms ease;
  transform: translateY(12px);
}

.ytpv-editorial-wrap .ytpv-card:hover {
  transform: translateY(-7px);
  border-color: #ff4b3e;
  box-shadow: 0 26px 58px rgba(198, 40, 40, 0.16);
}

.ytpv-editorial-wrap .ytpv-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.ytpv-editorial-wrap .ytpv-icon {
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff0033 0%, #ff7a45 100%);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(255, 0, 51, 0.22);
  position: relative;
  z-index: 1;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.ytpv-editorial-wrap .ytpv-card:hover .ytpv-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 34px rgba(255, 0, 51, 0.3);
}

.ytpv-editorial-wrap .ytpv-i {
  line-height: 1;
}

.ytpv-editorial-wrap .ytpv-card h3 {
  color: #17202a;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
}

.ytpv-editorial-wrap .ytpv-card p {
  color: #5f6f7f;
  line-height: 1.62;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .ytpv-editorial-wrap .ytpv-section {
    padding: 88px 0;
  }

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

  .ytpv-editorial-wrap h2 {
    font-size: 42px;
    margin-bottom: 16px;
    white-space: nowrap;
  }

  .ytpv-editorial-wrap .ytpv-intro {
    font-size: 17px;
    margin-bottom: 42px;
  }

  .ytpv-editorial-wrap .ytpv-grid {
    gap: 24px;
  }

  .ytpv-editorial-wrap .ytpv-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ytpv-editorial-wrap .ytpv-grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ytpv-editorial-wrap .ytpv-card {
    min-height: 300px;
    padding: 34px 28px;
  }

  .ytpv-editorial-wrap .ytpv-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 22px;
  }

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

  .ytpv-editorial-wrap .ytpv-card h3 {
    font-size: 21px;
    margin: 0 0 12px;
  }

  .ytpv-editorial-wrap .ytpv-card p {
    font-size: 15px;
    margin: 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .ytpv-editorial-wrap .ytpv-section {
    padding: 72px 0;
  }

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

  .ytpv-editorial-wrap h2 {
    font-size: 34px;
    margin-bottom: 14px;
  }

  .ytpv-editorial-wrap .ytpv-intro {
    font-size: 16px;
    margin-bottom: 34px;
  }

  .ytpv-editorial-wrap .ytpv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .ytpv-editorial-wrap .ytpv-card {
    min-height: 270px;
    padding: 30px 24px;
    border-radius: 20px;
  }

  .ytpv-editorial-wrap .ytpv-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 19px;
  }

  .ytpv-editorial-wrap .ytpv-i {
    font-size: 25px;
  }

  .ytpv-editorial-wrap .ytpv-card h3 {
    font-size: 20px;
    margin: 0 0 10px;
  }

  .ytpv-editorial-wrap .ytpv-card p {
    font-size: 14.5px;
    margin: 0;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .ytpv-editorial-wrap .ytpv-section {
    padding: 54px 0;
  }

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

  .ytpv-editorial-wrap h2 {
    font-size: 27px;
    margin-bottom: 12px;
  }

  .ytpv-editorial-wrap .ytpv-intro {
    font-size: 14px;
    line-height: 1.58;
    margin-bottom: 24px;
  }

  .ytpv-editorial-wrap .ytpv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .ytpv-editorial-wrap .ytpv-card {
    min-height: 232px;
    padding: 22px 14px;
    border-radius: 16px;
  }

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

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

  .ytpv-editorial-wrap .ytpv-card h3 {
    font-size: 16px;
    margin: 0 0 8px;
  }

  .ytpv-editorial-wrap .ytpv-card p {
    font-size: 12.5px;
    line-height: 1.48;
    margin: 0;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .ytpv-editorial-wrap .ytpv-section {
    padding: 48px 0;
  }

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

  .ytpv-editorial-wrap h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .ytpv-editorial-wrap .ytpv-intro {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .ytpv-editorial-wrap .ytpv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .ytpv-editorial-wrap .ytpv-card {
    min-height: 224px;
    padding: 20px 11px;
    border-radius: 15px;
  }

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

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

  .ytpv-editorial-wrap .ytpv-card h3 {
    font-size: 15px;
    margin: 0 0 7px;
  }

  .ytpv-editorial-wrap .ytpv-card p {
    font-size: 12px;
    line-height: 1.44;
    margin: 0;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .ytpv-editorial-wrap .ytpv-section {
    padding: 42px 0;
  }

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

  .ytpv-editorial-wrap h2 {
    font-size: 21px;
    margin-bottom: 9px;
  }

  .ytpv-editorial-wrap .ytpv-intro {
    font-size: 12.5px;
    line-height: 1.45;
    margin-bottom: 18px;
  }

  .ytpv-editorial-wrap .ytpv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .ytpv-editorial-wrap .ytpv-card {
    min-height: 216px;
    padding: 18px 9px;
    border-radius: 14px;
  }

  .ytpv-editorial-wrap .ytpv-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    margin-bottom: 11px;
  }

  .ytpv-editorial-wrap .ytpv-i {
    font-size: 17px;
  }

  .ytpv-editorial-wrap .ytpv-card h3 {
    font-size: 14px;
    margin: 0 0 6px;
  }

  .ytpv-editorial-wrap .ytpv-card p {
    font-size: 11.5px;
    line-height: 1.38;
    margin: 0;
  }
}