﻿@font-face {
    font-family: 'SpectralSC';
    src: url('../fonts/Spectral_SC/SpectralSC-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Spectral';
    src: url('../fonts/Spectral/Spectral-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.logo-wrap {
    height: 200px; /* adjust to taste */
}

    .logo-wrap img {
        max-height: 100%;
        max-width: 250px;
    }

.list-col {
    width: 240px; /* keeps columns equal width regardless of list content */
}

.lwg-container {
    background-color: #050822;
    color: white;
    border: 2px solid rgba(255, 255, 255, 1);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 40px rgb(34, 174, 235, 0.76);
}

.brand-logo-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
}

    .brand-logo-wrap::before {
        content: "";
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(34, 174, 235, 0.35) 0%, rgba(34, 174, 235, 0) 70%);
        border-radius: 50%;
        z-index: -1;
        filter: blur(10px);
    }

    .brand-logo-wrap img {
        position: relative;
        z-index: 1;
        width: 1200px;
    }

.oc-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 20px;
    gap: 12px;
    border-radius: 10px;
    transition: background 0.2s ease;
}

    .oc-widget:hover {
        background: rgba(54, 236, 240, 0.05);
    }

.oc-widget-count {
    color: white;
    font-size: 1.1rem;
    margin: 0;
}

    .oc-widget-count span {
        color: #36ecf0;
        font-weight: bold;
    }

.oc-widget-badge {
    max-width: 100%;
    height: auto;
}