.hg-container-5d175260 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .hg-container-5d175260 {
        grid-template-columns: 1fr;
    }
}

.hg-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.hg-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.hg-image-wrap {
    overflow: hidden;
    aspect-ratio: 4/5;
    width: 100%;
}

.hg-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hg-card:hover .hg-image-wrap img {
    transform: scale(1.08);
}

.hg-content {
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hg-title {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
}

.hg-price {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    font-weight: 500;
}

.hg-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: auto;
}

.hg-button:hover {
    background-color: #333;
    color: #fff;
}
