<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.grid--container {
    display: grid;
    gap: 28px;
    grid-auto-flow: dense;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    margin: 32px 0;
}

.info-card {
    align-content: space-between;
    background-color: var(--bg-container-medium);
    border: 1px solid var(--flicker-light);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    padding: 24px 32px 32px 28px;
    position: relative;
}

.info-card h3 {
    border-top: none;
    color: #EEEEEC;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 16px 0;
    text-align: center;
}


.info-card h1 {
    border-top: none;
    color: var(--secondary);
    font-size: 44px !important;
    font-weight: 500;
    margin: -16px 0 -8px 0;
    text-align: center;
}

.info-card a {
    color: #EC6142;
}

.info-card li, .info-card p {
    color: var(--text-color);
    font-size: 15px !important;
}

.info-card li {
    margin-left: 4px;
}

.info-card::before,
.info-card::after {
    animation: pulse 10s ease-in-out infinite;
    background: #9ED0E6;
    border-radius: 16px;
    bottom: 8px;
    content: "";
    filter: drop-shadow(4px -14px 100px var(--flicker-light));
    height: calc(90%);
    margin: 0;
    position: absolute;
    /* 129490 */
    text-align: center;
    top: 8px;
    -webkit-transform-box: fill-box;
    transform-box: fill-box;
    -webkit-transform-origin: center;
    transform-origin: center;
    width: calc(85%);
    z-index: -10;
}

@keyframes pulse {
    0% {
        transform: scale(0.3);
        box-shadow: 0 0 0 0 rgba(158, 208, 230, 0.2);
    }
    10% {
        transform: scale(0.7);
        box-shadow: 0 0 0 0 rgba(158, 208, 230, 0.3);
    }
    20% {
        transform: scale(0.6);
        box-shadow: 0 0 0 0 rgba(158, 208, 230, 0.5);
    }
    40% {
        transform: scale(0.8);
        box-shadow: 0 0 0 10px rgba(158, 208, 230, 0.6);
    }
    60% {
        transform: scale(0.9);
        box-shadow: 0 0 0 10px rgba(158, 208, 230, 0.4);
    }
    85% {
        transform: scale(0.7);
        box-shadow: 0 0 0 0 rgba(158, 208, 230, 0.5);
    }
    100% {
        transform: scale(0.5);
        box-shadow: 0 0 0 0 rgba(158, 208, 230, 0.3);
    }
}</pre></body></html>