/* ============================================
   AURORA THEME - A Healing Ghost Theme
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --color-bg: #faf8f5;
    --color-bg-secondary: #f3efe9;
    --color-surface: rgba(255, 255, 255, 0.72);
    --color-surface-hover: rgba(255, 255, 255, 0.9);
    --color-text: #2d3436;
    --color-text-secondary: #636e72;
    --color-text-light: #a0a8ab;
    --color-border: rgba(0, 0, 0, 0.06);
    --color-primary: #6c5ce7;
    --color-primary-light: #a29bfe;
    --color-accent-warm: #fd79a8;
    --color-accent-orange: #f8a978;
    --color-accent-green: #55efc4;
    --color-accent-blue: #74b9ff;
    --color-accent-purple: #dfe6fd;
    --gradient-aurora: linear-gradient(135deg, #a29bfe 0%, #fd79a8 25%, #f8a978 50%, #55efc4 75%, #74b9ff 100%);
    --gradient-warm: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    --gradient-cool: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
    --gradient-sunset: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.4) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(108, 92, 231, 0.15);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', 'Noto Serif SC', Georgia, serif;
    --font-serif-cn: 'Noto Serif SC', serif;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    --glass-blur: blur(20px);
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.3);
    --content-width: 1200px;
    --narrow-width: 720px;
}

/* Dark Mode */
.dark-mode {
    --color-bg: #0f0f1a;
    --color-bg-secondary: #1a1a2e;
    --color-surface: rgba(30, 30, 50, 0.72);
    --color-surface-hover: rgba(40, 40, 65, 0.9);
    --color-text: #e8e6e3;
    --color-text-secondary: #a0a0b0;
    --color-text-light: #6c6c80;
    --color-border: rgba(255, 255, 255, 0.08);
    --gradient-card: linear-gradient(135deg, rgba(30,30,50,0.8) 0%, rgba(30,30,50,0.4) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.35);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(108, 92, 231, 0.25);
    --glass-bg: rgba(20, 20, 40, 0.65);
    --glass-border: rgba(255, 255, 255, 0.1);
}

@media (prefers-color-scheme: dark) {
    .auto-color {
        --color-bg: #0f0f1a;
        --color-bg-secondary: #1a1a2e;
        --color-surface: rgba(30, 30, 50, 0.72);
        --color-surface-hover: rgba(40, 40, 65, 0.9);
        --color-text: #e8e6e3;
        --color-text-secondary: #a0a0b0;
        --color-text-light: #6c6c80;
        --color-border: rgba(255, 255, 255, 0.08);
        --gradient-card: linear-gradient(135deg, rgba(30,30,50,0.8) 0%, rgba(30,30,50,0.4) 100%);
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
        --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
        --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.35);
        --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.4);
        --shadow-glow: 0 0 40px rgba(108, 92, 231, 0.25);
        --glass-bg: rgba(20, 20, 40, 0.65);
        --glass-border: rgba(255, 255, 255, 0.1);
    }
}

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

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

body {
    font-family: var(--font-sans);
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
    min-height: 100vh;
    transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

body.has-serif-title h1, body.has-serif-title h2, body.has-serif-title h3, body.has-serif-title h4 {
    font-family: var(--font-serif);
}

body.has-sans-body .gh-content, body.has-sans-body .post-card-excerpt {
    font-family: var(--font-sans);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

img {
    max-width: 100%;
    height: auto;
}

/* ---- Aurora Animated Background ---- */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.aurora-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: aurora-float 20s ease-in-out infinite;
}

.aurora-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--color-accent-warm);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.aurora-orb-2 {
    width: 500px;
    height: 500px;
    background: var(--color-accent-blue);
    bottom: -150px;
    left: -100px;
    animation-delay: -7s;
}

.aurora-orb-3 {
    width: 400px;
    height: 400px;
    background: var(--color-accent-green);
    top: 40%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes aurora-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(80px, -60px) scale(1.1); }
    50% { transform: translate(-40px, 40px) scale(0.9); }
    75% { transform: translate(60px, 80px) scale(1.05); }
}

.dark-mode .aurora-orb {
    opacity: 0.15;
}

/* ---- Layout ---- */
.viewport {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1;
}

.outer {
    padding-left: max(4vmin, 20px);
    padding-right: max(4vmin, 20px);
}

.inner {
    max-width: var(--content-width);
    margin: 0 auto;
    width: 100%;
}

/* ---- Reading Progress Bar ---- */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 9999;
    display: none;
}

.reading-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-aurora);
    border-radius: 0 3px 3px 0;
    transition: width 0.1s linear;
}

/* ---- Header / Navigation ---- */
.gh-head {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding-top: 2rem;
    padding-bottom: 2rem;
    transition: all var(--transition-smooth);
}

.gh-head-scrolled {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.gh-head-scrolled .gh-head-inner {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.gh-head-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 1rem 2.4rem;
    border-radius: var(--radius-xl);
    transition: all var(--transition-smooth);
}

.gh-head.is-header-hidden {
    display: none;
}

.gh-head-brand {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-shrink: 0;
}

.gh-head-logo {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-text);
    display: flex;
    align-items: center;
}

.gh-head-logo img {
    max-height: 40px;
}

.gh-head-logo:hover {
    color: var(--color-primary);
}

.gh-head-menu {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.gh-head-menu .nav {
    display: flex;
    list-style: none;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.gh-head-menu .nav li a {
    display: block;
    padding: 0.6rem 1.4rem;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.gh-head-menu .nav li a:hover {
    color: var(--color-primary);
    background: rgba(108, 92, 231, 0.08);
}

.gh-head-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

.gh-head-members {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.gh-head-link {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.gh-head-button {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    background: var(--gradient-aurora);
    background-size: 200% 200%;
    border-radius: var(--radius-xl);
    transition: all var(--transition-smooth);
    animation: gradient-shift 6s ease infinite;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.gh-head-button:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(108, 92, 231, 0.4);
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Icon buttons */
.gh-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    border: none;
    background: transparent;
    color: var(--color-text-secondary);
    cursor: pointer;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.gh-icon-btn:hover {
    color: var(--color-primary);
    background: rgba(108, 92, 231, 0.08);
}

.gh-icon-btn svg {
    width: 18px;
    height: 18px;
}

/* Theme toggle */
.gh-theme-toggle {
    position: relative;
}

.gh-theme-toggle .icon-moon {
    display: block;
}

.gh-theme-toggle .icon-sun {
    display: none;
}

.dark-mode .gh-theme-toggle .icon-moon {
    display: none;
}

.dark-mode .gh-theme-toggle .icon-sun {
    display: block;
}

/* Burger menu */
.gh-burger {
    display: none;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.gh-burger::before,
.gh-burger::after {
    content: '';
    position: absolute;
    left: 8px;
    width: 20px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.gh-burger::before { top: 12px; }
.gh-burger::after { top: 22px; }

.gh-head-open .gh-burger::before {
    top: 17px;
    transform: rotate(45deg);
}

.gh-head-open .gh-burger::after {
    top: 17px;
    transform: rotate(-45deg);
}

/* ---- Site Header / Hero ---- */
.site-header-content {
    position: relative;
    padding: 8vmin 0 4vmin;
    text-align: center;
    overflow: hidden;
}

.site-header-content.left-aligned {
    text-align: left;
}

.site-header-content.no-content {
    padding: 0;
    min-height: 0;
}

.site-header-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
}

.site-header-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.site-logo {
    max-height: 80px;
    margin-bottom: 2rem;
}

.site-title {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: var(--gradient-aurora);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 8s ease infinite;
    margin-bottom: 1rem;
}

.site-description {
    font-size: 2rem;
    color: var(--color-text-secondary);
    font-weight: 300;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.left-aligned .site-description {
    margin: 0;
}

/* ---- Hero Section (Homepage) ---- */
.hero-section {
    position: relative;
    padding: 10vmin 0 6vmin;
    text-align: center;
    overflow: hidden;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-greeting {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-primary);
    background: rgba(108, 92, 231, 0.08);
    padding: 0.6rem 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2.4rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(3.6rem, 6vw, 6.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.hero-title .gradient-text {
    background: var(--gradient-aurora);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 8s ease infinite;
}

.hero-description {
    font-size: 2rem;
    color: var(--color-text-secondary);
    font-weight: 300;
    max-width: 640px;
    margin: 0 auto 3.6rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1.6rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.4rem 3.2rem;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: all var(--transition-smooth);
}

.hero-btn-primary {
    color: #fff;
    background: var(--gradient-aurora);
    background-size: 200% 200%;
    animation: gradient-shift 6s ease infinite;
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.3);
}

.hero-btn-primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.4);
}

.hero-btn-secondary {
    color: var(--color-text);
    background: var(--color-surface);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--color-border);
}

.hero-btn-secondary:hover {
    color: var(--color-primary);
    background: var(--color-surface-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Cover image hero */
.hero-cover {
    position: relative;
    margin: 4rem auto 0;
    max-width: 900px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-cover img {
    width: 100%;
    display: block;
    transition: transform 8s ease;
}

.hero-cover:hover img {
    transform: scale(1.03);
}

/* ---- Section Titles ---- */
.section-title {
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-primary);
    margin-bottom: 3.6rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-border);
}

/* ---- Tag Cloud ---- */
.tag-cloud {
    padding: 4vmin 0;
}

.tag-cloud-inner {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.8rem;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    background: var(--color-surface);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-smooth);
    cursor: pointer;
}

.tag-pill:hover {
    color: var(--color-primary);
    background: rgba(108, 92, 231, 0.08);
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.tag-pill-count {
    font-size: 1.2rem;
    color: var(--color-text-light);
}

/* ---- Post Feed ---- */
.site-main {
    padding: 4vmin 0;
}

.post-feed {
    display: grid;
    gap: 3.2rem;
}

/* Grid layout */
.post-feed {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

/* Classic layout - first post large */
.home-template .post-card-large {
    grid-column: 1 / -1;
}

.home-template .post-card-large .post-card-image-link {
    aspect-ratio: 2.2;
}

.home-template .post-card-large .post-card-title {
    font-size: 3.2rem;
}

/* List layout */
.post-card.post-card-large {
    grid-column: 1 / -1;
}

.post-card.post-card-large .post-card-inner {
    grid-template-columns: 1fr 1fr;
}

/* ---- Post Card ---- */
.post-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gradient-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
}

.post-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(108, 92, 231, 0.2);
}

.post-card:hover .post-card-image {
    transform: scale(1.05);
}

.post-card-image-link {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.post-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.post-card-access {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1.2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-sm);
}

.post-card-access svg {
    width: 14px;
    height: 14px;
}

.post-card-content {
    padding: 2.4rem;
}

.post-card-content-link {
    display: block;
    color: var(--color-text);
}

.post-card-content-link:hover {
    color: var(--color-text);
}

.post-card-header {
    margin-bottom: 1.2rem;
}

.post-card-tags {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.post-card-primary-tag {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    background: rgba(108, 92, 231, 0.08);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-sm);
}

.post-card-featured {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-accent-warm);
}

.post-card-featured svg {
    width: 14px;
    height: 14px;
}

.post-card-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    transition: color var(--transition-fast);
}

.post-card:hover .post-card-title {
    color: var(--color-primary);
}

.post-card-excerpt {
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 0.8rem;
}

.post-card-meta {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--color-border);
    font-size: 1.3rem;
    color: var(--color-text-light);
}

.post-card-meta-length::before {
    content: '·';
    margin-right: 1.2rem;
}

/* keep-ratio for grid layout */
.post-card.keep-ratio .post-card-image-link {
    aspect-ratio: 4/3;
}

/* ---- Featured Posts Slider ---- */
.featured-section {
    padding: 4vmin 0;
}

.featured-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2.4rem;
}

.featured-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    align-items: flex-end;
    transition: all var(--transition-smooth);
}

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

.featured-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.featured-card:hover .featured-card-bg {
    transform: scale(1.05);
}

.featured-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
}

.featured-card-content {
    position: relative;
    z-index: 1;
    padding: 3rem;
    color: #fff;
}

.featured-card-tag {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent-warm);
    margin-bottom: 0.8rem;
}

.featured-card-title {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: #fff;
}

.featured-card-title:hover {
    color: #fff;
}

.featured-card-meta {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

/* ---- Newsletter Section ---- */
.newsletter-section {
    padding: 8vmin 0;
    text-align: center;
}

.newsletter-card {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    padding: 6rem 4rem;
    background: var(--gradient-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-aurora);
    opacity: 0.05;
    animation: gradient-rotate 15s linear infinite;
}

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

.newsletter-content {
    position: relative;
    z-index: 1;
}

.newsletter-emoji {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.newsletter-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.newsletter-description {
    font-size: 1.6rem;
    color: var(--color-text-secondary);
    margin-bottom: 3.2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1.2rem;
    max-width: 440px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1.4rem 2rem;
    font-size: 1.5rem;
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    outline: none;
    transition: all var(--transition-fast);
}

.newsletter-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.newsletter-btn {
    padding: 1.4rem 2.4rem;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-sans);
    color: #fff;
    background: var(--color-primary);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--color-accent-warm);
    transform: translateY(-2px);
}

/* ---- Article / Post ---- */
.article {
    padding: 4vmin 0;
}

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

.article-tag {
    margin-bottom: 1.6rem;
}

.article-tag a {
    color: var(--color-primary);
}

.article-title {
    font-size: clamp(3.2rem, 5vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 2rem;
}

.article-excerpt {
    font-size: 2rem;
    color: var(--color-text-secondary);
    font-weight: 300;
    max-width: 720px;
    margin: 0 auto 3rem;
    line-height: 1.5;
}

.article-byline {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.article-byline-content {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.author-list {
    list-style: none;
    display: flex;
}

.author-list-item {
    margin-right: -0.8rem;
}

.author-avatar {
    display: block;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-bg);
}

.author-profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-byline-meta {
    text-align: left;
}

.author-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.author-name a {
    color: var(--color-text);
}

.byline-meta-content {
    font-size: 1.3rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.article-image {
    margin: 0 auto 4rem;
    max-width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.article-image img {
    width: 100%;
    display: block;
}

.article-image figcaption {
    text-align: center;
    font-size: 1.3rem;
    color: var(--color-text-light);
    padding: 1.2rem 0;
}

/* Ghost canvas for content width */
.gh-canvas {
    max-width: var(--narrow-width);
    margin: 0 auto;
    padding: 0 max(4vmin, 20px);
}

.image-full .article-image {
    max-width: none;
    border-radius: 0;
}

.image-small .article-image {
    max-width: 720px;
}

/* ---- Ghost Content Styles ---- */
.gh-content {
    font-size: 1.8rem;
    line-height: 1.8;
    overflow-wrap: break-word;
    word-break: break-word;
}

.gh-content > * + * {
    margin-top: 2.8rem;
}

.gh-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-top: 5.6rem;
}

.gh-content h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-top: 4.8rem;
}

.gh-content h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 4rem;
}

.gh-content a {
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.gh-content a:hover {
    color: var(--color-accent-warm);
}

.gh-content blockquote {
    position: relative;
    padding: 2.4rem 3.2rem;
    margin: 4rem 0;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
    font-style: italic;
    font-size: 2rem;
}

.gh-content blockquote::before {
    content: '\201C';
    position: absolute;
    top: -1rem;
    left: 2rem;
    font-size: 6rem;
    font-family: var(--font-serif);
    color: var(--color-primary-light);
    opacity: 0.3;
    line-height: 1;
}

.gh-content pre {
    padding: 2.4rem;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-md);
    overflow-x: auto;
    font-size: 1.5rem;
    line-height: 1.6;
    border: 1px solid var(--color-border);
}

.gh-content code {
    font-size: 0.9em;
    background: var(--color-bg-secondary);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.gh-content pre code {
    background: transparent;
    padding: 0;
}

.gh-content img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.gh-content hr {
    border: none;
    height: 1px;
    background: var(--color-border);
    margin: 4rem 0;
}

.gh-content ul, .gh-content ol {
    padding-left: 2.4rem;
}

.gh-content li + li {
    margin-top: 0.8rem;
}

.gh-content table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.gh-content th, .gh-content td {
    padding: 1.2rem 1.6rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.gh-content th {
    background: var(--color-bg-secondary);
    font-weight: 600;
}

.gh-content figcaption {
    font-size: 1.3rem;
    color: var(--color-text-light);
    text-align: center;
    margin-top: 1rem;
}

/* Ghost content cards */
.gh-content .kg-image-card,
.gh-content .kg-gallery-card {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.gh-content .kg-width-wide {
    max-width: min(1040px, calc(100vw - 8vmin));
    margin-left: calc(50% - min(520px, calc(50vw - 4vmin)));
    margin-right: calc(50% - min(520px, calc(50vw - 4vmin)));
}

.gh-content .kg-width-full {
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.gh-content .kg-width-full img {
    border-radius: 0;
}

.kg-bookmark-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.kg-bookmark-card:hover {
    box-shadow: var(--shadow-md);
}

.kg-bookmark-container {
    display: flex;
    color: var(--color-text);
    text-decoration: none;
}

.kg-bookmark-content {
    flex: 1;
    padding: 2rem;
}

.kg-bookmark-title {
    font-size: 1.6rem;
    font-weight: 600;
}

.kg-bookmark-description {
    font-size: 1.4rem;
    color: var(--color-text-secondary);
    margin-top: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kg-bookmark-metadata {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.2rem;
    font-size: 1.3rem;
    color: var(--color-text-light);
}

.kg-bookmark-icon {
    width: 20px;
    height: 20px;
}

.kg-bookmark-thumbnail {
    width: 200px;
    min-height: 160px;
}

.kg-bookmark-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* Gallery */
.kg-gallery-container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.kg-gallery-row {
    display: flex;
    gap: 0.8rem;
}

.kg-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- Comments ---- */
.article-comments {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid var(--color-border);
}

/* ---- Footer CTA ---- */
.footer-cta {
    padding: 8vmin 0;
    text-align: center;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.footer-cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2.4rem;
}

.footer-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0.4rem 0.4rem 0.4rem 2.4rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--color-text);
}

.footer-cta-button:hover {
    color: var(--color-text);
    box-shadow: var(--shadow-md);
}

.footer-cta-input {
    font-size: 1.5rem;
    color: var(--color-text-light);
}

.footer-cta-button span {
    display: block;
    padding: 1.2rem 2.4rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    background: var(--color-primary);
    border-radius: var(--radius-xl);
}

/* ---- Read More Section ---- */
.read-more-wrap {
    padding: 6vmin 0;
}

.read-more {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.4rem;
}

/* ---- Footer ---- */
.site-footer {
    padding: 6rem 0 3rem;
    background: var(--color-bg-secondary);
    margin-top: 4vmin;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--color-border);
}

.footer-logo {
    max-height: 36px;
    margin-bottom: 1.6rem;
}

.footer-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
}

.footer-description {
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    max-width: 360px;
}

.footer-nav-title {
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.6rem;
    color: var(--color-text);
}

.footer-nav .nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav .nav li a {
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.footer-nav .nav li a:hover {
    color: var(--color-primary);
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    color: var(--color-text-secondary);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    transition: all var(--transition-fast);
}

.footer-social-link:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.4rem;
    font-size: 1.3rem;
    color: var(--color-text-light);
}

.footer-bottom a {
    color: var(--color-text-light);
}

.footer-bottom a:hover {
    color: var(--color-primary);
}

/* ---- Back To Top ---- */
.back-to-top {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 4.8rem;
    height: 4.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    color: #fff;
    background: var(--color-primary);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-smooth);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-accent-warm);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ---- Pagination ---- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.6rem;
    padding: 4vmin 0 2vmin;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.4rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-fast);
}

.pagination a:hover {
    color: var(--color-primary);
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.page-number {
    font-size: 1.4rem;
    color: var(--color-text-light);
}

/* ---- Error Pages ---- */
.error-content {
    padding: 14vmin 0;
    text-align: center;
}

.error-message {
    max-width: 480px;
    margin: 0 auto;
}

.error-code {
    font-size: 12rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    background: var(--gradient-aurora);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 8s ease infinite;
    line-height: 1;
    margin-bottom: 1.6rem;
}

.error-description {
    font-size: 2rem;
    color: var(--color-text-secondary);
    margin-bottom: 3.2rem;
}

.error-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.8rem;
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    background: var(--color-primary);
    border-radius: var(--radius-xl);
    transition: all var(--transition-fast);
}

.error-link:hover {
    color: #fff;
    background: var(--color-accent-warm);
    transform: translateY(-2px);
}

/* ---- Tag Page ---- */
.tag-header {
    text-align: center;
    padding: 6vmin 0 4vmin;
}

.tag-header .post-card-image-link {
    display: block;
    max-width: 200px;
    margin: 0 auto 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.tag-header .post-card-image {
    aspect-ratio: 1;
    object-fit: cover;
}

.tag-header .post-card-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.tag-header .post-card-excerpt {
    font-size: 1.8rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 1.2rem auto 0;
    -webkit-line-clamp: unset;
}

/* ---- Author Page ---- */
.author-header {
    text-align: center;
    padding: 6vmin 0 4vmin;
}

.author-profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
    border: 4px solid var(--color-surface);
    box-shadow: var(--shadow-lg);
}

.author-header .post-card-title {
    font-size: 3.6rem;
    font-weight: 800;
}

.author-header .post-card-excerpt {
    font-size: 1.8rem;
    color: var(--color-text-secondary);
    max-width: 560px;
    margin: 1.2rem auto 0;
    -webkit-line-clamp: unset;
}

.author-profile-footer {
    margin-top: 2rem;
}

.author-profile-location {
    font-size: 1.4rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.author-profile-meta {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.author-profile-social-link {
    font-size: 1.4rem;
    color: var(--color-text-secondary);
}

.author-profile-social-link:hover {
    color: var(--color-primary);
}

.author-profile-social-link svg {
    width: 20px;
    height: 20px;
}

/* ---- Scroll Reveal Animation ---- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger effect for cards */
.post-card.reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.post-card.reveal-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.post-card.reveal-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.post-card.reveal-on-scroll:nth-child(5) { transition-delay: 0.15s; }
.post-card.reveal-on-scroll:nth-child(6) { transition-delay: 0.25s; }

/* ---- Lightbox / PhotoSwipe ---- */
.pswp {
    z-index: 99999;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .footer-grid {
        gap: 2.4rem;
        padding: 0 0.8rem 3rem;
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .featured-slider {
        grid-template-columns: 1fr;
    }
    .post-card.post-card-large .post-card-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .gh-head-menu,
    .gh-head-actions .gh-head-members,
    .gh-head-actions .gh-search,
    .gh-head-actions .gh-theme-toggle {
        display: none;
    }
    .gh-head-brand .gh-burger,
    .gh-head-brand .gh-search {
        display: flex;
    }

    .gh-head-open .gh-head-inner {
        flex-direction: column;
        align-items: stretch;
        background: var(--glass-bg);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        border: 1px solid var(--glass-border);
        box-shadow: var(--shadow-lg);
    }

    .gh-head-open .gh-head-menu,
    .gh-head-open .gh-head-actions .gh-head-members,
    .gh-head-open .gh-head-actions .gh-theme-toggle {
        display: flex;
    }

    .gh-head-open .gh-head-menu {
        flex-direction: column;
        padding: 1.6rem 0;
    }

    .gh-head-open .gh-head-menu .nav {
        flex-direction: column;
    }

    .gh-head-open .gh-head-actions {
        justify-content: center;
        padding-bottom: 1.6rem;
    }

    .post-feed {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: clamp(2.8rem, 8vw, 4rem);
    }

    .hero-description {
        font-size: 1.6rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .site-title {
        font-size: 3.6rem;
    }

    .article-title {
        font-size: clamp(2.8rem, 7vw, 4rem);
    }

    .footer-grid {
        gap: 2.4rem;
        padding: 0 0.8rem 3rem;
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .newsletter-card {
        padding: 4rem 2.4rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-title {
        font-size: 2.2rem;
    }

    .error-code {
        font-size: 8rem;
    }

    .tag-header .post-card-title {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .post-card-content {
        padding: 1.8rem;
    }

    .post-card-title {
        font-size: 1.8rem;
    }

    .gh-content {
        font-size: 1.7rem;
    }

    .back-to-top {
        bottom: 2rem;
        right: 2rem;
        width: 4rem;
        height: 4rem;
    }
}

/* ---- Utility ---- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ---- Loading Animation ---- */
@keyframes pulse-glow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* Ghost card specific overrides for ghost's internal card CSS */
.gh-content .kg-callout-card {
    border-radius: var(--radius-md);
}

.gh-content .kg-toggle-card {
    border-radius: var(--radius-md);
}

.gh-content .kg-product-card {
    border-radius: var(--radius-md);
}

/* Ensure dark mode applies to Ghost's internal styles */
.dark-mode .kg-bookmark-card,
.dark-mode .kg-callout-card,
.dark-mode .kg-toggle-card {
    background: var(--color-surface);
    border-color: var(--color-border);
    color: var(--color-text);
}

/* ---- Comment count styling ---- */
.post-card-meta .comment-count {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.post-card-meta .comment-count::before {
    content: '·';
    margin-right: 0.4rem;
}

/* Posts list inner wrapper */
.posts {
    padding: 0;
}

/* ---- Dynamic cards for classic layout ---- */
@media (min-width: 768px) {
    .post-card.dynamic {
        grid-column: span 1;
    }
}

/* Error stack trace */
.error-stack {
    margin-top: 4rem;
    text-align: left;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.error-stack h3 {
    margin-bottom: 1.6rem;
}

.error-stack-list {
    list-style: none;
}

.error-stack-function {
    font-weight: 600;
}

.error-stack-file {
    font-size: 1.4rem;
    color: var(--color-text-secondary);
}

/* Site nav for error page */
.site-nav-main {
    padding: 2rem 0;
}

.site-nav-center {
    display: flex;
    justify-content: center;
}

.site-nav-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
}

.site-nav-logo img {
    max-height: 36px;
}

/* ---- FitVids ---- */
.fluid-width-video-wrapper {
    width: 100%;
    position: relative;
    padding: 0;
}

.fluid-width-video-wrapper iframe,
.fluid-width-video-wrapper object,
.fluid-width-video-wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ---- Mobile Footer Fix ---- */
@media (max-width: 768px) {
    .site-footer {
        padding: 4rem 0 2.4rem;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem;
        padding-bottom: 3rem;
        text-align: center;
    }

    .site-footer .footer-description {
        max-width: 100%;
        margin: 0 auto;
    }

    .site-footer .footer-social-links {
        justify-content: center;
    }

    .site-footer .footer-nav .nav {
        align-items: center;
    }

    .site-footer .footer-bottom {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
        padding-top: 2rem;
    }

    .back-to-top {
        bottom: 2rem;
        right: 2rem;
        width: 4.2rem;
        height: 4.2rem;
    }
}
