.layout-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    grid-auto-flow: row;
    margin-block-start: 8px;
    gap: 30px;
}


.layout-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    justify-self: start;
    font-size: 18px;
    text-align: left;
}

.layout-right {
    display: flex;
    color: white;
    justify-self: end;
    font-size: 18px;
    align-items: center;
    gap: 8px;
    text-align: right;
}


.layout-left img .layout-right img {
    display: block;
    height: auto;
}


.layout-center-group {
    color: #9B98DF;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.event-card-score {
    color: white;
    font-size: 24px;
}

up-modal-box {
    background: radial-gradient(ellipse at top center, rgba(120, 140, 255, 0.35), transparent 60%),
    linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.2)),
    linear-gradient(to right, #2c2a5a, #2f3b7a, #1f204a);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    font-weight: 700;
}

up-modal-viewport {
    display: flex;
    align-items: center;
    justify-content: center;
}

up-modal[size=grow] up-modal-box {
    width: fit-content;
    max-width: min(1200px, 80vw);
}

.kv-dl {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 6px 16px;
    align-items: center;
}

.kv-dl dt {
    grid-column: 2;
    text-align: center;
    white-space: nowrap;
    opacity: .8;
}

.kv-dl dd {
    margin: 0;
}

.kv-dl dd.left {
    grid-column: 1;
    text-align: left;
}

.kv-dl dd.right {
    grid-column: 3;
    text-align: right;
}

