/* most popular */
.most-popular {
    background: url("../img/backgrounds/most-popular.png") no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: auto;
    z-index: 100 !important;
    position: relative;
}
.most-popular .btn1-custom {
    padding: 10px 27px;
    background-color: rgba(217, 217, 217, 0.52);
    border: 1px solid var(--color-white);
    border-radius: 10px;
    transition: all 0.4s ease;
}
.most-popular .btn1-custom:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #4c8fff;
    box-shadow: 0 0 15px rgba(76, 143, 255, 0.5);
    transition: all 0.4s ease;
}
.most-popular .most-popular-title {
    font-size: 55px;
}
.swiper {
    width: 100%;
    height: 100%;
}
.swiper .swiper-slide {
    width: 330px;
    height: 330px;
    background: rgba(255, 255, 255, 0.2);
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* editor's pick for you */
.editor-title {
    gap: 16px;
}
.editor-line {
    flex-grow: 1;
    height: 3px;
    border-radius: 2px;
    background: var(--color-white);
}
.editor .news-editor {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid var(--color-white);
    border-radius: 10px;
    transition: all 0.4s ease;
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}
.editor .news-editor:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 0 25px #0040ff6f;
    border-color: rgba(0, 150, 255, 0.7);
}
.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}
.featured-card {
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}
.featured-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}
.featured-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.8) 100%
    );
}
.featured-label {
    font-size: 0.85rem;
    color: #bbb;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.featured-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 8px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}
.article-card {
    display: flex;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}
.article-image {
    width: 140px;
    min-width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    margin: 12px;
}
.article-content {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}
.article-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}
.article-description {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.4;
}
@media (max-width: 768px) {
    .grid-layout {
        grid-template-columns: 1fr;
    }
    .featured-card {
        grid-row: auto;
        min-height: 300px;
    }
    .featured-title {
        font-size: 1.8rem;
    }
    .featured-content {
        padding: 20px;
    }
    .article-card {
        flex-direction: column;
    }
    .article-image {
        width: 100%;
        height: 180px;
        margin: 0;
        border-radius: 12px 12px 0 0;
    }
    .article-content {
        padding: 15px;
    }
}
@media (max-width: 480px) {
    .featured-title {
        font-size: 1.5rem;
    }
    .article-title {
        font-size: 1rem;
    }
    .article-description {
        font-size: 0.8rem;
    }
}
/* fresh blog */
.fresh-blogs {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    background: transparent;
}
.blog-image {
    flex: 0 0 40%;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgb(255, 255, 255);
}
.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.blog-des {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 1000px) {
    .fresh-blogs {
        flex-direction: column;
    }
    .blog-image {
        width: 100%;
        height: 200px;
    }
    .blog-des {
        padding-top: 15px;
    }
}

.category-card {
    background: #1c1f2e;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: #4f46e5;
}

.breadcrumb {
    background: transparent;
    padding: 0.75rem 1rem;
    margin-bottom: 0;
    border-radius: 0.5rem;
    display: flex;
    flex-wrap: wrap;
}
.breadcrumb-item a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}
.breadcrumb-item a:hover {
    color: #2563eb;
}
