/*
Theme Name: Zargar Saffron
Theme URI: https://zargarsaffron.com
Author: Skynetlabs
Author URI: https://www.skynetjoe.com
Description: Premium WordPress theme for Zargar Saffron - Afghan saffron exporters. Features a modern, luxury design with smooth animations and full page builder compatibility (Elementor/Gutenberg).
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zargar-saffron
Tags: one-column, two-columns, custom-menu, custom-logo, editor-style, featured-images, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready, blog, e-commerce, portfolio
*/

/* =========================================
   Google Fonts Import
   ========================================= */
@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=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* =========================================
   CSS Variables - Color Palette
   ========================================= */
:root {
    /* Luxury Saffron Color Palette */
    --color-background: hsl(30, 20%, 98%);
    --color-foreground: hsl(220, 25%, 10%);

    --color-card: hsl(30, 15%, 96%);
    --color-card-foreground: hsl(220, 25%, 10%);

    /* Brand Color - #B42078 */
    --color-primary: #B42078;
    --color-primary-foreground: #FFFFFF;
    --color-primary-light: hsl(322, 60%, 52%);
    --color-primary-dark: hsl(322, 60%, 35%);
    --color-primary-glow: hsl(322, 60%, 50%);

    /* Black Secondary */
    --color-secondary: #000000;
    --color-secondary-foreground: #FFFFFF;
    --color-secondary-light: hsl(0, 0%, 20%);

    /* White Accent */
    --color-accent: #FFFFFF;
    --color-accent-foreground: #000000;
    --color-accent-light: hsl(0, 0%, 95%);
    --color-accent-dark: hsl(0, 0%, 85%);

    --color-muted: hsl(30, 10%, 92%);
    --color-muted-foreground: hsl(220, 15%, 45%);

    --color-border: hsl(30, 15%, 88%);

    /* Spacing */
    --container-max-width: 1200px;
    --container-padding: 1.5rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.5rem;
    --radius-4xl: 2rem;
    --radius-5xl: 2.5rem;

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-elevated: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(180, 32, 120, 0.4);
    --shadow-gold: 0 0 30px rgba(180, 32, 120, 0.5);

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
}

/* =========================================
   Base Styles & Reset
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   Container & Layout
   ========================================= */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

.site-content {
    margin-top: 0;
}

/* =========================================
   Header Styles
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(to bottom,
        rgba(180, 32, 120, 0.95),
        rgba(160, 28, 105, 0.90),
        rgba(140, 24, 90, 0.85)
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(180, 32, 120, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.site-header.scrolled {
    background: linear-gradient(135deg,
        rgba(180, 32, 120, 0.98),
        rgba(160, 28, 105, 0.96)
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(180, 32, 120, 0.4);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-logo:hover {
    transform: translateY(-2px);
}

.site-logo-img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.site-logo:hover .site-logo-img {
    border-color: #FFFFFF;
    box-shadow: 0 0 20px rgba(180, 32, 120, 0.6);
}

.site-header.scrolled .site-logo-img {
    width: 3rem;
    height: 3rem;
}

.site-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-foreground);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.site-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.site-header.scrolled .site-logo-text {
    font-size: 1.25rem;
}

.site-logo-text .accent {
    color: #FFFFFF;
    font-weight: 300;
    margin-left: 0.25rem;
}

/* Navigation */
.main-navigation {
    display: none;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: block;
}

.main-navigation a:hover,
.main-navigation li.current-menu-item a {
    color: #FFFFFF;
}

.main-navigation li.current-menu-item a::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    right: 0;
    height: 2px;
    background: #FFFFFF;
    border-radius: 1px;
}

@media (min-width: 1024px) {
    .main-navigation {
        display: block;
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--color-primary-foreground);
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.5rem;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, var(--color-primary-dark), var(--color-primary));
    z-index: 999;
    padding-top: 5rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu ul {
    list-style: none;
    padding: 2rem 1.5rem;
}

.mobile-menu li {
    margin-bottom: 1rem;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-primary-foreground);
    padding: 0.75rem 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu li.current-menu-item a {
    color: var(--color-accent);
}

/* =========================================
   Button Styles
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-primary-foreground);
}

.btn-primary:hover {
    background: var(--color-primary-light);
    color: var(--color-primary-foreground);
    box-shadow: var(--shadow-glow);
}

.btn-gold {
    background: linear-gradient(135deg, #B42078, hsl(322, 60%, 52%));
    color: #FFFFFF;
}

.btn-gold:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-burgundy {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    color: var(--color-primary-foreground);
}

.btn-burgundy:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-hero {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    color: var(--color-primary-foreground);
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-hero:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--color-primary-foreground);
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--color-primary-foreground);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

/* =========================================
   Hero Section
   ========================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(15, 23, 42, 0.85),
        rgba(26, 41, 66, 0.75),
        rgba(15, 23, 42, 0.90)
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 3rem 1.5rem 6rem;
    max-width: 75rem;
    margin: 0 auto;
}

.hero-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 2rem;
    color: #B42078;
    filter: drop-shadow(0 4px 12px rgba(180, 32, 120, 0.6));
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--color-primary-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 500;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 4rem;
    text-shadow: 0 2px 20px rgba(180, 32, 120, 0.6);
    display: inline-block;
}

.hero-tagline {
    max-width: 52rem;
    margin: 0 auto 3rem;
}

.hero-tagline-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-2xl);
    padding: 1.75rem 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-tagline-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    margin: 0;
    line-height: 1.7;
    font-weight: 400;
}

.hero-tagline-box .accent {
    color: var(--color-accent);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1.75rem;
    height: 2.75rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
    animation: float 3s ease-in-out infinite;
    transition: border-color 0.3s ease;
}

.scroll-indicator:hover {
    border-color: var(--color-accent);
}

.scroll-indicator-dot {
    width: 0.375rem;
    height: 0.625rem;
    background: var(--color-accent);
    border-radius: 0.25rem;
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

/* =========================================
   Section Styles
   ========================================= */
.content-section {
    padding: 5rem 0;
}

.section-dark {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    color: var(--color-primary-foreground);
}

.section-light {
    background: var(--color-background);
}

.section-muted {
    background: var(--color-muted);
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-heading-subtitle {
    font-size: 1.125rem;
    color: var(--color-muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

.section-dark .section-heading-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* =========================================
   Footer Styles
   ========================================= */
.site-footer {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    color: var(--color-primary-foreground);
}

.footer-main {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-areas:
            "brand brand brand brand"
            "widget1 widget2 widget3 widget3";
    }

    .footer-brand {
        grid-area: brand;
    }

    .footer-widget:nth-of-type(1) {
        grid-area: widget1;
    }

    .footer-widget:nth-of-type(2) {
        grid-area: widget2;
    }

    .footer-widget:nth-of-type(3) {
        grid-area: widget3;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        grid-template-areas: none;
    }

    .footer-brand {
        grid-area: auto;
    }

    .footer-widget:nth-of-type(1),
    .footer-widget:nth-of-type(2),
    .footer-widget:nth-of-type(3) {
        grid-area: auto;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: translateX(5px);
}

.footer-logo-img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(180, 32, 120, 0.4);
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    border-color: #FFFFFF;
    box-shadow: 0 0 25px rgba(180, 32, 120, 0.6);
}

.footer-logo-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 28rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--color-accent);
}

.footer-widget h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-widget ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-widget a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom-inner {
        flex-direction: row;
    }
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-accent);
    color: var(--color-secondary);
    transform: scale(1.1);
}

.footer-credits {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    margin-top: 1rem;
}

.footer-credits p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin: 0;
}

.footer-credits a {
    color: var(--color-accent);
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-credits a:hover {
    color: var(--color-accent-light);
}

/* =========================================
   Animations
   ========================================= */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.animate-scale-in {
    animation: scaleIn 0.5s ease-out forwards;
    opacity: 0;
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* =========================================
   Utility Classes
   ========================================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* =========================================
   Scrollbar Styles
   ========================================= */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-muted);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-light);
}

/* =========================================
   Responsive Typography
   ========================================= */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    .content-section { padding: 3rem 0; }
}

/* =========================================
   WordPress Core Classes
   ========================================= */
.alignnone {
    margin: 1.5rem 0;
}

.aligncenter {
    display: block;
    margin: 1.5rem auto;
}

.alignleft {
    float: left;
    margin: 0.5rem 1.5rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0.5rem 0 1rem 1.5rem;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    margin-top: 0.5rem;
    text-align: center;
}

.sticky {
    /* Styles for sticky posts */
}

.bypostauthor {
    /* Styles for post author comments */
}

.gallery-caption {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}
