.bhv-the-loai-container {
    padding: 0 15px;
}

.bhv-the-loai-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: bold;
}

.bhv-the-loai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
}

.bhv-the-loai-card {
    display: block;
    overflow: hidden;
    text-decoration: none;
background: var(--card-bg);
    padding: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.bhv-the-loai-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.bhv-the-loai-thumb {
background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    width: 100%;
    height: 200px;
}

.bhv-the-loai-info {
    padding: 15px;
    text-align: center;
}

.bhv-the-loai-info h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.bhv-the-loai-info span {
    font-size: 0.9rem;
}