.hero-section {
    background-color: var(--color_antique_charcoal_gray);
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url(https://mydwarfvilla.com/images/blogs/investment_rare_antique.jpg);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
}
.antique-terms-content {
    background-color: var(--color_antique_light_cream);
}
.antique-terms-content .main-content {
    background-color: white;
}
.antique-terms-content li {
    margin-left: 2em;
}
.blog-card {
    transition: all 0.3s ease;
    border-left: 3px solid var(--secondary);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.category-badge {
    background-color: var(--primary);
    color: white;
}

.ai-tag {
    background-color: var(--accent);
    color: white;
}

.sidebar-widget {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.sidebar-title {
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}



/* Alphabetical Keyword List */
.alphabetical-keyword-list {
    max-height: 600px; /* Fixed height for the list */
    overflow-y: auto; /* Enable vertical scrolling */
    border: 1px solid var(--color_border);
    border-radius: 5px;
    padding: 10px;
    background-color: var(--color_primary_dark);
    margin-top: 10px;
}

.alphabetical-keyword-list h6 {
    color: var(--color_antique_blue);
    margin-top: 10px;
    margin-bottom: 5px;
    border-bottom: 1px solid var(--color_border);
    padding-bottom: 3px;
}

.alphabetical-keyword-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alphabetical-keyword-list li {
    padding: 4px 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.alphabetical-keyword-list li:hover {
    color: var(--color_antique_blue);
}

.thematic-border {
    background-color: white;
    border: 2px solid var(--color_border);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 20px;
}


/* Alpha Accordian */

.alpha-section {
    background-color: white;
    border-left: 4px solid var(--color_antique_gold);
}

.alpha-letter {
    color: var(--color_antique_gold);
    font-size: 1.8rem;
    font-weight: bold;
    margin-right: 10px;
}

.letter-nav {
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.letter-btn {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0.25rem;
    font-weight: bold;
    color: var(--bs-primary);
    border: 2px solid var(--color_antique_gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}

.letter-btn:hover, .letter-btn.active {
    background-color: var(--color_antique_gold);
    color: white;
}


.accordion-button {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    background-color: #fff;
    padding: 1rem 1.25rem;
}

.accordion-button:not(.collapsed) {
    color: var(--bs-primary);
    background-color: #fff;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.keyword-column {
    column-count: 3;
    column-gap: 2rem;
}

@media (max-width: 768px) {
    .keyword-column {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .keyword-column {
        column-count: 1;
    }
}
.keyword-link {
    text-decoration: none;
    border-bottom: 1px dotted transparent;
    transition: all 0.2s ease;
    display: block;
    margin-bottom: 0.5rem;
    break-inside: avoid;
}

.keyword-link:hover {
    border-bottom-color: var(--color_antique_gold);
}

.keyword-count {
    font-size: 0.8rem;
    color: var(--color_antique_gold);
    margin-left: 5px;
}

