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

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

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

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

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

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

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

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

.ytcv-editorial-wrap .ytcv-intro {
  color: #5b6570;
  line-height: 1.65;
  max-width: 720px;
  margin-top: 0;
}

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

.ytcv-editorial-wrap .ytcv-card {
  height: 100% !important;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #ffe0db;
  box-shadow: 0 18px 45px rgba(199, 25, 25, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
  position: relative;
  overflow: hidden;
}

.ytcv-editorial-wrap .ytcv-section-two .ytcv-card {
  background: rgba(255, 255, 255, 0.86);
}

.ytcv-editorial-wrap .ytcv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 0, 0, 0.08), transparent 44%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.ytcv-editorial-wrap .ytcv-card:hover {
  transform: translateY(-7px);
  border-color: #ffb7aa;
  box-shadow: 0 24px 58px rgba(199, 25, 25, 0.15);
}

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

.ytcv-editorial-wrap .ytcv-card:hover .ytcv-icon {
  transform: translateY(-4px) scale(1.04);
  background-position: 100% 50%;
}

.ytcv-editorial-wrap .ytcv-icon {
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 22px;
  background: linear-gradient(135deg, #ff1f1f 0%, #ff6f4f 52%, #ffd166 100%);
  background-size: 180% 180%;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(255, 31, 31, 0.2);
  transition: transform 260ms ease, background-position 260ms ease;
}

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

.ytcv-editorial-wrap h3 {
  color: #182027;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0;
}

.ytcv-editorial-wrap .ytcv-card p {
  color: #5f6872;
  line-height: 1.58;
  margin-bottom: 0;
}

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

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

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

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

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

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

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

  .ytcv-editorial-wrap .ytcv-card {
    min-height: 292px;
    border-radius: 24px;
    padding: 34px 26px 30px;
  }

  .ytcv-editorial-wrap .ytcv-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
  }

  .ytcv-editorial-wrap .ytcv-i {
    font-size: 29px;
  }

  .ytcv-editorial-wrap h3 {
    font-size: 21px;
    margin-top: 0;
  }

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

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

  .ytcv-editorial-wrap .ytcv-container {
    padding: 0 22px;
  }

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

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

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

  .ytcv-editorial-wrap .ytcv-card {
    min-height: 266px;
    border-radius: 22px;
    padding: 30px 24px 26px;
  }

  .ytcv-editorial-wrap .ytcv-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 20px;
  }

  .ytcv-editorial-wrap .ytcv-i {
    font-size: 26px;
  }

  .ytcv-editorial-wrap h3 {
    font-size: 20px;
    margin-top: 0;
  }

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

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

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

  .ytcv-editorial-wrap h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .ytcv-editorial-wrap .ytcv-intro {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 26px;
  }

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

  .ytcv-editorial-wrap .ytcv-card {
    min-height: 226px;
    border-radius: 18px;
    padding: 22px 14px 20px;
  }

  .ytcv-editorial-wrap .ytcv-icon {
    width: 54px;
    height: 54px;
    border-radius: 17px;
    margin-bottom: 16px;
  }

  .ytcv-editorial-wrap .ytcv-i {
    font-size: 22px;
  }

  .ytcv-editorial-wrap h3 {
    font-size: 16px;
    margin-top: 0;
  }

  .ytcv-editorial-wrap .ytcv-card p {
    font-size: 13px;
    line-height: 1.48;
    margin-top: 10px;
  }
}

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

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

  .ytcv-editorial-wrap h2 {
    font-size: 25px;
    margin-bottom: 10px;
  }

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

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

  .ytcv-editorial-wrap .ytcv-card {
    min-height: 218px;
    border-radius: 16px;
    padding: 18px 10px 17px;
  }

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

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

  .ytcv-editorial-wrap h3 {
    font-size: 15px;
    margin-top: 0;
  }

  .ytcv-editorial-wrap .ytcv-card p {
    font-size: 12px;
    line-height: 1.45;
    margin-top: 8px;
  }
}

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

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

  .ytcv-editorial-wrap h2 {
    font-size: 22px;
    line-height: 1.16;
    margin-bottom: 9px;
  }

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

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

  .ytcv-editorial-wrap .ytcv-card {
    min-height: 212px;
    border-radius: 14px;
    padding: 16px 8px 15px;
  }

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

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

  .ytcv-editorial-wrap h3 {
    font-size: 14px;
    line-height: 1.22;
    margin-top: 0;
  }

  .ytcv-editorial-wrap .ytcv-card p {
    font-size: 11.5px;
    line-height: 1.42;
    margin-top: 7px;
  }
}