.premium-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    box-sizing: border-box;
}

.premium-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08) !important;
}

.premium-card-title {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.premium-card-desc {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .premium-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .premium-cards-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    }
}
