﻿/* Two-column grid; centered by PageShell's container, no extra padding */
.ept-grid {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

/* Column card visuals only */
.ept-column {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
}

/* Title block reserves height so icons align */
.ept-title {
    --title-min-h: 3.75rem;
    min-height: var(--title-min-h);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 .5rem;
    margin-bottom: .75rem;
}

    .ept-title h3 {
        font-size: 1.1rem;
        font-weight: 800;
        margin: 0;
    }

/* Steps stack */
.ept-steps {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

/* Tiles */
.ept-step {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border-color .3s, box-shadow .3s;
}

    .ept-step img {
        width: 56px;
        height: 56px;
        object-fit: contain;
    }

    /* Active glow */
    .ept-step.active {
        border-color: #ffeb3b;
        box-shadow: 0 0 12px rgba(255,235,59,.8);
    }

/* CTA fade behavior (keeps layout) */
.ept-cta {
    transition: opacity .25s ease;
}

    .ept-cta.is-hidden {
        opacity: 0;
        pointer-events: none;
    }

/* Responsive */
@media (max-width: 768px) {


    .ept-step img {
        width: 48px;
        height: 48px;
    }

    .ept-title {
        --title-min-h: 3.25rem;
    }

        .ept-title h3 {
            font-size: 1rem;
        }
}
