.shop {
    padding: 20px 0 70px;
}

.shop-card {
    height: 100%;
}

.shop-header {
    text-align: center;
    margin-bottom: 50px;
}

.shop-header h1 {
    color: #0A4B6B;
    font-size: var(--fs-h1);
    margin-bottom: 18px;
}

.shop-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    line-height: 2;
    font-size: var(--fs-body);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.shop-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 30px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: .3s;
}

.shop-card:hover {
    transform: translateY(-6px);
}

.shop-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 20px;
}

.shop-card h2 {
    color: #0A4B6B;
    margin-bottom: 15px;
    font-size: 24px;
}

.shop-card p {
    color: #666;
    line-height: 2;
    margin-bottom: 28px;
    flex-grow: 1;
}

.shop-btn {
    width: 100%;
    max-width: 230px;
    display: inline-block;
    padding: 13px 25px;
    background: #38BDF8;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: .3s;
}

.shop-btn:hover {
    background: #0EA5E9;
    transform: translateY(-2px);
}

.shop-notice {
    max-width: 850px;
    margin: 55px auto 0;
    padding: 28px;
    text-align: center;
    background: #F8FBFD;
    border: 1px solid #D7ECF7;
    border-radius: 16px;
}

.shop-notice p {
    margin: 0;
    color: #555;
    line-height: 2;
    font-size: var(--fs-body);
}

.shop-notice p + p {
    margin-top: 14px;
}

@media (max-width: 768px) {

    .shop {
        padding-bottom: 45px;
    }

    .shop-header {
        margin-bottom: 35px;
    }

    .shop-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .shop-card {
        padding: 25px;
    }

    .shop-logo {
        width: 75px;
        height: 75px;
    }

    .shop-card h2 {
        font-size: 22px;
    }

}