/* AMBER — Young's Favourite section */
.yf {
  padding: 56px 0;
  background: var(--color-bg, #FFFFFF);
}

.yf__title {
  margin: 0 0 32px;
  font-family: var(--font-heading, 'Poppins'), system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  color: var(--color-text, #000000);
}

.yf__accent {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.yf__accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.22em;
  background: var(--color-accent, #E6C744);
  border-radius: 999px;
  z-index: -1;
}

.yf__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.yf__card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.yf__media {
  border-radius: var(--radius-card, 16px);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #F3F4F6;
}

.yf__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.yf__img--ph {
  background: linear-gradient(135deg, #F3F4F6, #E5E7EB);
}

.yf__card:hover .yf__img {
  transform: scale(1.04);
}

.yf__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 4px 0;
}

.yf__text {
  min-width: 0;
}

.yf__card-title {
  margin: 0;
  font-family: var(--font-heading, 'Poppins'), system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.3;
  color: var(--color-text, #000000);
}

.yf__sub {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--color-text-muted, #6B7280);
}

.yf__arrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-text, #000000);
  transition: transform 0.25s ease;
}

.yf__arrow svg {
  width: 22px;
  height: 22px;
}

.yf__card:hover .yf__arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .yf {
    padding: 40px 0;
  }
  .yf__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .yf__media {
    aspect-ratio: 4 / 3;
  }
}
