/* Sports Alert Network brand system. */
.san-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.san-brand-mark {
    position: relative;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(125, 211, 252, .5);
    border-radius: 12px;
    background: linear-gradient(145deg, #2563eb, #0f766e);
    box-shadow: 0 8px 22px rgba(37, 99, 235, .32);
    color: #fff;
    font-size: .84rem;
    font-weight: 950;
    letter-spacing: -.12em;
    line-height: 1;
}

.san-brand-mark::before {
    position: absolute;
    right: 4px;
    bottom: 8px;
    width: 16px;
    height: 3px;
    border-radius: 999px;
    background: #fbbf24;
    content: "";
    transform: rotate(-35deg);
}

.san-brand-mark::after {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fbbf24;
    content: "";
}

.san-brand-wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: .28em;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: -.045em;
    line-height: 1;
    text-transform: uppercase;
}

.san-brand-wordmark .san-sports { color: #f8fafc; }
.san-brand-wordmark .san-alert { color: #38bdf8; }
.san-brand-wordmark .san-network {
    color: #cbd5e1;
    font-size: .78em;
    letter-spacing: .06em;
}

@media (max-width: 480px) {
    .san-brand { gap: 8px; }
    .san-brand-mark { width: 34px; height: 34px; border-radius: 10px; font-size: .76rem; }
    .san-brand-wordmark { gap: .2em; font-size: .79rem; }
}
