/* ============================================================
   The Ansiaer Collection — Travel Photography Portfolio
   American Grand Aesthetic: National Geographic × Luxury Editorial
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- Custom Properties --- */
:root {
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  /* 基础色板（不随主题变化） */
  --color-dark: #0d0d0d;
  --color-darker: #050505;
  --color-light: #f5f2ed;
  --color-lighter: #faf8f5;
  --color-accent: #c49b4c;
  --color-accent-light: #d4b36a;
  --color-muted: #8c8c8c;
  --color-overlay-heavy: rgba(0, 0, 0, 0.55);
  --color-overlay-light: rgba(0, 0, 0, 0.35);
  --color-card-overlay: rgba(0, 0, 0, 0.45);

  /* 语义变量（默认暗色主题） */
  --bg-body: var(--color-dark);
  --bg-section: var(--color-dark);
  --bg-card: #1a1a1a;
  --bg-footer: var(--color-darker);
  --bg-quote: var(--color-lighter);
  --bg-player-frame: #111111;
  --bg-nav-scrolled: rgba(13, 13, 13, 0.85);
  --bg-input: #141414;

  --text-primary: var(--color-light);
  --text-secondary: rgba(255, 255, 255, 0.8);
  --text-muted: var(--color-muted);
  --text-inverse: #ffffff;
  --text-inverse-secondary: rgba(255, 255, 255, 0.8);
  --text-inverse-muted: rgba(255, 255, 255, 0.55);
  --text-quote: var(--color-dark);
  --text-on-accent: #0d0d0d;

  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-input: rgba(255, 255, 255, 0.12);
  --border-nav: rgba(255, 255, 255, 0.06);

  --transition-smooth: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --shadow-xl: 0 40px 100px rgba(0, 0, 0, 0.25);

  --max-width: 1400px;
  --header-height: 72px;
}

:root[data-theme="light"] {
  --bg-body: #f5f2ed;
  --bg-section: #f5f2ed;
  --bg-card: #ffffff;
  --bg-footer: #e8e4dc;
  --bg-quote: #1a1a1a;
  --bg-player-frame: #ffffff;
  --bg-nav-scrolled: rgba(13, 13, 13, 0.85); /* 导航栏保持深色，确保亮色模式下文字可见 */
  --bg-input: #ffffff;

  --text-primary: #1a1a1a;
  --text-secondary: rgba(0, 0, 0, 0.75);
  --text-muted: #6b6b6b;
  --text-inverse: #ffffff;
  --text-inverse-secondary: rgba(255, 255, 255, 0.85);
  --text-inverse-muted: rgba(255, 255, 255, 0.55);
  --text-quote: var(--color-lighter);
  --text-on-accent: #0d0d0d;

  --border-subtle: rgba(0, 0, 0, 0.08);
  --border-input: rgba(0, 0, 0, 0.15);
  --border-nav: rgba(0, 0, 0, 0.06);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

/* 管理后台始终保持暗色，不受主题切换影响 */
.admin {
  color: #ffffff;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* --- Utility: Reveal on Scroll --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?q=80&w=2070&auto=format&fit=crop')
    center / cover no-repeat;
  /* Fallback gradient if image fails to load */
  background-color: #1a2a1f;
  filter: brightness(0.7);
  transform: scale(1.05);
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}

.hero__kicker {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text-inverse);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.5s;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-inverse-secondary);
  letter-spacing: 0.04em;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.7s;
}

.hero__divider {
  width: 80px;
  height: 2px;
  background: var(--color-accent);
  margin: 1.8rem auto;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.8s;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-inverse-muted);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1.2s;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ============================================================
   NAVIGATION (sticky top bar)
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  transition: background var(--transition-smooth), backdrop-filter var(--transition-smooth);
}

.nav--scrolled {
  background: var(--bg-nav-scrolled);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-nav);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-inverse);
  letter-spacing: 0.02em;
  transition: color var(--transition-smooth);
}

.nav__logo:hover {
  color: var(--color-accent);
}

.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-inverse-secondary);
  transition: color var(--transition-smooth);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition-smooth);
}

.nav__links a:hover {
  color: var(--text-inverse);
}

.nav__links a:hover::after {
  width: 100%;
}

/* --- Theme toggle button --- */
.theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--text-inverse-secondary);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: color var(--transition-smooth), border-color var(--transition-smooth), transform var(--transition-smooth);
}

.theme-toggle:hover {
  color: var(--text-inverse);
  border-color: var(--color-accent);
  transform: rotate(15deg);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  position: absolute;
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.theme-toggle__icon--sun {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

.theme-toggle__icon--moon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

:root[data-theme="light"] .theme-toggle {
  color: var(--text-inverse-secondary);
  border-color: rgba(255, 255, 255, 0.2);
}

:root[data-theme="light"] .theme-toggle:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

:root[data-theme="light"] .theme-toggle__icon--sun {
  opacity: 1;
  transform: rotate(0) scale(1);
}

:root[data-theme="light"] .theme-toggle__icon--moon {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

/* ============================================================
   ALBUM GRID SECTION
   ============================================================ */

.albums {
  padding: 8rem 3rem;
  background: var(--bg-section);
}

.albums__header {
  text-align: center;
  margin-bottom: 5rem;
}

.albums__kicker {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.albums__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.albums__title em {
  font-style: italic;
  font-weight: 400;
}

.albums__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* --- Album Card --- */
.card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  background: var(--bg-card);
  transition: transform var(--transition-bounce), box-shadow var(--transition-smooth), background-color var(--transition-smooth);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.card__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}

.card:hover .card__image {
  transform: scale(1.08);
}

.card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
  transition: background var(--transition-smooth);
}

.card:hover .card__overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  z-index: 2;
}

.card__city {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-inverse);
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}

.card__region {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.card:hover .card__region {
  opacity: 1;
  transform: translateY(0);
}

/* Card staggered reveal delays */
.card:nth-child(1) { transition-delay: 0s; }
.card:nth-child(2) { transition-delay: 0.05s; }
.card:nth-child(3) { transition-delay: 0.1s; }
.card:nth-child(4) { transition-delay: 0.15s; }
.card:nth-child(5) { transition-delay: 0.2s; }
.card:nth-child(6) { transition-delay: 0.25s; }
.card:nth-child(7) { transition-delay: 0.3s; }
.card:nth-child(8) { transition-delay: 0.35s; }

/* ============================================================
   FEATURED QUOTE SECTION
   ============================================================ */

.quote {
  padding: 8rem 3rem;
  background: var(--bg-quote);
  text-align: center;
}

.quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  font-style: italic;
  color: var(--text-quote);
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.quote__attribution {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  padding: 4rem 3rem 3rem;
  background: var(--bg-footer);
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   ALBUM PAGE STYLES
   ============================================================ */

.album-hero {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.album-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.65);
  transform: scale(1.05);
}

.album-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
}

.album-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.album-hero__city {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--text-inverse);
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.album-hero__region {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-top: 0.8rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

/* Back navigation */
.back-link {
  position: fixed;
  top: 1.5rem;
  left: 2rem;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-inverse-secondary);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.7rem 1.2rem;
  border-radius: 100px;
  transition: all var(--transition-smooth);
}

.back-link:hover {
  background: rgba(0, 0, 0, 0.6);
  color: var(--text-inverse);
  transform: translateX(-3px);
}

.back-link__arrow {
  font-size: 1.1rem;
  transition: transform var(--transition-smooth);
}

.back-link:hover .back-link__arrow {
  transform: translateX(-3px);
}

/* Gallery */
.gallery {
  padding: 5rem 3rem;
  background: var(--bg-section);
}

.gallery__header {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-primary);
}

.gallery__count {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.gallery__item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-card);
  cursor: pointer;
  transition: transform var(--transition-bounce), box-shadow var(--transition-smooth), background-color var(--transition-smooth);
}

.gallery__item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.gallery__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery__item:hover .gallery__img {
  transform: scale(1.1);
}

/* Gallery item sizes — some span 2 rows for visual interest */
.gallery__item--tall {
  grid-row: span 2;
  aspect-ratio: 3 / 5;
}

.gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet Landscape / Small Desktop */
@media (max-width: 1200px) {
  .albums__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet Portrait */
@media (max-width: 900px) {
  .albums__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    padding: 0 1.5rem;
  }

  .nav__links {
    gap: 1.2rem;
  }

  .albums {
    padding: 5rem 1.5rem;
  }

  .gallery {
    padding: 4rem 1.5rem;
  }

  .quote {
    padding: 5rem 1.5rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero__title {
    font-size: 2.6rem;
  }

  .nav__logo {
    font-size: 1.1rem;
  }

  .nav__links {
    gap: 0.8rem;
  }

  .nav__links a {
    font-size: 0.65rem;
    letter-spacing: 0.06em;
  }

  .albums__grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .albums {
    padding: 4rem 1.2rem;
  }

  .albums__title {
    font-size: 2rem;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery__item--wide {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  .gallery__item--tall {
    grid-row: span 1;
    aspect-ratio: 4 / 3;
  }

  .card__city {
    font-size: 1.3rem;
  }

  .album-hero {
    height: 40vh;
    min-height: 320px;
  }

  .footer {
    padding: 3rem 1.5rem 2rem;
  }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox--open {
  opacity: 1;
  visibility: visible;
}

.lightbox__stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 5rem;
}

.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: var(--shadow-xl);
  transform: scale(0.96);
  transition: transform 0.3s ease;
}

.lightbox--open .lightbox__img {
  transform: scale(1);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  transition: color var(--transition-smooth), background var(--transition-smooth);
}

.lightbox__close:hover,
.lightbox__nav:hover {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.55);
}

.lightbox__close {
  top: 1.2rem;
  right: 1.2rem;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__nav--prev {
  left: 1.2rem;
}

.lightbox__nav--next {
  right: 1.2rem;
}

.lightbox__info {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.lightbox__caption {
  max-width: 60vw;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 600px) {
  .lightbox__stage {
    padding: 3.5rem 0.5rem;
  }

  .lightbox__nav {
    width: 40px;
    height: 40px;
  }

  .lightbox__nav--prev {
    left: 0.5rem;
  }

  .lightbox__nav--next {
    right: 0.5rem;
  }

  .lightbox__caption {
    max-width: 80vw;
  }
}

/* ============================================================
   FOOTER SOCIAL LINKS (QQ / Bilibili / GitHub)
   ============================================================ */

.footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  margin: 1.4rem 0 1.2rem;
}

.footer__social-link {
  display: inline-flex;
  color: var(--text-muted);
  transition: color var(--transition-smooth), transform var(--transition-smooth);
}

.footer__social-link:hover {
  color: var(--color-accent);
  transform: translateY(-3px);
}

.footer__social-link svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* 图标镂空部分（QQ 肚皮/眼睛、B 站屏幕）与页脚底色一致 */
.footer__icon-cutout {
  fill: var(--bg-footer);
}

/* QQ 图标：不可点击，悬停浮出邮箱气泡 */
.footer__social-link {
  position: relative;
}

.footer__social-link--static {
  cursor: default;
}

.footer__social-link--static:hover {
  color: var(--color-accent);
  transform: none;
}

.footer__tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 0.4rem 0.7rem;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(196, 155, 76, 0.45);
  border-radius: 4px;
  color: var(--color-light);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.footer__social-link:hover .footer__tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.footer__icp {
  margin-top: 0.8rem;
  font-size: 0.7rem;
}

.footer__icp a {
  color: var(--text-muted);
  transition: color var(--transition-smooth);
}

.footer__icp a:hover {
  color: var(--color-accent);
}

/* ============================================================
   GALLERY EMPTY STATE (相册还没有照片时)
   ============================================================ */

.gallery__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 0;
  color: var(--color-muted);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

/* ============================================================
   MUSIC PAGE
   ============================================================ */

.music-hero__bg {
  background: url('https://images.unsplash.com/photo-1470225620780-dba8ba36b745?q=80&w=2070&auto=format&fit=crop')
    center / cover no-repeat;
  background-color: #14101f;
}

.player {
  padding: 6rem 3rem;
  background: var(--bg-section);
  text-align: center;
}

.player__header {
  margin-bottom: 3.5rem;
}

.player__kicker {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.player__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-primary);
}

/* --- NetEase iframe global player --- */
.player__frame--hidden {
  display: none;
}

/* 主页：显示为大播放器 */
body[data-page="index"] #netease-frame {
  display: block;
  position: static;
  max-width: 380px;
  margin: 0 auto 4rem;
  padding: 1.2rem;
  background: var(--bg-section);
  border: 1px solid var(--border-color, rgba(0,0,0,0.08));
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

body[data-page="index"] #netease-frame iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}

body[data-page="index"] .player__frame-hint {
  display: none;
}

/* 非主页：显示为底部浮层 */
body[data-page="music"] #netease-frame,
body[data-page="posts"] #netease-frame,
body[data-page="post"] #netease-frame {
  display: block;
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 100;
  width: min(420px, calc(100vw - 2rem));
  padding: 0.8rem 1rem;
  background: var(--bg-section);
  border: 1px solid var(--border-color, rgba(0,0,0,0.08));
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

body[data-page="music"] #netease-frame iframe,
body[data-page="posts"] #netease-frame iframe,
body[data-page="post"] #netease-frame iframe {
  display: block;
  width: 100%;
  height: 80px;
  border: 0;
}

.player__frame-hint {
  margin: 0.5rem 0 0;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-align: center;
}

.player__note {
  margin-top: 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   VINYL PLAYER
   ============================================================ */

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.vinyl-player {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* --- Tonearm --- */
.tonearm {
  position: absolute;
  top: -10px;
  right: 30px;
  width: 120px;
  height: 160px;
  z-index: 5;
  pointer-events: none;
  transform-origin: top right;
  transform: rotate(18deg);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tonearm::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 130px;
  background: linear-gradient(180deg, #8c8c8c 0%, #5a5a5a 40%, #3a3a3a 100%);
  border-radius: 3px;
  transform: rotate(-2deg);
  transform-origin: top center;
}

.tonearm::after {
  content: '';
  position: absolute;
  top: 0;
  right: -6px;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle, #b0b0b0, #6a6a6a);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.vinyl-player.is-playing .tonearm {
  transform: rotate(24deg);
}

/* --- Vinyl Disc --- */
.vinyl {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      circle at center,
      #1a1a1a 0px,
      #1a1a1a 2px,
      #222 2px,
      #222 3px,
      #1a1a1a 3px,
      #1a1a1a 5px,
      #252525 5px,
      #252525 6px,
      #1a1a1a 6px,
      #1a1a1a 8px,
      #2a2a2a 8px,
      #2a2a2a 9px,
      #1a1a1a 9px,
      #1a1a1a 12px,
      #333 12px,
      #333 13px,
      #1a1a1a 13px,
      #1a1a1a 16px,
      #282828 16px,
      #282828 17px,
      #1a1a1a 17px,
      #1a1a1a 22px,
      #2e2e2e 22px,
      #2e2e2e 23px,
      #1a1a1a 23px,
      #1a1a1a 28px,
      #333 28px,
      #333 29px,
      #1a1a1a 29px,
      #1a1a1a 36px,
      #2a2a2a 36px,
      #2a2a2a 37px,
      #1a1a1a 37px,
      #1a1a1a 46px,
      #303030 46px,
      #303030 47px,
      #1a1a1a 47px,
      #1a1a1a 52px
    );
  box-shadow:
    0 0 0 3px #111,
    0 0 0 6px #1a1a1a,
    0 0 0 8px #0d0d0d,
    0 8px 32px rgba(0,0,0,0.5),
    inset 0 0 60px rgba(0,0,0,0.3);
  transition: box-shadow 0.4s ease;
}

/* Subtle light sheen */
.vinyl::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.06) 0%,
    transparent 40%,
    transparent 60%,
    rgba(255,255,255,0.04) 100%
  );
  pointer-events: none;
}

.vinyl.is-playing {
  animation: spin 3s linear infinite;
}

/* --- Vinyl Label --- */
.vinyl__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 0 0 2px #333, 0 2px 10px rgba(0,0,0,0.4);
}

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

/* Center spindle hole */
.vinyl__label::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0d0d0d;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.1);
}

/* --- Controls --- */
.controls {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.play-btn {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--text-primary);
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.play-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(196, 155, 76, 0.25);
}

.play-btn:active {
  transform: scale(0.96);
}

.play-btn .play-icon,
.play-btn .pause-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.play-btn .pause-icon {
  opacity: 0;
}

.play-btn.is-playing .play-icon {
  opacity: 0;
}

.play-btn.is-playing .pause-icon {
  opacity: 1;
}

/* --- Track Info --- */
.track-info__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.track-info__subtitle {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* --- Mobile --- */
@media (max-width: 600px) {
  .player {
    padding: 4rem 1.2rem;
  }

  .vinyl {
    width: 200px;
    height: 200px;
    background:
      repeating-radial-gradient(
        circle at center,
        #1a1a1a 0px,
        #1a1a1a 2px,
        #222 2px,
        #222 3px,
        #1a1a1a 3px,
        #1a1a1a 5px,
        #252525 5px,
        #252525 6px,
        #1a1a1a 6px,
        #1a1a1a 8px,
        #2a2a2a 8px,
        #2a2a2a 9px,
        #1a1a1a 9px,
        #1a1a1a 12px,
        #333 12px,
        #333 13px,
        #1a1a1a 13px,
        #1a1a1a 16px,
        #282828 16px,
        #282828 17px,
        #1a1a1a 17px,
        #1a1a1a 22px,
        #2e2e2e 22px,
        #2e2e2e 23px,
        #1a1a1a 23px,
        #1a1a1a 28px,
        #333 28px,
        #333 29px,
        #1a1a1a 29px,
        #1a1a1a 36px,
        #2a2a2a 36px,
        #2a2a2a 37px,
        #1a1a1a 37px
      );
  }

  .vinyl__label {
    width: 80px;
    height: 80px;
  }

  .vinyl__label::after {
    width: 8px;
    height: 8px;
  }

  .tonearm {
    top: -8px;
    right: 16px;
    width: 90px;
    height: 120px;
  }

  .tonearm::before {
    height: 100px;
    width: 5px;
  }

  .tonearm::after {
    width: 14px;
    height: 14px;
    right: -4px;
  }

  .track-info__title {
    font-size: 0.95rem;
  }

  .play-btn {
    width: 44px;
    height: 44px;
  }
}

/* ============================================================
   POSTS / STORIES PAGES
   ============================================================ */

.posts-hero .album-hero__bg {
  background: url('https://images.unsplash.com/photo-1499750310159-5b9887039e54?q=80&w=2070&auto=format&fit=crop')
    center / cover no-repeat;
  background-color: #1a1a1a;
}

.posts-section {
  padding: 6rem 3rem;
  background: var(--bg-section);
}

.posts-section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.posts-section__kicker {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.posts-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.posts-section__cta {
  text-align: center;
  margin-top: 3rem;
}

.posts-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.posts-list--compact {
  grid-template-columns: repeat(3, 1fr);
}

.posts-list__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 0;
  color: var(--text-muted);
  font-family: var(--font-accent);
  font-style: italic;
}

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  overflow: hidden;
  transition: transform var(--transition-bounce), box-shadow var(--transition-smooth), background-color var(--transition-smooth);
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.post-card__cover {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
}

.post-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.post-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.post-card__meta {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.post-card__summary {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card--compact .post-card__title {
  font-size: 1.15rem;
}

.post-article {
  max-width: 780px;
  margin: 0 auto;
  padding: calc(var(--header-height) + 4rem) 2rem 5rem;
  background: var(--bg-section);
  min-height: 100vh;
}

.post-article__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.post-article__kicker {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.post-article__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.post-article__meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.post-article__cover {
  margin: 0 0 2.5rem;
  border-radius: 6px;
  overflow: hidden;
}

.post-article__cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.post-article__content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.post-article__content h2,
.post-article__content h3 {
  font-family: var(--font-display);
  color: var(--text-primary);
  margin: 2rem 0 1rem;
}

.post-article__content p {
  margin-bottom: 1.2rem;
}

.post-article__content img {
  border-radius: 4px;
  margin: 1.5rem 0;
}

.post-article__content blockquote {
  border-left: 3px solid var(--color-accent);
  padding-left: 1.2rem;
  margin: 1.5rem 0;
  color: var(--text-secondary);
  font-style: italic;
}

.post-article__content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-article__content a:hover {
  color: var(--color-accent-light);
}

.post-article__footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

@media (max-width: 900px) {
  .posts-list,
  .posts-list--compact {
    grid-template-columns: repeat(2, 1fr);
  }

  .posts-section {
    padding: 4rem 1.5rem;
  }

  .post-article {
    padding-top: calc(var(--header-height) + 2.5rem);
  }
}

@media (max-width: 600px) {
  .posts-list,
  .posts-list--compact {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ADMIN PAGE (照片与文章管理后台)
   ============================================================ */

.admin {
  background: var(--color-darker);
  min-height: 100vh;
}

.admin__wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.admin__login {
  max-width: 380px;
  margin: 12vh auto 0;
  text-align: center;
}

.admin__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
}

.admin__sub {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0.6rem 0 2rem;
}

.admin__form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.admin input,
.admin select {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-light);
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--transition-smooth);
}

.admin input:focus,
.admin select:focus {
  border-color: var(--color-accent);
}

.admin__btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-light);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  padding: 0.75rem 1.4rem;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.admin__btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.admin__btn--primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #0d0d0d;
}

.admin__btn--primary:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
  color: #0d0d0d;
}

.admin__btn--danger:hover {
  border-color: #c0392b;
  color: #e74c3c;
}

.admin__error {
  color: #e74c3c;
  font-size: 0.8rem;
}

.admin__status {
  color: var(--color-accent-light);
  font-size: 0.8rem;
  margin: 0.8rem 0;
}

.admin__back {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition-smooth);
}

.admin__back:hover {
  color: var(--color-accent);
}

.admin__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 2rem;
}

.admin__bar-actions {
  display: flex;
  gap: 0.8rem;
}

.admin__toolbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin__toolbar label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.admin__upload {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
  padding: 1.2rem;
  background: #101010;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  margin-bottom: 2rem;
}

.admin__upload input[type="file"] {
  flex: 1 1 220px;
}

.admin__upload input[type="text"] {
  flex: 1 1 160px;
}

.admin__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.2rem;
}

.admin-photo {
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  overflow: hidden;
}

.admin-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.admin-photo__body {
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.admin-photo__body input,
.admin-photo__body select {
  font-size: 0.8rem;
  padding: 0.5rem 0.7rem;
}

.admin-photo__row {
  display: flex;
  gap: 0.6rem;
}

.admin-photo__row select {
  flex: 1;
}

@media (max-width: 600px) {
  .admin__wrap {
    padding: 2.5rem 1.2rem;
  }
}

/* --- Admin tabs --- */
.admin__tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.admin__tab {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.8rem 1rem;
  cursor: pointer;
  transition: color var(--transition-smooth), border-color var(--transition-smooth);
}

.admin__tab:hover {
  color: #ffffff;
}

.admin__tab--active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

/* --- Admin posts --- */
.admin__post-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.2rem;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  margin-bottom: 2rem;
}

.admin__post-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.admin__post-row input {
  flex: 1 1 220px;
}

.admin__post-form textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-light);
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  resize: vertical;
}

.admin__post-form textarea:focus {
  border-color: var(--color-accent);
  outline: none;
}

.admin__post-check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.admin__post-actions {
  display: flex;
  gap: 0.8rem;
}

.admin__post-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.admin-post {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
}

.admin-post h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.admin-post__meta {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.admin-post__actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .admin-post {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-post__actions {
    width: 100%;
  }
}
