.cl1-card {
    max-width: 400px;
    background: var(--White);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: auto;
}

/* Phần tiêu đề chứa ảnh */
.cl1-card-header {
    position: relative;
    height: 70px;
    background: url('/wp-content/uploads/2025/08/bgInternet.png') no-repeat center/cover;
}

.cl1-card-header h2 {
    position: absolute;
    bottom: 10px;
    text-align: center;
    color: var(--White) !important;
    font-size: 20px;
    font-weight: bold;
}

/* Nội dung */
.cl1-card-body {
    padding: 15px;
	color: var(--Black);
}

/* Thanh tiêu đề nhỏ cho lưu trữ */
.cl1-subtitle {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    margin-bottom: 5px;
	font-size: 18px;
}

/* Nếu chỉ có 1 span thì cắt bớt bằng ... */
.cl1-subtitle:has(> span:only-child) span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Nội dung cuộn */
.cl1-scroll-content {
    max-height: 80px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.5;
}

/* Giá */
.cl1-price {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Tùy chỉnh thanh cuộn */
.cl1-scroll-content::-webkit-scrollbar {
    width: 6px;
}
.cl1-scroll-content::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}
.cl1-scroll-content::-webkit-scrollbar-track {
    background-color: transparent;
}

/* Responsive */
@media (max-width: 480px) {
    .cl1-card {
        max-width: 95%;
    }
}