.home-classes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.home-classes__card {
    background: #fff;
    border-radius: var(--home-radius);
    overflow: hidden;
    box-shadow: var(--shadow-2, 0 1px 12px rgba(16, 24, 40, 0.06));
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-classes__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-4, 0 12px 16px rgba(16, 24, 40, 0.1));
}

.home-classes__card:hover .home-classes__thumb img {
    transform: scale(1.075);
}

.home-classes__thumb {
    display: block;
    aspect-ratio: 4 / 3;
    background: #e7eef6;
}

.home-classes__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.home-classes__body {
    padding: 1.25rem;
}

.home-classes__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--home-blue-dark);
    margin-bottom: 0.75rem;
}

.home-classes__title a {
    color: inherit;
}

.home-classes__meta {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.home-classes__meta li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--home-text-light);
}

.home-classes__meta svg {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

.home-classes__price {
}

.home-classes__price--old {
    font-size: 0.875rem;
    color: var(--home-text-light);
    text-decoration: line-through;
}

.home-classes__price--new {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--home-orange);
}

.home-classes__more {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

@media (max-width: 1024px) {
    .home-classes__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .home-classes__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .home-classes__more {
        margin-top: 1.5rem;
    }
}
