/* ================= EMAIL MARKETING PAGE SPECIFIC ================= */

/* 2x2 Grid for Strategy Cards */
.email-grid-2x2 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
    width: 100%;
}

/* Ensure Tilt Cards take full width of their grid cell */
.email-grid-2x2 .tilt-card {
    width: 100% !important;
    height: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Responsive Fix */
@media (max-width: 992px) {
    .email-grid-2x2 {
        grid-template-columns: 1fr !important;
        /* Mobile pe wapis 1 column hojae */
    }
}