/**
 * Module Young Author Page Styles - Dark Theme with Creative Orange Accent
 * SkoolBeez Landing Page
 */

/* ========================================
   CSS Variables
   ======================================== */
:root {
    --sb-dark-1: #0d1b2a;
    --sb-dark-2: #1b263b;
    --sb-dark-3: #415a77;
    --sb-yellow: #ffed00;
    --sb-yellow-dark: #ffc300;
    --sb-glass: rgba(255, 255, 255, 0.03);
    --sb-glass-border: rgba(255, 255, 255, 0.1);
    --sb-text-muted: rgba(255, 255, 255, 0.6);
    --sb-orange: #f97316;
    --sb-orange-light: #fb923c;
    --sb-orange-dark: #ea580c;
    --sb-amber: #f59e0b;
}

/* ========================================
   Hero Section
   ======================================== */
.author-hero {
    background: linear-gradient(135deg, var(--sb-dark-1) 0%, var(--sb-dark-2) 50%, var(--sb-dark-3) 100%);
    position: relative;
    overflow: hidden;
    padding: 160px 0 100px;
    margin-top: -80px;
}

.author-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.author-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.author-hero-honeycomb {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='56' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 66L0 50V16L28 0l28 16v34L28 66zm0-12l20-12V22L28 10 8 22v20l20 12z' fill='%23f97316' fill-opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.6;
}

/* Floating Quill Animation */
.floating-quill {
    position: absolute;
    font-size: 2.5rem;
    color: var(--sb-orange);
    opacity: 0.12;
    z-index: 1;
    animation: quillFloat 12s ease-in-out infinite;
}

.floating-quill-1 {
    top: 20%;
    left: 8%;
    animation-delay: 0s;
}

.floating-quill-2 {
    top: 50%;
    right: 12%;
    animation-delay: -4s;
    font-size: 2rem;
}

.floating-quill-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: -8s;
    font-size: 1.75rem;
}

@keyframes quillFloat {
    0%, 100% { transform: translateY(0) rotate(-15deg); }
    25% { transform: translateY(-25px) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(-20deg); }
    75% { transform: translateY(-30px) rotate(-10deg); }
}

/* Floating Stars */
.floating-star {
    position: absolute;
    font-size: 1rem;
    color: var(--sb-amber);
    opacity: 0.2;
    z-index: 1;
    animation: starTwinkle 3s ease-in-out infinite;
}

.floating-star-1 { top: 15%; right: 20%; animation-delay: 0s; }
.floating-star-2 { top: 35%; left: 12%; animation-delay: -1s; }
.floating-star-3 { bottom: 40%; right: 8%; animation-delay: -2s; }
.floating-star-4 { top: 60%; left: 25%; animation-delay: -0.5s; }

@keyframes starTwinkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.author-hero-content {
    position: relative;
    z-index: 10;
}

/* Breadcrumb */
.author-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.author-breadcrumb a {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--sb-text-muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.author-breadcrumb a:hover {
    color: var(--sb-orange);
}

.author-breadcrumb a.active {
    color: var(--sb-orange);
}

.author-breadcrumb iconify-icon {
    color: var(--sb-text-muted);
    font-size: 1rem;
}

/* Hero Badge */
.author-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.4);
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--sb-orange);
    margin-bottom: 1.5rem;
}

/* Hero Title */
.author-hero-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.author-hero-title .highlight {
    color: var(--sb-orange);
    position: relative;
}

.author-hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(249, 115, 22, 0.3);
    z-index: -1;
    border-radius: 4px;
}

/* Hero Description */
.author-hero-description {
    font-family: 'Nunito', sans-serif;
    font-size: 1.125rem;
    color: var(--sb-text-muted);
    line-height: 1.8;
    max-width: 600px;
}

/* Hero Image */
.author-hero-image {
    position: relative;
    z-index: 10;
}

.author-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5);
    animation: authorFloat 6s ease-in-out infinite;
}

@keyframes authorFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Book Badge */
.author-book-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--sb-orange) 0%, var(--sb-orange-dark) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px -10px rgba(249, 115, 22, 0.5);
    z-index: 15;
    animation: badgePulse 3s ease-in-out infinite;
}

.author-book-badge iconify-icon {
    font-size: 2rem;
    color: #ffffff;
}

.author-book-badge span {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.7rem;
    color: #ffffff;
    margin-top: 4px;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ========================================
   Stats Banner Section
   ======================================== */
.author-stats-section {
    background: linear-gradient(90deg, var(--sb-orange) 0%, var(--sb-orange-dark) 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.author-stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 33L15 25V8l15-8 15 8v17l-15 8z' fill='%23000' fill-opacity='0.08'/%3E%3C/svg%3E");
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-icon {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.stat-number {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ========================================
   Features Section
   ======================================== */
.author-features {
    background: linear-gradient(180deg, var(--sb-dark-2) 0%, var(--sb-dark-1) 100%);
    padding: 100px 0;
    position: relative;
}

.author-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sb-glass-border), transparent);
}

.author-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.author-feature-card {
    background: var(--sb-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--sb-glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.author-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--sb-orange), var(--sb-amber));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.author-feature-card:hover::before {
    transform: scaleX(1);
}

.author-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.author-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.author-feature-card:hover .author-feature-icon {
    transform: scale(1.1);
}

.author-feature-icon.orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.25) 0%, rgba(234, 88, 12, 0.15) 100%);
    color: var(--sb-orange);
}

.author-feature-icon.amber {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.25) 0%, rgba(217, 119, 6, 0.15) 100%);
    color: var(--sb-amber);
}

.author-feature-icon.rose {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.2) 0%, rgba(225, 29, 72, 0.1) 100%);
    color: #f43f5e;
}

.author-feature-icon.cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(8, 145, 178, 0.1) 100%);
    color: #06b6d4;
}

.author-feature-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.author-feature-text {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--sb-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   Journey Section (Process)
   ======================================== */
.author-journey {
    background: var(--sb-dark-1);
    padding: 100px 0;
    position: relative;
}

.author-journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sb-glass-border), transparent);
}

.journey-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.journey-cards::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, var(--sb-orange), var(--sb-amber), var(--sb-orange-light), var(--sb-orange));
    border-radius: 2px;
    z-index: 0;
}

.journey-card {
    background: var(--sb-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--sb-glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.journey-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.journey-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--sb-orange) 0%, var(--sb-orange-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #ffffff;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px -5px rgba(249, 115, 22, 0.5);
}

.journey-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(234, 88, 12, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 2rem;
    color: var(--sb-orange);
}

.journey-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.journey-description {
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: var(--sb-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   Tabs Section
   ======================================== */
.author-tabs-section {
    background: linear-gradient(180deg, var(--sb-dark-1) 0%, var(--sb-dark-2) 100%);
    padding: 100px 0;
    position: relative;
}

.author-tabs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sb-glass-border), transparent);
}

.author-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    margin-bottom: 50px;
    padding: 0;
    list-style: none;
    width: 100%;
}

.author-tabs .nav-item {
    flex: 1 1 0;
    min-width: 0;
}

.author-tab-btn {
    width: 100%;
    padding: 20px 24px;
    background: var(--sb-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--sb-glass-border);
    border-radius: 16px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--sb-text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.author-tab-btn:hover {
    background: rgba(249, 115, 22, 0.08);
    border-color: rgba(249, 115, 22, 0.3);
    color: #ffffff;
}

.author-tab-btn.active {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(234, 88, 12, 0.15) 100%);
    border-color: var(--sb-orange);
    color: var(--sb-orange);
}

.author-tab-btn iconify-icon {
    font-size: 1.5rem;
}

/* Tab Content */
.author-tab-content {
    background: var(--sb-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--sb-glass-border);
    border-radius: 24px;
    overflow: hidden;
}

.author-tab-image {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.05) 100%);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.author-tab-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
}

.author-tab-info {
    padding: 2.5rem;
}

.author-tab-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

/* Accordion */
.author-accordion {
    border: none;
}

.author-accordion .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--sb-glass-border);
}

.author-accordion .accordion-button {
    background: transparent;
    padding: 1.25rem 0;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    box-shadow: none;
}

.author-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
}

.author-accordion .accordion-button:not(.collapsed) {
    color: var(--sb-orange);
    background: transparent;
}

.author-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(56%) sepia(98%) saturate(1000%) hue-rotate(360deg) brightness(103%) contrast(96%);
}

.author-accordion .accordion-body {
    padding: 0 0 1.25rem 0;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--sb-text-muted);
    line-height: 1.7;
}

/* ========================================
   Gallery Preview Section
   ======================================== */
.author-gallery-preview {
    background: var(--sb-dark-1);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.author-gallery-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sb-glass-border), transparent);
}

.gallery-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    background: var(--sb-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--sb-glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.gallery-item-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--sb-orange) 0%, var(--sb-orange-dark) 100%);
    border-radius: 20px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    color: #ffffff;
    text-transform: uppercase;
}

.gallery-item-genre {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(249, 115, 22, 0.15);
    border-radius: 20px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--sb-orange);
    margin-bottom: 1rem;
}

.gallery-item-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.gallery-item-author {
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: var(--sb-text-muted);
    margin-bottom: 1rem;
}

.gallery-item-excerpt {
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: var(--sb-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--sb-glass-border);
}

.gallery-item-stats {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gallery-stat {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.8rem;
    color: var(--sb-text-muted);
}

.gallery-stat iconify-icon {
    color: var(--sb-orange);
}

/* ========================================
   CTA Section
   ======================================== */
.author-cta-section {
    background: linear-gradient(135deg, var(--sb-orange) 0%, var(--sb-orange-dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.author-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 33L15 25V8l15-8 15 8v17l-15 8z' fill='%23000' fill-opacity='0.08'/%3E%3C/svg%3E");
}

.author-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.author-cta-logo {
    width: 100px;
    margin-bottom: 2rem;
    animation: ctaBounce 2s ease-in-out infinite;
}

@keyframes ctaBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.author-cta-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.author-cta-description {
    font-family: 'Nunito', sans-serif;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.author-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #ffffff;
    border: none;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--sb-orange-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.author-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.3);
    color: var(--sb-orange-dark);
}

/* ========================================
   Section Common
   ======================================== */
.section-header {
    margin-bottom: 60px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--sb-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1.125rem;
    color: var(--sb-text-muted);
    max-width: 600px;
    line-height: 1.7;
}

/* ========================================
   Responsive Adjustments
   ======================================== */
@media (max-width: 992px) {
    .author-hero {
        padding: 120px 0 60px;
        text-align: center;
    }

    .author-breadcrumb {
        justify-content: center;
    }

    .author-hero-description {
        max-width: 100%;
        margin: 0 auto;
    }

    .author-hero-image {
        margin-top: 3rem;
    }

    .floating-quill,
    .floating-star {
        display: none;
    }

    .author-book-badge {
        width: 70px;
        height: 70px;
        top: -10px;
        right: -10px;
    }

    .author-book-badge iconify-icon {
        font-size: 1.5rem;
    }

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

    .journey-cards::before {
        display: none;
    }

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

    .author-tabs {
        flex-wrap: wrap;
    }

    .author-tabs .nav-item {
        flex: 1 1 calc(50% - 6px);
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .author-hero-title {
        font-size: 2rem;
    }

    .author-feature-card {
        padding: 1.5rem;
    }

    .journey-cards {
        grid-template-columns: 1fr;
    }

    .journey-card {
        padding: 1.5rem;
    }

    .gallery-showcase {
        grid-template-columns: 1fr;
    }

    .author-tabs .nav-item {
        flex: 1 1 100%;
    }

    .author-tab-btn {
        justify-content: center;
    }

    .author-tab-content {
        border-radius: 16px;
    }

    .author-tab-info {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-icon {
        font-size: 2rem;
    }
}
