.etl-anv-rv { font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif; background: #faf5f4; }
.etl-anv-rv * { box-sizing: border-box; }
.etl-anv-rv-inner { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.etl-anv-rv-head { text-align: center; margin-bottom: 22px; }
.etl-anv-rv-kicker { display: inline-block; padding: 4px 14px; background: #c9a96e; color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.18em; border-radius: 999px; margin-bottom: 10px; }
.etl-anv-rv-title { font-size: 24px; font-weight: 800; color: #2c2c2c; margin: 0 0 10px; }
.etl-anv-rv-summary { font-size: 15px; color: #555; }
.etl-anv-rv-summary-stars { color: #d4af37; letter-spacing: 0.1em; margin-right: 6px; }
.etl-anv-rv-summary strong { color: #c8102e; font-size: 18px; font-weight: 800; font-family: 'Playfair Display', serif; }

/* Carousel container */
.etl-anv-rv-carousel { position: relative; }
.etl-anv-rv-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.etl-anv-rv-viewport::-webkit-scrollbar { display: none; }

.etl-anv-rv-list {
  display: flex;
  gap: 12px;
  padding: 4px 2px 8px;
  align-items: stretch;
  width: max-content;
}

/* Cards have fixed height; width is set by JS based on viewport */
.etl-anv-rv-card {
  flex: 0 0 auto;
  width: 260px; /* fallback before JS runs */
  height: 240px;
  scroll-snap-align: start;
  background: #fff; border-radius: 14px; padding: 18px 16px;
  border: 1px solid #f0e8e3;
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.etl-anv-rv-card:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.06); }
.etl-anv-rv-stars { color: #d4af37; font-size: 14px; letter-spacing: 0.1em; margin-bottom: 8px; flex-shrink: 0; }
.etl-anv-rv-text {
  font-size: 14px; color: #2c2c2c; line-height: 1.7;
  flex: 1 1 auto;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  margin-bottom: 12px;
}
.etl-anv-rv-author {
  display: flex; align-items: center; gap: 10px;
  padding-top: 12px; border-top: 1px dashed #f0e8e3;
  flex-shrink: 0;
}
.etl-anv-rv-avatar { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: #f5f0ed; }
.etl-anv-rv-avatar img { width: 100%; height: 100%; object-fit: cover; }
.etl-anv-rv-author-info { min-width: 0; flex: 1; }
.etl-anv-rv-author-name { font-size: 13px; font-weight: 700; color: #2c2c2c; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.etl-anv-rv-author-meta { font-size: 12px; color: #777; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Nav buttons */
.etl-anv-rv-nav {
  position: absolute; top: calc(50% - 12px); transform: translateY(-50%);
  width: 36px; height: 36px;
  background: #fff; color: #2c2c2c;
  border: 1px solid #e8e0dc; border-radius: 50%;
  font-size: 22px; font-weight: 700; line-height: 1;
  cursor: pointer; padding: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: background 0.15s, transform 0.15s, opacity 0.15s, color 0.15s, border-color 0.15s;
  z-index: 2;
}
.etl-anv-rv-nav:hover { background: #c9a96e; color: #fff; border-color: #c9a96e; }
.etl-anv-rv-nav:disabled { opacity: 0.3; cursor: not-allowed; pointer-events: none; }
.etl-anv-rv-nav-prev { left: -4px; }
.etl-anv-rv-nav-next { right: -4px; }
.etl-anv-rv-nav[hidden] { display: none; }

/* Dots */
.etl-anv-rv-dots { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.etl-anv-rv-dots[hidden] { display: none; }
.etl-anv-rv-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #d4c8be; border: none; padding: 0;
  cursor: pointer; transition: width 0.2s, background 0.2s;
}
.etl-anv-rv-dot.is-active { width: 18px; border-radius: 999px; background: #c9a96e; }

@media (min-width: 720px) {
  .etl-anv-rv-title { font-size: 32px; }
  .etl-anv-rv-summary { font-size: 15px; }
  .etl-anv-rv-list { gap: 22px; padding: 6px 2px 10px; }
  /* PC: card width is set by JS; height fixed */
  .etl-anv-rv-card {
    width: 360px;
    height: 300px;
    padding: 26px 22px; border-radius: 16px;
  }
  .etl-anv-rv-stars { font-size: 16px; margin-bottom: 10px; }
  .etl-anv-rv-text { font-size: 14px; -webkit-line-clamp: 6; margin-bottom: 16px; }
  .etl-anv-rv-author { padding-top: 14px; }
  .etl-anv-rv-avatar { width: 44px; height: 44px; }
  .etl-anv-rv-author-name { font-size: 13px; }
  .etl-anv-rv-author-meta { font-size: 12px; }
  .etl-anv-rv-nav { width: 44px; height: 44px; font-size: 26px; top: calc(50% - 16px); }
  .etl-anv-rv-nav-prev { left: -22px; }
  .etl-anv-rv-nav-next { right: -22px; }
  .etl-anv-rv-dot { width: 8px; height: 8px; }
  .etl-anv-rv-dot.is-active { width: 22px; }
}
