.yfv {
  width: 100%;
}

.yfv--fullbleed .yfv-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
}

.yfv-hero {
  background: linear-gradient(90deg, rgba(10,10,10,0.96) 0%, rgba(22,22,22,0.92) 45%, rgba(0,0,0,0.82) 100%);
  color: #fff;
  padding: 0;
}

.yfv-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 34px 18px;
  display: grid;
  grid-template-columns: 1.05fr 1.25fr;
  gap: 26px;
  align-items: center;
}

@media (max-width: 900px) {
  .yfv-hero__inner {
    grid-template-columns: 1fr;
  }
}

.yfv-badge {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .9;
  margin-bottom: 10px;
}

.yfv-title {
  font-size: 44px;
  line-height: 1.05;
  margin: 0 0 10px 0;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
}

.yfv-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: .9;
  font-size: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.yfv-chip {
  display: inline-flex;
  padding: 3px 8px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.yfv-desc {
  font-size: 15px;
  line-height: 1.55;
  opacity: .92;
  max-width: 56ch;
  white-space: pre-line;
}

.yfv-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}

.yfv-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.yfv-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 18px 0;
}

.yfv-body__heading {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .02em;
  margin: 0 0 16px 0;
  text-transform: uppercase;
}

.yfv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 900px) {
  .yfv-grid {
    grid-template-columns: 1fr;
  }
}

.yfv-card {
  text-align: left;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 6px;
  padding: 0;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .08s ease;
  overflow: hidden;
}

.yfv-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}

.yfv-card.is-active {
  outline: none;
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.95), 0 10px 22px rgba(0,0,0,.10);
}

.yfv-thumb {
  position: relative;
}

.yfv-thumb img {
  width: 100%;
  display: block;
  height: auto;
}

.yfv-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  box-shadow: 0 10px 16px rgba(0,0,0,.25);
}

.yfv-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 14px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.yfv-card__text {
  padding: 12px 12px 14px;
}

.yfv-card__title {
  font-weight: 800;
  margin-bottom: 6px;
}

.yfv-card__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.yfv-card__date {
  font-size: 13px;
  opacity: .7;
}

.yfv-loadmore-wrap {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.yfv-loadmore {
  appearance: none;
  border: 1px solid #d7dce2;
  background: #ffffff;
  color: #1f2937;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: box-shadow .12s ease, transform .08s ease, opacity .12s ease;
}

.yfv-loadmore:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

.yfv-loadmore:disabled {
  cursor: default;
  opacity: .7;
}

.yfv-error {
  padding: 12px 14px;
  background: #fff4f4;
  border: 1px solid #ffd2d2;
  color: #8a1f1f;
  border-radius: 6px;
}
