/* ══ EUNACLASS Home Portal ══ */

.home { max-width: 960px; margin: 0 auto; padding: var(--space-xl) var(--space-lg); }

/* ── Hero ── */
.home-hero {
  text-align: center;
  padding: var(--space-3xl) 0 var(--space-2xl);
}

.home-hero__title {
  font-family: var(--font-headline);
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin-bottom: var(--space-md);
}

.home-hero__accent { color: var(--color-tertiary); }

.home-hero__desc {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto var(--space-xl);
}

/* ── Hero Targets ── */
.home-hero__targets { display: flex; justify-content: center; gap: var(--space-sm); margin-bottom: var(--space-lg); flex-wrap: wrap; }
.home-hero__target { font-family: var(--font-label); font-size: 0.75rem; color: var(--color-outline); padding: 0.3rem 0.75rem; border: 1px solid rgba(63,69,108,0.3); border-radius: var(--radius-full); }
html.light .home-hero__target { color: #8890a8; border-color: #d4d8e3; }

/* ── Hero Stats ── */
.home-hero__stats {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  margin-bottom: var(--space-xl);
}

.home-hero__stat { display: flex; flex-direction: column; align-items: center; }
.home-hero__stat-num { font-family: var(--font-headline); font-size: var(--font-size-2xl); font-weight: 800; color: var(--color-primary); line-height: 1; }
.home-hero__stat-label { font-size: 0.75rem; color: var(--color-outline); margin-top: var(--space-xs); }

.home-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.home-hero__sub {
  font-family: var(--font-label);
  font-size: 0.75rem;
  color: var(--color-outline);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.home-hero__sub:hover { color: var(--color-text); }

.home-hero__cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-headline);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: #fff;
  background: var(--color-primary-dim);
  border: none;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: background var(--transition-fast);
}

.home-hero__cta:hover { background: var(--color-primary); }

/* ── Notice ── */
.home-notice {
  margin-bottom: var(--space-2xl);
  padding: var(--space-lg);
  background: rgba(23, 32, 86, 0.4);
  border: 1px solid rgba(63, 69, 108, 0.3);
  border-radius: var(--radius-xl);
}

.home-notice__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-md); }
.home-notice__title {
  font-family: var(--font-headline);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-outline);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.home-notice__more { font-family: var(--font-label); font-size: 0.75rem; color: var(--color-outline); text-decoration: none; transition: color var(--transition-fast); }
.home-notice__more:hover { color: var(--color-tertiary-dim); }
html.light .home-notice__more { color: #8890a8; }
html.light .home-notice__more:hover { color: #0d9488; }

.home-notice__list { list-style: none; }

.home-notice__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(63, 69, 108, 0.2);
  font-size: var(--font-size-sm);
}

.home-notice__item:last-child { border-bottom: none; }
.home-notice__text { color: var(--color-text-muted); }
.home-notice__date { color: var(--color-outline); font-size: 0.75rem; flex-shrink: 0; margin-left: var(--space-md); }

/* ── Section Headers ── */
.home-section {
  margin-bottom: var(--space-3xl);
}

.home-section__title {
  font-family: var(--font-headline);
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.home-section__desc {
  font-size: var(--font-size-sm);
  color: var(--color-outline);
  margin-bottom: var(--space-xl);
}

/* ── Feature Cards Grid ── */
.home-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.home-card {
  display: block;
  padding: var(--space-xl);
  background: rgba(23, 32, 86, 0.5);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(63, 69, 108, 0.4);
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.home-card:hover {
  border-color: var(--color-outline);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.home-card--disabled {
  opacity: 0.5;
  pointer-events: none;
}

.home-card__icon {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-md);
}

.home-card__name {
  font-family: var(--font-headline);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.home-card__desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.home-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.home-card__arrow {
  font-size: var(--font-size-lg);
  color: var(--color-outline);
  opacity: 0;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.home-card--link:hover .home-card__arrow {
  opacity: 1;
  transform: translateX(4px);
}

.home-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.home-card__tag {
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 500;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  color: var(--color-outline);
  border: 1px solid rgba(109, 115, 157, 0.2);
}

.home-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-card__date {
  font-family: var(--font-label);
  font-size: 0.65rem;
  color: var(--color-outline);
}

.home-card__level { font-family: var(--font-label); font-size: 0.7rem; color: var(--color-tertiary-dim); margin-bottom: var(--space-md); }
html.light .home-card__level { color: #0d9488; }

.home-card__badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
}

.home-card__badge--live {
  color: var(--color-level-beginner);
  border: 1px solid rgba(93, 231, 211, 0.3);
  background: rgba(93, 231, 211, 0.08);
}

.home-card__badge--soon {
  color: var(--color-outline);
  border: 1px solid rgba(109, 115, 157, 0.3);
}

.home-card__badge--next {
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.4);
  background: rgba(251, 191, 36, 0.1);
}
.home-card--next {
  border-color: rgba(251, 191, 36, 0.35);
  background: linear-gradient(180deg, rgba(251, 191, 36, 0.05) 0%, rgba(23, 32, 86, 0.5) 100%);
}
html.light .home-card__badge--next { color: #b45309; border-color: rgba(180,83,9,0.35); background: rgba(251,191,36,0.15); }
html.light .home-card--next { border-color: rgba(180,83,9,0.25); background: linear-gradient(180deg, rgba(251,191,36,0.08) 0%, rgba(255,255,255,0.5) 100%); }

/* ── Coming Soon Grid ── */
.home-grid--small {
  grid-template-columns: repeat(4, 1fr);
}

.home-card--small {
  padding: var(--space-lg);
  text-align: center;
}

.home-card--small .home-card__icon { margin-bottom: var(--space-sm); }
.home-card--small .home-card__name { font-size: var(--font-size-base); }
.home-card--small .home-card__desc { font-size: 0.75rem; }

/* ── Contact ── */
.home-contact {
  max-width: 520px;
  margin: 0 auto;
}

.home-contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.home-contact__row {
  display: flex;
  gap: var(--space-md);
}

.home-contact__input,
.home-contact__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  color: var(--color-text);
  background: rgba(18, 27, 76, 0.5);
  border: 1px solid rgba(63, 69, 108, 0.4);
  border-radius: var(--radius-lg);
  outline: none;
  transition: border-color var(--transition-fast);
}

.home-contact__input:focus,
.home-contact__textarea:focus {
  border-color: rgba(175, 136, 255, 0.5);
}

.home-contact__textarea {
  resize: vertical;
  min-height: 120px;
}

.home-contact__input::placeholder,
.home-contact__textarea::placeholder {
  color: rgba(109, 115, 157, 0.5);
}

.home-contact__submit {
  align-self: flex-end;
  padding: 0.75rem 2rem;
  font-family: var(--font-headline);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: #fff;
  background: var(--color-primary-dim);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.home-contact__submit:hover { background: var(--color-primary); }

.home-contact__success {
  text-align: center;
  padding: var(--space-xl);
  color: var(--color-tertiary-dim);
  font-size: var(--font-size-sm);
}

/* ── Reviews ── */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); margin-bottom: var(--space-xl); }
.reviews__empty { grid-column: 1/-1; text-align: center; color: var(--color-outline); font-size: var(--font-size-sm); padding: var(--space-xl); }

.rv__card { background: rgba(23,32,86,0.5); border: 1px solid rgba(63,69,108,0.4); border-radius: var(--radius-xl); padding: var(--space-lg); transition: border-color var(--transition-fast); }
.rv__card:hover { border-color: var(--color-outline); }
.rv__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-sm); }
.rv__star { color: var(--color-border); font-size: var(--font-size-sm); }
.rv__star--on { color: #fbbf24; }
.rv__date { font-size: 0.65rem; color: var(--color-outline); }
.rv__content { font-size: var(--font-size-sm); color: var(--color-text-muted); line-height: 1.7; margin-bottom: var(--space-md); }
.rv__footer { display: flex; justify-content: space-between; align-items: center; }
.rv__name { font-family: var(--font-headline); font-size: 0.8rem; font-weight: 600; color: var(--color-text); }
.rv__class { font-size: 0.7rem; color: var(--color-outline); }

.reviews__form-wrap { max-width: 520px; margin: 0 auto; text-align: center; }
.reviews__toggle { padding: 0.625rem 1.5rem; font-family: var(--font-headline); font-size: var(--font-size-sm); font-weight: 600; color: #fff; background: var(--color-primary-dim); border: none; border-radius: var(--radius-lg); cursor: pointer; transition: background var(--transition-fast); }
.reviews__toggle:hover { background: var(--color-primary); }

.reviews__form { margin-top: var(--space-lg); display: flex; flex-direction: column; gap: var(--space-md); text-align: left; }
.reviews__row { display: flex; gap: var(--space-md); }
.reviews__input { flex: 1; padding: 0.625rem 1rem; font-family: var(--font-body); font-size: var(--font-size-sm); color: var(--color-text); background: rgba(18,27,76,0.5); border: 1px solid rgba(63,69,108,0.4); border-radius: var(--radius-lg); outline: none; transition: border-color var(--transition-fast); }
.reviews__input:focus { border-color: rgba(175,136,255,0.5); }
.reviews__input::placeholder { color: rgba(109,115,157,0.5); }
.reviews__textarea { width: 100%; min-height: 100px; padding: 0.625rem 1rem; font-family: var(--font-body); font-size: var(--font-size-sm); color: var(--color-text); background: rgba(18,27,76,0.5); border: 1px solid rgba(63,69,108,0.4); border-radius: var(--radius-lg); outline: none; resize: vertical; transition: border-color var(--transition-fast); }
.reviews__textarea:focus { border-color: rgba(175,136,255,0.5); }
.reviews__textarea::placeholder { color: rgba(109,115,157,0.5); }

.reviews__stars { display: flex; gap: 0.25rem; }
.reviews__star { font-size: var(--font-size-xl); color: var(--color-border); cursor: pointer; transition: color var(--transition-fast); }
.reviews__star--on { color: #fbbf24; }
.reviews__star--hover { color: #fcd34d; }

.reviews__submit { align-self: flex-end; padding: 0.625rem 1.5rem; font-family: var(--font-headline); font-size: var(--font-size-sm); font-weight: 600; color: #fff; background: var(--color-primary-dim); border: none; border-radius: var(--radius-lg); cursor: pointer; }
.reviews__submit:hover { background: var(--color-primary); }
.reviews__notice { font-size: 0.7rem; color: var(--color-outline); text-align: center; }
.reviews__success { color: var(--color-tertiary-dim); font-size: var(--font-size-sm); text-align: center; padding: var(--space-lg); }

/* Light */
html.light .rv__card { background: #fff; border-color: #d4d8e3; }
html.light .rv__card:hover { border-color: #9ca3af; }
html.light .rv__content { color: #4a5068; }
html.light .rv__name { color: #1a1d2e; }
html.light .reviews__input, html.light .reviews__textarea { background: #fff; border-color: #d4d8e3; color: #1a1d2e; }
html.light .reviews__input::placeholder, html.light .reviews__textarea::placeholder { color: #9ca3af; }
html.light .reviews__star { color: #d4d8e3; }

/* ── Empty State ── */
.empty-state { text-align: center; padding: var(--space-3xl) var(--space-xl); }
.empty-state__icon { font-size: 3rem; margin-bottom: var(--space-lg); opacity: 0.6; }
.empty-state__title { font-family: var(--font-headline); font-size: var(--font-size-lg); font-weight: 700; color: var(--color-text); margin-bottom: var(--space-sm); }
.empty-state__desc { font-size: var(--font-size-sm); color: var(--color-text-muted); line-height: 1.8; margin-bottom: var(--space-sm); }
.empty-state__sub { font-size: 0.8rem; color: var(--color-outline); line-height: 1.7; margin-bottom: var(--space-xl); }
.empty-state__cta { display: inline-block; padding: 0.625rem 1.5rem; font-family: var(--font-headline); font-size: var(--font-size-sm); font-weight: 600; color: #fff; background: var(--color-primary-dim); border-radius: var(--radius-lg); text-decoration: none; transition: background var(--transition-fast); }
.empty-state__cta:hover { background: var(--color-primary); }
html.light .empty-state__title { color: #1a1d2e; }
html.light .empty-state__desc { color: #4a5068; }
html.light .empty-state__sub { color: #8890a8; }

/* ── About Profile ── */
.about-profile { padding: var(--space-xl); background: rgba(23,32,86,0.5); border: 1px solid rgba(63,69,108,0.4); border-radius: var(--radius-xl); margin-bottom: var(--space-2xl); }
.about-profile__name { font-family: var(--font-headline); font-size: var(--font-size-2xl); font-weight: 700; color: var(--color-text); margin-bottom: var(--space-xs); }
.about-profile__role { font-size: var(--font-size-sm); color: var(--color-tertiary-dim); margin-bottom: var(--space-md); }
.about-profile__desc { font-size: var(--font-size-sm); color: var(--color-text-muted); line-height: 1.8; }
html.light .about-profile { background: #fff; border-color: #d4d8e3; }
html.light .about-profile__name { color: #1a1d2e; }
html.light .about-profile__role { color: #0d9488; }
html.light .about-profile__desc { color: #4a5068; }

.about-tags { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.about-tag { padding: 0.5rem 1rem; font-family: var(--font-label); font-size: var(--font-size-sm); font-weight: 500; color: var(--color-text-muted); border: 1px solid rgba(63,69,108,0.4); border-radius: var(--radius-full); }
html.light .about-tag { color: #4a5068; border-color: #d4d8e3; }

/* ── Notice List ── */
.notice__item { display: flex; gap: var(--space-lg); padding: var(--space-lg); background: rgba(23,32,86,0.5); border: 1px solid rgba(63,69,108,0.4); border-radius: var(--radius-xl); margin-bottom: var(--space-md); transition: border-color var(--transition-fast); }
.notice__item:hover { border-color: var(--color-outline); }
.notice__date { flex-shrink: 0; font-family: var(--font-label); font-size: 0.75rem; color: var(--color-outline); min-width: 80px; padding-top: 2px; }
.notice__title { font-family: var(--font-headline); font-size: var(--font-size-base); font-weight: 700; color: var(--color-text); margin-bottom: var(--space-xs); }
.notice__desc { font-size: var(--font-size-sm); color: var(--color-text-muted); line-height: 1.7; }
html.light .notice__item { background: #fff; border-color: #d4d8e3; }
html.light .notice__item:hover { border-color: #9ca3af; }
html.light .notice__title { color: #1a1d2e; }
html.light .notice__desc { color: #4a5068; }
html.light .notice__date { color: #8890a8; }

/* ── Gallery Grid ── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.gallery-item { background: rgba(23,32,86,0.5); border: 1px solid rgba(63,69,108,0.4); border-radius: var(--radius-xl); overflow: hidden; transition: border-color var(--transition-fast), transform var(--transition-fast); text-decoration: none; color: inherit; display: block; }
.gallery-item:hover { border-color: var(--color-outline); transform: translateY(-2px); }
.gallery-item__img { width: 100%; height: 200px; object-fit: cover; display: block; }
.gallery-item__placeholder { width: 100%; height: 200px; display: flex; align-items: center; justify-content: center; font-size: var(--font-size-3xl); background: rgba(63,69,108,0.2); }
.gallery-item__info { padding: var(--space-md); }
.gallery-item__title { font-family: var(--font-headline); font-size: var(--font-size-sm); font-weight: 600; color: var(--color-text); margin-bottom: var(--space-xs); }
.gallery-item__meta { font-size: 0.7rem; color: var(--color-outline); }
html.light .gallery-item { background: #fff; border-color: #d4d8e3; }
html.light .gallery-item:hover { border-color: #9ca3af; }
html.light .gallery-item__placeholder { background: #f0f1f6; }
html.light .gallery-item__title { color: #1a1d2e; }
html.light .gallery-item__meta { color: #8890a8; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .home-hero__title { font-size: var(--font-size-2xl); }
  .home-hero__stats { gap: var(--space-lg); }
  .home-hero__stat-num { font-size: var(--font-size-xl); }
  .home-grid { grid-template-columns: 1fr; }
  .home-grid--small { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .reviews__row { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .notice__item { flex-direction: column; gap: var(--space-sm); }
  .notice__date { min-width: auto; }
  .home-contact__row { flex-direction: column; }
}

@media (max-width: 480px) {
  .home-hero__title { font-size: var(--font-size-xl); }
  .home-hero__stats { gap: var(--space-md); }
  .home-grid--small { grid-template-columns: 1fr 1fr; }
}

/* ── Light Mode ── */
html.light .home-hero__title { color: #1a1d2e; }
html.light .home-hero__accent { color: #0d9488; }
html.light .home-hero__desc { color: #4a5068; }
html.light .home-hero__cta { background: #7c4dff; color: #fff; }
html.light .home-hero__cta:hover { background: #6234cc; }

html.light .home-notice {
  background: #fff;
  border-color: #d4d8e3;
}
html.light .home-notice__title { color: #4a5068; }
html.light .home-notice__text { color: #1a1d2e; }
html.light .home-notice__date { color: #8890a8; }
html.light .home-notice__item { border-color: #e5e7eb; }

html.light .home-section__title { color: #1a1d2e; }
html.light .home-section__desc { color: #4a5068; }

html.light .home-card {
  background: #fff;
  border-color: #d4d8e3;
  backdrop-filter: none;
}
html.light .home-card:hover {
  border-color: #9ca3af;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
html.light .home-card__icon { filter: none; }
html.light .home-card__name { color: #1a1d2e; }
html.light .home-card__desc { color: #4a5068; }

html.light .home-card--disabled {
  opacity: 1;
  pointer-events: none;
}
html.light .home-card--disabled .home-card__name { color: #9ca3af; }
html.light .home-card--disabled .home-card__desc { color: #b0b5c3; }
html.light .home-card--disabled .home-card__icon { opacity: 0.5; filter: grayscale(0.5); }

html.light .home-card__badge--live {
  color: #059669;
  border-color: rgba(5, 150, 105, 0.3);
  background: rgba(5, 150, 105, 0.08);
}
html.light .home-card__badge--soon {
  color: #9ca3af;
  border-color: #d4d8e3;
  background: #f5f6fa;
}

html.light .home-contact__input,
html.light .home-contact__textarea {
  background: #fff;
  border-color: #d4d8e3;
  color: #1a1d2e;
}
html.light .home-contact__input::placeholder,
html.light .home-contact__textarea::placeholder { color: #9ca3af; }
html.light .home-contact__input:focus,
html.light .home-contact__textarea:focus { border-color: #7c4dff; box-shadow: 0 0 0 3px rgba(124,77,255,0.1); }
html.light .home-contact__submit { background: #7c4dff; color: #fff; }
html.light .home-contact__submit:hover { background: #6234cc; }

html.light .home-hero__stat-num { color: #7c4dff; }
html.light .home-hero__stat-label { color: #8890a8; }
html.light .home-hero__sub { color: #8890a8; }
html.light .home-hero__sub:hover { color: #1a1d2e; }
html.light .home-card__arrow { color: #9ca3af; }
html.light .home-card__tag { color: #8890a8; border-color: #d4d8e3; }
html.light .home-card__date { color: #9ca3af; }

/* ── Section Header (title + more link) ── */
.home-section__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}
.home-section__header .home-section__title { margin-bottom: 0; }
.home-section__more {
  font-family: var(--font-label);
  font-size: 0.8rem;
  color: var(--color-outline);
  text-decoration: none;
  transition: color var(--transition-fast);
  flex-shrink: 0;
}
.home-section__more:hover { color: var(--color-tertiary); }
html.light .home-section__more { color: #8890a8; }
html.light .home-section__more:hover { color: #0d9488; }

/* ── Review Preview Cards (home page) ── */
.home-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
@media (max-width: 768px) {
  .home-reviews-grid { grid-template-columns: 1fr; }
}
.home-review {
  padding: var(--space-lg);
  background: rgba(23, 32, 86, 0.4);
  border: 1px solid rgba(63, 69, 108, 0.35);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.home-review__type {
  display: inline-block;
  align-self: flex-start;
  padding: 0.15rem 0.5rem;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-tertiary-dim);
  border: 1px solid rgba(93, 231, 211, 0.25);
  background: rgba(93, 231, 211, 0.06);
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
}
.home-review__content {
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-review__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(63, 69, 108, 0.25);
  font-size: 0.75rem;
}
.home-review__name { color: var(--color-text-muted); font-weight: 500; }
.home-review__date { color: var(--color-outline); }
html.light .home-review {
  background: #fff;
  border-color: #d4d8e3;
}
html.light .home-review__type { color: #0d9488; border-color: rgba(13,148,136,0.3); background: rgba(13,148,136,0.05); }
html.light .home-review__content { color: #1a1d2e; }
html.light .home-review__footer { border-color: #e4e7ed; }
html.light .home-review__name { color: #4a5068; }
html.light .home-review__date { color: #9ca3af; }
