.asc-album-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 15px 0;
    gap: 2mm; /* Khoảng cách chính xác 2mm giữa các album */
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.asc-album-container::-webkit-scrollbar {
    height: 4px;
}

.asc-album-container::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

.asc-album-item {
    flex: 0 0 auto;
    width: 220px; /* Độ rộng album */
    border-radius: 20px; /* Bo tròn góc đẹp giống hình mẫu */
    overflow: hidden;
    background: #fff;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 40px; /* Khoảng trống cho tên album ở đáy */
}

.asc-album-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
}

.asc-album-item a {
    display: block;
    width: 100%;
}

.asc-album-item img {
    width: 100%;
    height: 300px; /* Tỉ lệ dọc giống như trong hình mẫu */
    object-fit: cover;
    display: block;
}

.asc-album-title {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    font-size: 15px;
    font-weight: 600;
    text-align: center; /* Căn giữa tên album */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 10px;
}
