.filter-search {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 20px;
    width: 100%;
}

.filter-search select,
.filter-search .input-search {
    flex: 1;
}

.filter-search select {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
    color: #207D57;
}

.loading-overlay {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    flex-direction: column;
    gap: 10px;
}

.loading-overlay .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #eaeaea;
    border-top-color: #207D57;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    animation: fadeIn 0.3s ease-in-out;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #207D57;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    animation: spin 0.8s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.input-search {
    position: relative;
    width: 100%;
}

.input-search input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.input-search .icon-search {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    cursor: pointer;
    pointer-events: auto;
    z-index: 10;
}


.communication-section-list {
    margin: 50px 0px;
}

.box-list-content {
    border-radius: 16px;
    border: 1px solid #E1E1E1;
    padding: 24px;
    margin-top: 20px;
}

.box-content-image {
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
    border-radius: 16px;
}

.box-content-image a {
    text-decoration: none;
    display: block;
}

.box-content-image img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    object-position: center;
    border-radius: 16px;
    transition: transform 0.3s ease-in-out;
}


.box-content-image:hover img {
    opacity: 0.8;
    filter: brightness(0.7);
    /* transform: scale(1.05); */
}


.box-content-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 25px 0px 0px 15px;
}

.box-content-text a h3 {
    color: #207D57;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    margin: 0px !important;
}

.box-content-text p {
    color: #222;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    margin: 0px !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.box-content-text .date-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.box-content-text .date span {
    color: #222;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.box-content-text .date span {
    color: var(--Mlogo, #207D57);
    font-weight: 600;
}

.box-content-text .detail {
    color: var(--Mlogo, #207D57);
    font-size: 16px;
    font-weight: 600;
}

/* Chi tiết */
.social-sharing-network ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

@media (max-width: 1200px) {
    .breadcrumbs {
        margin-left: 10px !important;
    }
}

@media (max-width: 992px) {
    .box-list-content {
        padding: 15px;
    }

}

@media (max-width: 768px) {
    .box-list-content {
        padding: 13px;
    }

    .box-content-text {
        margin: 25px 0px 0px 0px;
    }

    .box-content-text p {
        font-size: 14px;
    }

    .box-content-text .date span {
        font-size: 14px;
    }

    .box-content-text .detail {
        font-size: 14px;
    }
    .box-content-text .detail svg{
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .filter-search {
        flex-direction: column;
        gap: 15px;
    }
    .filter-search select,
    .filter-search .input-search {
        width: 100%;
        flex: unset;
    }
}
