/* Custom overrides */

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding-left: 0;
    list-style: none;
}

.page-numbers li {
    display: inline-flex;
}

.page-numbers a,
.page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    border-radius: 9999px;
    border: 1px solid rgba(48, 170, 122, 0.2);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #6b7280;
    transition: all 0.2s ease;
}

.page-numbers a:hover {
    color: #ffffff;
    background-color: #30aa7a;
    border-color: #30aa7a;
}

.page-numbers .current {
    color: #ffffff;
    background-color: #30aa7a;
    border-color: #30aa7a;
}

.page-numbers .prev,
.page-numbers .next {
    min-width: auto;
    min-height: auto;
    border: none;
    border-radius: 0;
    letter-spacing: 0;
    text-transform: none;
    font-size: 0.75rem;
    color: #111827;
    font-weight: 600;
}

.page-numbers .prev:hover,
.page-numbers .next:hover {
    color: #30aa7a;
    background-color: transparent;
}

.entry-content a {
    color: #30aa7a;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    transition: color 0.2s ease;
}

.entry-content a:hover,
.entry-content a:focus {
    color: #278c64;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: #111827;
    font-family: var(--font-museomoderno, "MuseoModerno", sans-serif);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    font-family: var(--font-montserrat, "Montserrat", sans-serif);
}

