/* Support Blocks (Service/Authentication/FAQ) */
.support-blocks {
    padding: 60px 0;
}

.support-blocks-container {
    max-width: var(--container-max-width, 1200px);
    margin: 0 auto;
    padding: 0 var(--container-padding, 20px);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.support-card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 260px;
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.support-card-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.55) 100%); */
}

.support-card-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.support-tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.9;
}

.support-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .support-blocks {
        padding: 48px 0 64px;
    }

    .support-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .support-blocks {
        padding: 36px 0 48px;
    }

    .support-card {
        min-height: 220px;
    }

    .support-title {
        font-size: 22px;
    }

    .support-card-content {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }
}

