/* ==========================================================================
   shizuku media — Front Page Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: #F0F0F2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__collage {
  position: absolute;
  inset: -80px -120px;
  transform: rotate(-12deg);
  transform-origin: center center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.hero__collage-row {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.hero__collage-track {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  will-change: transform;
}

.hero__collage-row--left .hero__collage-track {
  animation: hero-scroll-left 30s linear infinite;
}

.hero__collage-row--right .hero__collage-track {
  animation: hero-scroll-right 35s linear infinite;
}

.hero__collage-cell {
  flex-shrink: 0;
  width: 160px;
  height: 90px;
  background: url('../images/noimage-rect.jpg') center / cover no-repeat, #E0E0E4;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background-size: cover;
  background-position: center;
}

@keyframes hero-scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 4px)); }
}

@keyframes hero-scroll-right {
  from { transform: translateX(calc(-50% - 4px)); }
  to   { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__collage-track {
    animation: none !important;
  }
}

.hero__panel {
  position: relative;
  z-index: 2;
  width: 320px;
  background: rgba(255, 255, 255, 0.933);
  border-radius: 24px;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero__eyebrow {
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 6px;
}

.hero__h1 {
  margin: 0 0 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__logo-img {
  width: 220px;
  height: auto;
  display: block;
}

.hero__divider {
  width: 60px;
  height: 2px;
  background: var(--gradient);
  border-radius: 999px;
  margin-bottom: 14px;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-medium);
  text-align: center;
  margin-bottom: 2px;
}

.hero__sub {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
}

.hero__chevron {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.6;
  z-index: 2;
  animation: hero-chevron-bounce 2.4s ease-in-out infinite;
}

@keyframes hero-chevron-bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateX(-50%) translateY(8px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__chevron {
    animation: none;
  }
}

/* --------------------------------------------------------------------------
   Search Bar
   -------------------------------------------------------------------------- */
.search-bar {
  display: flex;
  gap: 8px;
  padding: 12px 20px;
  background: var(--color-bg-white);
}

.search-bar__input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 14px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-light);
  border-radius: 999px;
  font-size: 13px;
  color: var(--color-text-light);
}

.search-bar__input {
  cursor: text;
}

.search-bar__input svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  stroke: var(--color-text-light);
  stroke-width: 2;
  fill: none;
}

/* 直接入力できる検索フィールド（pill内に溶け込む） */
.search-bar__input input[type="search"] {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: none;
  background: transparent;
  font-size: 14px;
  color: var(--color-text-primary);
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.search-bar__input input[type="search"]::placeholder {
  color: var(--color-text-light);
}

.search-bar__input input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.search-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 44px;
  border-radius: 999px;
  background: var(--gradient);
  border: none;
  cursor: pointer;
}

.search-bar__btn svg {
  width: 18px;
  height: 18px;
  stroke: #FFFFFF;
  stroke-width: 2;
  fill: none;
}

/* --------------------------------------------------------------------------
   Trust Bar
   -------------------------------------------------------------------------- */
.trust-bar {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  background: linear-gradient(90deg, #F9F0FC, #EEFBFC);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
}

.trust-bar__item svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-teal);
  stroke-width: 2;
  fill: none;
}

.trust-bar__item span {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text-dark);
}

/* --------------------------------------------------------------------------
   Featured Card
   -------------------------------------------------------------------------- */
.featured-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--color-bg-white);
}

.featured-card__img {
  width: 100%;
  height: 190px;
  background: #FFFFFF url('../images/noimage-rect.jpg') center / cover no-repeat;
  background-size: cover;
  background-position: center;
}

.featured-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.featured-card__badges {
  display: flex;
  gap: 6px;
}

.featured-card__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text-primary);
}

.featured-card__meta {
  font-family: var(--font-serif);
  font-size: 11px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* --------------------------------------------------------------------------
   Article List
   -------------------------------------------------------------------------- */
.article-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-list__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: var(--color-bg-white);
  border-radius: 12px;
  border: 1px solid var(--color-border-light);
  text-decoration: none;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.article-list__item:active {
  box-shadow: var(--shadow-sm);
  border-color: var(--color-border);
}

.article-list__thumb {
  width: 112px;
  aspect-ratio: 16 / 9;
  background: #FFFFFF url('../images/noimage-rect.jpg') center / cover no-repeat;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
}

.article-list__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.article-list__title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text-primary);
}

.article-list__meta {
  font-family: var(--font-serif);
  font-size: 11px;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* --------------------------------------------------------------------------
   PickUp Cards
   -------------------------------------------------------------------------- */
.pickup-card {
  flex-shrink: 0;
  width: 200px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-bg-white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s ease;
  color: inherit;
  text-decoration: none;
  display: block;
}

.pickup-card:active {
  box-shadow: var(--shadow-md);
}

.pickup-card__img {
  width: 100%;
  height: 120px;
  background-size: cover;
  background-position: center;
  background: #FFFFFF url('../images/noimage-rect.jpg') center / cover no-repeat;
}

.pickup-card__body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pickup-card__cat {
  font-size: 10px;
  font-weight: 600;
}

.pickup-card__cat--teal { color: var(--color-cat-teal); }
.pickup-card__cat--purple { color: var(--color-cat-purple); }
.pickup-card__cat--rose { color: var(--color-cat-rose); }
.pickup-card__cat--coral { color: var(--color-cat-coral); }
.pickup-card__cat--blue { color: var(--color-cat-blue); }
.pickup-card__cat--green { color: var(--color-cat-green); }
.pickup-card__cat--lavender { color: var(--color-cat-lavender); }

.pickup-card__title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text-primary);
}

/* --------------------------------------------------------------------------
   Stats Row
   -------------------------------------------------------------------------- */
.stats-row {
  display: flex;
  border-radius: 8px;
  border: 1px solid var(--color-border-light);
  background: var(--color-bg-white);
}

.stats-row__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 14px 8px;
}

.stats-row__item--bordered {
  border-right: 1px solid var(--color-border-light);
}

.stats-row__num {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-teal);
}

.stats-row__label {
  font-family: var(--font-serif);
  font-size: 10px;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Area Cards (Shop Portal)
   -------------------------------------------------------------------------- */
.area-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.area-cards {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.area-cards::-webkit-scrollbar {
  display: none;
}

.area-card {
  flex: 0 0 140px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-bg-white);
  text-decoration: none;
  color: inherit;
}

.area-card__img {
  width: 100%;
  height: 80px;
  overflow: hidden;
}

.area-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.area-card__info {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 10px;
}

.area-card__name {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.area-card__count {
  font-family: var(--font-serif);
  font-size: 11px;
  color: var(--color-text-muted);
}

.area-card__tag {
  display: block;
  padding: 0 10px 8px;
  font-size: 10px;
  color: var(--color-teal);
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   Portal Banner
   -------------------------------------------------------------------------- */
.portal-banner {
  border-radius: 12px;
  overflow: hidden;
}

.portal-banner__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  background: #FFFFFF url('../images/noimage-rect.jpg') center / cover no-repeat;
}

/* --------------------------------------------------------------------------
   Scroll Cards (Reviews, Interviews, Experiences)
   -------------------------------------------------------------------------- */
.scroll-card {
  flex-shrink: 0;
  width: 240px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-bg-white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s ease;
  color: inherit;
  text-decoration: none;
  display: block;
}

.scroll-card:active {
  box-shadow: var(--shadow-md);
}

.scroll-card__img {
  width: 100%;
  height: 130px;
  background-size: cover;
  background-position: center;
  background: #FFFFFF url('../images/noimage-rect.jpg') center / cover no-repeat;
}

.scroll-card__img--tall {
  height: 150px;
}

.scroll-card__img--exp {
  height: 140px;
}

.scroll-card__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.scroll-card__badges {
  display: flex;
  gap: 4px;
}

.scroll-card__title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text-primary);
}

.scroll-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.scroll-card__stars {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-star);
}

.scroll-card__stars--gold {
  font-size: 11px;
  color: var(--color-star-gold);
}

.scroll-card__score {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.scroll-card__count {
  font-family: var(--font-serif);
  font-size: 10px;
  color: var(--color-text-muted);
}

.scroll-card__meta {
  font-family: var(--font-serif);
  font-size: 10px;
  color: var(--color-text-light);
}

/* --------------------------------------------------------------------------
   Self-Check / Quiz
   -------------------------------------------------------------------------- */
.section--quiz-padded {
  padding: 32px 20px;
}

.section--quiz-padded .section__header {
  padding: 0;
}

.selfcheck-banner {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding: 20px;
  background: linear-gradient(135deg, var(--color-teal) 0%, #3DBAC2 50%, #7DD4BC 100%);
  text-decoration: none;
  transition: box-shadow 0.2s;
}

.selfcheck-banner:active {
  box-shadow: var(--shadow-md);
}

.selfcheck-banner__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.selfcheck-banner__badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  backdrop-filter: blur(4px);
}

.selfcheck-banner__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.selfcheck-banner__desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.selfcheck-banner__cta {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  padding: 8px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.quiz-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* 2列×3行グリッド */
.quiz-grid--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quiz-grid__row {
  display: flex;
  gap: 12px;
}

.quiz-card {
  flex: 1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  aspect-ratio: 1 / 1;
  text-decoration: none;
  display: block;
}

.quiz-card__img {
  position: absolute;
  inset: 0;
  background: var(--color-bg-light);
}

.quiz-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 28%, rgba(0, 0, 0, 0.38) 60%, rgba(0, 0, 0, 0.74) 100%);
}

.quiz-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 9px;
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: 0.02em;
}

.quiz-card__icon {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
  color: #fff;
}

.quiz-card__icon svg {
  width: 21px;
  height: 21px;
}

.quiz-card__body {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 1;
}

.quiz-card__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.quiz-card__desc {
  font-size: 11px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}

.quiz-card__cta {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 3px;
  margin-top: 5px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}

.quiz-card__cta svg {
  width: 12px;
  height: 12px;
}

/* --------------------------------------------------------------------------
   Knowledge Column Grid
   -------------------------------------------------------------------------- */
.knowledge-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.knowledge-row {
  display: flex;
  gap: 12px;
}

.knowledge-card {
  flex: 1;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  aspect-ratio: 1 / 1;
  background: #FFFFFF url('../images/noimage-square.jpg') center / cover no-repeat;
}

.knowledge-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.knowledge-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
}

.knowledge-card__body {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 1;
}

.knowledge-card__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
}

.knowledge-card__desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   Rank Cards (Popular Articles)
   -------------------------------------------------------------------------- */
.rank-card {
  flex-shrink: 0;
  width: 240px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-bg-white);
  box-shadow: var(--shadow-sm);
}

.rank-card__img {
  position: relative;
  width: 100%;
  height: 130px;
  background-size: cover;
  background-position: center;
  background: #FFFFFF url('../images/noimage-rect.jpg') center / cover no-repeat;
}

/* rank-badge base in base.css — front-page override for position/size */
.rank-card__img .rank-badge {
  width: 28px;
  height: 28px;
  font-size: 13px;
  top: 8px;
  left: 8px;
}

.rank-card__body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rank-card__title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text-primary);
}

.rank-card__meta {
  font-family: var(--font-serif);
  font-size: 10px;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Column Cards (Series)
   -------------------------------------------------------------------------- */
.column-card {
  flex-shrink: 0;
  width: 220px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-bg-white);
  box-shadow: var(--shadow-sm);
}

.column-card__img {
  position: relative;
  width: 100%;
  height: 120px;
  background-size: cover;
  background-position: center;
  background: #FFFFFF url('../images/noimage-rect.jpg') center / cover no-repeat;
}

.column-card__body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.column-card__series {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-teal);
}

.column-card__title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text-primary);
}

.column-card__ep {
  font-family: var(--font-serif);
  font-size: 10px;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Product Cards (Love Goods)
   -------------------------------------------------------------------------- */
.product-scroll {
  display: flex;
  gap: 12px;
  padding: 0 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.product-scroll::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex-shrink: 0;
  width: 240px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-bg-white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s ease;
  color: inherit;
  text-decoration: none;
  display: block;
}
.product-card:active {
  box-shadow: var(--shadow-md);
}

.product-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #f3f4f6 url('../images/noimage-rect.jpg') center / cover no-repeat;
  overflow: hidden;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card__body {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-card__cat {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.product-card__title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__price {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-primary);
}

/* --------------------------------------------------------------------------
   Hotel Section
   -------------------------------------------------------------------------- */
.hotel-stats {
  display: flex;
  background: var(--color-bg-light);
  border-radius: 12px;
  padding: 16px;
}

.hotel-stats__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hotel-stats__num {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hotel-stats__label {
  font-size: 10px;
  color: var(--color-text-muted);
}

.hotel-area-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hotel-area-grid__row {
  display: flex;
  gap: 8px;
}

.hotel-area-card {
  flex: 1;
  position: relative;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.hotel-area-card__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hotel-area-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hotel-area-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.67) 100%);
}

.hotel-area-card__name {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Supervisor Cards
   -------------------------------------------------------------------------- */
.supervisor-scroll {
  display: flex;
  gap: 12px;
  padding: 0 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.supervisor-scroll::-webkit-scrollbar {
  display: none;
}

.supervisor-card {
  flex-shrink: 0;
  width: 200px;
  border-radius: 12px;
  padding: 16px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.supervisor-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: #FFFFFF url('../images/noimage-icon.jpg') center / cover no-repeat;
}

.supervisor-card__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.supervisor-card__role {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-teal);
}

.supervisor-card__desc {
  font-size: 11px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-list {
  border-radius: 12px;
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  background: var(--color-bg-white);
}

.faq-item:not(:last-child) {
  border-bottom: 1px solid var(--color-border-light);
}

.faq-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-item__q {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-primary);
  flex: 1;
}

.faq-item__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.is-open .faq-item__body {
  grid-template-rows: 1fr;
}

.faq-item__a {
  overflow: hidden;
  padding: 0 16px;
  font-size: 13px;
  color: var(--color-text-body);
  line-height: 1.7;
}

.faq-item.is-open .faq-item__a {
  padding: 0 16px 16px;
}

/* --------------------------------------------------------------------------
   Ambassador Cards
   -------------------------------------------------------------------------- */
.ambassador-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ambassador-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 12px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
}

.ambassador-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #FFFFFF url('../images/noimage-icon.jpg') center / cover no-repeat;
}

.ambassador-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ambassador-card__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.ambassador-card__handle {
  font-size: 11px;
  color: var(--color-teal);
}

.ambassador-card__desc {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Tag Cloud
   -------------------------------------------------------------------------- */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-dark);
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
  white-space: nowrap;
}

.tag-pill:active {
  border-color: var(--color-teal);
  background: rgba(2, 193, 212, 0.06);
}

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.about-card {
  padding: 20px;
  border-radius: 12px;
  background: var(--color-bg-light);
}

.about-card p {
  font-size: 13px;
  color: var(--color-text-dark);
  line-height: 1.7;
}

.about-card p + p {
  margin-top: 12px;
}

/* --------------------------------------------------------------------------
   Latest Articles
   -------------------------------------------------------------------------- */
.latest-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 20px;
}

.latest-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: var(--color-bg-white);
  border-radius: 12px;
  border: 1px solid var(--color-border-light);
  text-decoration: none;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.latest-item:active {
  box-shadow: var(--shadow-sm);
  border-color: var(--color-border);
}

.latest-item--last {
  /* no longer needed but kept for backwards compat */
}

.latest-item__thumb {
  width: 112px;
  aspect-ratio: 16 / 9;
  background: #FFFFFF url('../images/noimage-rect.jpg') center / cover no-repeat;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
}

.latest-item__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.latest-item__cat {
  font-size: 10px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.latest-item__title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text-primary);
}

.latest-item__date {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-text-light);
}

/* --------------------------------------------------------------------------
   Editor Picks
   -------------------------------------------------------------------------- */
.editor-card {
  flex-shrink: 0;
  width: 260px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-bg-white);
  box-shadow: var(--shadow-sm);
}

.editor-card__img {
  width: 100%;
  height: 140px;
  background-size: cover;
  background-position: center;
  background: #FFFFFF url('../images/noimage-rect.jpg') center / cover no-repeat;
}

.editor-card__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.editor-card__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text-primary);
}

.editor-card__desc {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.editor-card__author {
  display: flex;
  align-items: center;
  gap: 6px;
}

.editor-card__avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFFFFF url('../images/noimage-icon.jpg') center / cover no-repeat;
}

.editor-card__name {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* Recruit message (empty supervisor/ambassador fallback) */
.recruit-message {
  text-align: center;
  padding: 24px 20px;
}

.recruit-message__text {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-text-dark);
  margin: 0 0 16px;
}

.recruit-message__btn {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid var(--color-teal);
  border-radius: 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-teal);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.recruit-message__btn:active {
  background: var(--color-teal);
  color: #fff;
}
