.search-results-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 50px 20px;
    background: #fff;
}

.search-header {
    margin-bottom: 30px;
}

.search-header h1 {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.search-header p {
    font-size: 14px;
    color: #7f8c8d;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 60px;
}

.article-card {
    display: flex;
    gap: 25px;
    background: #fff;
    border-radius: 0;
    overflow: visible;
    padding-bottom: 35px;
    border-bottom: 1px solid #ecf0f1;
}

.article-card:last-child {
    border-bottom: none;
}

.article-card:hover .article-title a {
    color: var(--e-global-color-8cb3382);
}

.article-card-image {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 0;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.article-card:hover .article-card-image img {
    /* transform: scale(1.05); */
    opacity: 0.8;
}

.article-card-content {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.article-category {
    display: inline-block;
    text-decoration: none;
    align-self: flex-start;
    letter-spacing: 0.8px;

    background-color: var(--e-global-color-ab60b3e);
    font-family: var(--e-global-typography-0a1f54c-font-family), Sans-serif;
    font-size: var(--e-global-typography-0a1f54c-font-size);
    font-weight: var(--e-global-typography-0a1f54c-font-weight);
    text-transform: var(--e-global-typography-0a1f54c-text-transform);
    color: var(--e-global-color-8cb3382);
    padding: 3px 13px 3px 13px;
    border-radius: 50px 50px 50px 50px;
}

.article-category:hover {
    /* background: #5dade2; */
    /* color: #fff; */
}

.article-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 14px;
    line-height: 1em;
}

.article-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 28px;
    font-weight: var(--e-global-typography-6108d55-font-weight);
}

.article-excerpt {
    font-family: var(--e-global-typography-c59c11a-font-family), Sans-serif;
    font-size: var(--e-global-typography-c59c11a-font-size);
    font-weight: var(--e-global-typography-c59c11a-font-weight);
    line-height: var(--e-global-typography-c59c11a-line-height);
    letter-spacing: var(--e-global-typography-c59c11a-letter-spacing);
    color: #000000;
}

.article-meta {
    font-family: "Anuphan", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #000000;
    margin-top: 10px;
}

.article-meta a {
    text-decoration: none;
}

.article-meta a:hover {
    color: #2c3e50;
}

/* Paginação */
.search-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 60px 0 40px;
}

.search-pagination a,
.search-pagination span {
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    padding: 10px 20px;
    border-radius: 50px;
}

.search-pagination a {
    background: #ecf0f1;
    color: #2c3e50;
}

.search-pagination a:hover {
    background: #090d80;
    color: #fff;
}

.search-pagination .current {
    background: #090d80;
    color: #fff;
    font-weight: 500;
}

.search-pagination .dots {
    background: transparent;
    color: #bdc3c7;
    min-width: 24px;
}

.search-pagination .prev-next {
    color: #2c3e50 !important;
    padding: 10px 20px;
    background: #ecf0f1;
    border-radius: 50px;
}
.search-pagination .prev-next:hover {
    background: #090d80;
    color: #fff !important;
}
/* Responsive */
@media (max-width: 768px) {
    .search-results-container {
        padding: 0px 15px;
        width: 100%;
    }
    
    .article-card {
        flex-direction: column;
        gap: 15px;
    }
    
    .article-card-image {
        width: 100%;
        height: 240px;
    }
    
    .article-title {
        font-size: 19px;
    }
    
    .search-pagination a,
    .search-pagination span {
        min-width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

.no-results {
    text-align: center;
    padding: 80px 20px;
}

.no-results h2 {
    font-size: 22px;
    color: #7f8c8d;
    margin-bottom: 15px;
    font-weight: 600;
}

.no-results p {
    color: #95a5a6;
    font-size: 14px;
}

