.related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.related-header h3 {
	color: var(--color-black);
    font-size: 22px;
    font-weight: 700;
}

.related-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-item {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.related-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.related-content {
    padding: 15px;
}

.related-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.related-title a {
    color: var(--Navy-Blue);
    text-decoration: none;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related-excerpt {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.related-date {
    font-size: 13px;
    color: #999;
}

/* ===== nút icon ===== */
.related-nav {
    display: flex;
    gap: 10px;
}

.related-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: var(--color-white);
    color: var(--Navy-Blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s;
}

.related-btn:hover {
    background: var(--Navy-Blue);
    color: var(--color-white);
    border-color: var(--Navy-Blue);
}

/* ===== scroll ngang chỉ cho PC ===== */
.related-list-wrapper {
    overflow: hidden;
}

@media (min-width: 992px) {
    .related-item {
        min-width: calc(33.333% - 14px);
    }
}

/* Mobile ẩn nút */
@media (max-width: 576px) {
    .related-nav {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .related-list {
        grid-template-columns: 1fr;
    }

    .related-thumb img {
        height: 200px;
    }
}