/* ================= BLOG ================= */
.fv-blog__hero {
    background: linear-gradient(135deg, #1E3A8A, #0F172A);
    color: white;
    padding: 60px 20px 40px;
    text-align: center;
}

.fv-blog__title {
    font-size: 28px;
    font-weight: 700;
}

.fv-blog__breadcrumb {
    margin-top: 20px;
}

.fv-blog__breadcrumb ol {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    list-style: none;
}

.fv-blog__breadcrumb a {
    color: #cbd5f5;
    text-decoration: none;
    font-size: 13px;
}

.fv-blog__breadcrumb a:hover {
    color: white;
}

/* category title */
.fv-blog__category {
    margin: 40px 0 20px;
    font-size: 20px;
    font-weight: 600;
}

.fv-blog__category a {
    color: var(--text);
    text-decoration: none;
}

.fv-blog__category span {
    font-size: 14px;
    color: var(--text-light);
}

/* grid spacing */
.fv-blog__col {
    margin-bottom: 20px;
}

/* ================= CARD ================= */
.fv-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: 0.3s;
}

.fv-card:hover {
    transform: translateY(-6px);
}

/* image */
.fv-card__image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* body */
.fv-card__body {
    padding: 16px;
    flex-grow: 1;
}

.fv-card__title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

.fv-card__title a {
    color: var(--text);
    text-decoration: none;
}

.fv-card__title a:hover {
    color: var(--primary);
}

/* text */
.fv-card__text {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
}

/* footer */
.fv-card__footer {
    border-top: 1px solid var(--border);
    padding: 10px 16px;
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
}

/* ================= RESPONSIVE BLOG ================= */

/* tablet */
@media (min-width: 768px) {
    .fv-blog__title {
        font-size: 32px;
    }
}

/* desktop */
@media (min-width: 1024px) {
    .fv-card__image img {
        height: 200px;
    }

    .fv-blog__title {
        font-size: 36px;
    }
}

/* mobile */
@media (max-width: 480px) {
    .fv-blog__hero {
        padding: 40px 15px;
    }

    .fv-blog__title {
        font-size: 22px;
    }
}
/* ================= ARTICLE ================= */
.fv-article {
    padding: 30px 15px;
}

/* meta */
.fv-article__meta {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-light);
}

/* title */
.fv-article__title {
    font-size: 28px;
    font-weight: 700;
    margin: 20px 0;
}

/* media */
.fv-article__media {
    width: 100%;
    border-radius: var(--radius);
    margin: 15px 0;
}

/* intro */
.fv-article__intro {
    font-size: 15px;
    line-height: 2;
    color: var(--text);
}

/* toc */
.fv-article__toc {
    background: var(--bg);
    padding: 16px;
    border-radius: var(--radius);
    margin: 20px 0;
}

.fv-article__toc a {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: var(--primary);
}

/* content */
.fv-article__content {
    line-height: 2.1;
}

.fv-article__section {
    font-weight: 700;
    margin: 25px 0 10px;
    font-size: 20px;
}

/* alert */
.fv-alert {
    background: #fff3cd;
    padding: 12px;
    border-radius: var(--radius);
    margin: 15px 0;
}

/* comments */
.fv-comments {
    margin-top: 40px;
}

.fv-comment {
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
}

.fv-comment__header {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.fv-comment__reply {
    background: var(--bg);
    padding: 10px;
    margin-top: 10px;
    border-radius: var(--radius);
}

/* sidebar */
.fv-sidebar {
    background: var(--white);
    padding: 15px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.fv-sidebar__item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.fv-sidebar__item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .fv-article__title {
        font-size: 22px;
    }

    .fv-article__meta {
        flex-direction: column;
        gap: 5px;
    }
}