.card {
    position: relative;
    width: 100%;
    background:
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(245,245,247,.82));
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 34px;
    padding: 32px;
    box-shadow:
        0 38px 90px rgba(0,0,0,.16),
        inset 0 1px 0 rgba(255,255,255,.96);
    backdrop-filter: blur(26px);
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(255,255,255,.95), transparent 36%),
        linear-gradient(135deg, rgba(255,255,255,.7), transparent 54%);
    pointer-events: none;
}

.card > * {
    position: relative;
    z-index: 1;
}

h2 {
    margin: 0 0 8px;
    font-size: 31px;
    color: #111;
    letter-spacing: -.8px;
}

.link {
    margin-top: 18px;
    text-align: left;
    font-size: 14px;
    color: #666;
}

.link a {
    color: #111;
    text-decoration: none;
    font-weight: 800;
}

.link a:hover {
    text-decoration: underline;
}

.sub {
    margin-top: 30px;
    text-align: center;
    color: #666;
    font-size: 12px;
}

.sub-icon {
    width: 16px;
    height: 16px;
    vertical-align: -3px;
    margin-right: 8px;
    color: #111;
    filter: none;
}

.mini {
    margin: 16px;
    color: #777;
    font-size: 14px;
    text-align: center;
}

.mini-icon {
    width: 15px;
    height: 15px;
    vertical-align: -2px;
    margin-right: 6px;
    color: #111;
    filter: none;
}
