:root {
    /* Antologa Variables */
    --antologa-primary: #078282;
    --antologa-secondary: #004F71;
    --antologa-tertiary: #C45A32;
    --antologa-neutral-bg: #FFFFFF;
    --antologa-text-dark: #282828;
    --antologa-text-gray: #9E9E9E;
    --antologa-text-light: #BDBDBD;
    /* Typography */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Nunito', sans-serif;
}

/* ==========================================
   Container & Layout
   ========================================== */
.antologa-blog-container {
    background-color: var(--antologa-neutral-bg);
    min-height: 100vh;
    padding-bottom: 8rem;
}

.blog-max-width {
    max-width: 100%;
    margin: 0 auto;
}

.blog-footer {
    padding-bottom: 8vh;
}

/* ==========================================
   Typography Classes
   ========================================== */
.blog-heading-lg {
    font-family: var(--font-heading) !important;
    color: var(--antologa-text-dark);
    font-weight: 800;
}

.blog-heading-md {
    font-family: var(--font-heading) !important;
    color: var(--antologa-text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.blog-heading-sm {
    font-family: var(--font-heading) !important;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--antologa-text-dark);
}

.blog-body-text {
    font-family: var(--font-body) !important;
    color: var(--antologa-text-gray);
    line-height: 1.6;
}

.header-intro-text {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.author-text {
    font-family: var(--font-body) !important;
    font-size: 0.85rem;
    color: var(--antologa-text-gray);
}

.meta-text {
    font-family: var(--font-body) !important;
    font-size: 0.75rem;
    color: var(--antologa-text-light);
}

/* ==========================================
   Navigation & Sidebar
   ========================================== */
.sidebar-category-header {
    font-family: var(--font-heading) !important;
    font-weight: 800;
    color: var(--antologa-text-dark);
}

.blog-link {
    font-family: var(--font-body) !important;
    color: var(--antologa-text-gray);
    transition: all 0.2s ease;
    cursor: pointer;
    font-weight: 500;
}

    .blog-link:hover,
    .blog-link.active {
        color: var(--antologa-text-dark);
        font-weight: 700;
        transform: translateX(4px); /* Subtle animation */
    }

/* ==========================================
   Interactive Elements (Buttons/Chips)
   ========================================== */
.btn-read-more {
    background-color: var(--antologa-primary) !important;
    color: white !important;
    text-transform: none;
    font-weight: 600;
    width: fit-content;
}

.btn-load-more {
    border-color: #E0E0E0 !important;
    color: var(--antologa-text-dark) !important;
    text-transform: none;
}

.category-chip {
    font-family: var(--font-body) !important;
    font-size: 0.75rem !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    height: 28px;
    align-self: flex-start;
}

    .category-chip.active {
        background-color: var(--antologa-text-dark) !important;
        color: white !important;
    }

    .category-chip.inactive {
        background-color: #F5F5F5 !important;
        color: var(--antologa-text-dark) !important;
    }

.mobile-search-input {
    background-color: #FFFFFF;
}

/* ==========================================
   Featured Section
   ========================================== */
.featured-image-desktop {
    border-radius: 12px;
    height: 400px;
    width: 100%;
    object-fit: cover;
}

/* ==========================================
   Cards & Grid
   ========================================== */
.blog-card-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1rem;
    transition: transform 0.2s ease;
}

    .blog-card-wrapper:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }

.blog-card-image {
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 1/1; /* Square for grid items */
    object-fit: cover;
    display: block;
}

.blog-floating-chip {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.meta-icon {
    font-size: 0.9rem;
    color: var(--antologa-text-light);
    margin-right: 4px;
}

/* ==========================================
   Mobile Specific
   ========================================== */
.mobile-filter-scroll {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    gap: 0.5rem;
    scrollbar-width: none; /* Firefox */
}

    .mobile-filter-scroll::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

