/* Gateway base */
.gateway__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 14rem 5vw;
}

.gateway__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.gateway__subtitle {
    color: #6b7280;
    margin-bottom: 1.25rem;
    text-align: center;
}

/* Grid */
.gateway__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

/* Card */
.gateway__card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.gateway__card-in {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .04);
    transition: transform .2s ease, box-shadow .2s ease;
}

.gateway__card-in img {
    width: 15vw;
    min-width: 200px;
}

.gateway__card:hover .gateway__card-in {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, .06);
}

.gateway__badge {
    display: inline-block;
    background: #111827;
    color: #fff;
    border-radius: 9999px;
    padding: .2rem .6rem;
    font-size: .75rem;
    margin-bottom: .5rem;
}

.gateway__card-title {
    font-size: 1.25rem;
    margin: 0 0 .25rem;
}

.gateway__card-desc {
    color: #6b7280;
    margin: 0;
    text-align: center;
}

/* Debug */
.gateway__debug {
    margin-top: 1rem;
    padding: .75rem 1rem;
    border: 1px dashed #e5e7eb;
    border-radius: .75rem;
    color: #374151;
    background: #f9fafb;
}

.gateway__debug-title {
    font-weight: 600;
    margin-bottom: .5rem;
}