ul.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
    padding-top: 16px;
    margin-bottom: 20px;
}

.uk-breadcrumb>* {
    flex: none;
}

ul.breadcrumb>*>* {
    display: inline-block;
    font-size: 14px;
    color: #333;
}

ul.breadcrumb li.active {
    color: #b19032;
}

ul.breadcrumb>:nth-child(n+2):not(.uk-first-column)::before {
    content: ">";
    display: inline-block;
    margin: 0 15px;
    color: #999;
}

.title-page {
    font-size: 18pt;
    margin-top: 0;
    margin-bottom: 0;
}

.description-page {
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: justify;
}

.nav-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.nav-menu li {
    flex: 1;
    min-width: 120px;
    min-height: 60px;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.nav-link:hover {
    background-color: #e9e9e9;
    color: #000;
}

.nav-link.active {
    background-color: var(--brand-gold);
    color: white;
    border-color: var(--brand-gold);
}

.nav-link.active:hover {
    background-color: #c8b44d;
}

.grid-container {
    padding-top: 3rem;
    padding-bottom: 5rem;
    display: grid;
    grid-template-columns: 2fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #e3e3e3;
}

.card-image {
    width: 100%;
    height: 12.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.5rem;
}

.card-content {
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-description {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-bottom: 0;
    line-height: 1.4;
}

.card-date-section {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
}

.card-date-text {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
    padding-bottom: 0;
}

.content {
    max-height: 19.4rem;
    overflow: hidden;
    display: block;
    transition: max-height 0.5s ease;
}

.content.show {
    max-height: 100%;
}

.show_more {
    cursor: pointer;
}