/* Custom Archive Page Layout */
.pad-v {
    padding-top: 25px;
    padding-bottom: 40px;
}

.mgb-30 {
    margin-bottom: 30px;
}

.mgt-30 {
    margin-top: 30px;
}

.fs-32 {
    font-size: 32px;
}

.color-primary {
    color: var(--primary-color);
}

.archive-title {
    margin-bottom: 5px;
    font-family: inherit;
}

.archive-meta-info {
    color: #777;
}

/* Card Container */
.fc-news-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.fc-news-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Khung ảnh & Badge */
.fc-card-image-wrapper {
    position: relative;
    padding-right: 15px;
}

.fc-cat-badge {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    z-index: 2;
    font-weight: 500;
}

.fc-img-frame {
    display: block;
    border: 2px solid #ff8800;
    /* Viền màu cam quanh ảnh */
    overflow: hidden;
    line-height: 0;
}

.fc-card-img {
    min-height: 240px;
    min-width: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fc-news-card:hover .fc-card-img {
    transform: scale(1.04);
}

/* Nội dung bài viết */
.fc-card-content {
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fc-card-title {
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    margin-bottom: 10px;
}

.fc-card-title a {
    color: #222;
}

.fc-card-title a:hover {
    color: var(--primary-color);
}

.fc-card-excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/* Footer của Card (Ngày & Xem thêm) */
.fc-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.fc-post-date {
    color: #888;
}

.fc-post-date i {
    margin-right: 3px;
}

.fc-read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.fc-read-more:hover {
    text-decoration: underline;
}

.fc-sidebar-wrapper .widget_search .ux-search-submit {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.fc-sidebar-wrapper .widget_search .search-field {
    border: none;
    box-shadow: none;
}

.fc-sidebar-wrapper .widget_search .ux-search-submit {
    color: #242424;
}

.fc-sidebar-wrapper .widget_search .searchform {
    border: 1px solid #e2e9e1;
    border-radius: 4px;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #161c27;
    width: 100%
}

.fc-sidebar-wrapper .widget .widget-title {
    color: var(--primary-color);
}

.fc-sidebar-wrapper .widget .is-divider {
    height: 2px;
    max-width: 100%;
}

.fc-sidebar-wrapper .latest-posts .is-divider {
    display: none;
}

.fc-news-card {
    transition: transform 0.3s ease;
}

.fc-news-card:hover {
    transform: translateY(-10px);
}

/* Responsive cho điện thoại */
@media (max-width: 767px) {
    .fc-card-image-wrapper {
        padding-right: 0;
        margin-bottom: 15px;
    }

    .fc-card-content {
        padding-left: 0;
    }
}