.board-hub {
    width: 100%;
    margin: 38px auto;
    font-family: Georgia, serif;

    background:
        radial-gradient(circle at top, rgba(133,190,230,.10), transparent 48%),
        linear-gradient(180deg, rgba(14,25,36,.98), rgba(7,13,20,.98));

    border: 1px solid rgba(137,184,220,.35);
    border-radius: 28px;

    overflow: hidden;

    box-shadow:
        0 0 28px rgba(105,160,205,.14),
        inset 0 0 24px rgba(255,255,255,.025);
}

.hub-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;

    padding: 15px 20px;

    border-bottom: 1px solid rgba(137,184,220,.25);

    background: rgba(5,10,16,.22);
}

.hub-nav a {
    color: #a9d2ef;
    text-decoration: none;

    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;

    padding: 8px 16px;
    border-radius: 999px;

    transition: .25s ease;
}

.hub-nav a:before {
    content: "✧";
    margin-right: 8px;
    opacity: .65;
}

.hub-nav a:hover {
    color: #f3fbff;
    background: rgba(151,204,240,.08);
    text-shadow: 0 0 10px rgba(174,221,255,.7);
}

.news-row {
    display: grid;
    grid-template-columns: 310px 1fr 1fr;
}

.news-card {
    position: relative;
    overflow: hidden;

    padding: 26px 24px;
    min-height: 285px;

    background:
        radial-gradient(circle at top, rgba(133,190,230,.08), transparent 58%);

    border-right: 1px solid rgba(137,184,220,.22);
}

.news-card:last-child {
    border-right: none;
}

.news-card:before {
    content: "";
    position: absolute;
    inset: 12px;

    border: 1px solid rgba(219,239,255,.07);
    border-radius: 18px;

    pointer-events: none;
}

.news-card h2 {
    margin: 0 0 16px;

    color: #a9d2ef;
    text-align: center;

    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;

    border-bottom: 1px solid rgba(137,184,220,.22);
    padding-bottom: 12px;
}

.news-card h2:after {
    content: " ✦";
    opacity: .55;
}

.news-card p {
    margin: 0;

    color: #c9d9e6;
    font-size: 12px;
    line-height: 190%;
    text-align: center;
}

.season-card {
    text-align: center;
}

.season-icon {
    width: 72px;
    height: 72px;
    object-fit: contain;

    display: block;
    margin: 0 auto 14px;

    padding: 8px;
    border-radius: 50%;

    background: rgba(174,221,255,.08);
    border: 1px solid rgba(174,221,255,.25);

    filter: drop-shadow(0 0 10px rgba(174,221,255,.42));
}

.season-name {
    margin: 0 0 15px;

    color: #f3fbff;
    font-size: 21px;
    letter-spacing: 4px;
    text-transform: uppercase;

    text-shadow:
        0 0 10px rgba(174,221,255,.45),
        0 0 22px rgba(174,221,255,.18);
}

.news-card h3 {
    margin: 18px 0 10px;

    color: #a9d2ef;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
}

.tiny-divider {
    margin: 17px 0;

    color: #9fc8ea;
    text-align: center;
    font-size: 14px;

    opacity: .8;
}

/* seamless OTM strip row */

.otm-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(137,184,220,.25);
}

.otm-strip {
    position: relative;
    height: 88px;
    overflow: hidden;

    border-right: 1px solid rgba(137,184,220,.22);

    background: rgba(10,17,25,.96);
}

.otm-strip:last-child {
    border-right: none;
}

.otm-strip:before {
    content: "";
    position: absolute;
    inset: 8px;
    z-index: 2;

    border: 1px solid rgba(219,239,255,.10);
    border-radius: 14px;

    pointer-events: none;
}

.otm-image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    filter:
        saturate(.9)
        brightness(.72)
        contrast(1.05);

    transition: .4s ease;
}

.otm-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            90deg,
            rgba(5,10,15,.9),
            rgba(5,10,15,.55),
            rgba(5,10,15,.9)
        );
}

.otm-overlay:before {
    content: "✦";
    color: #b7dcf5;
    font-size: 12px;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(174,221,255,.5);
}

.otm-overlay span {
    display: block;

    color: #9fc8ea;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 8px;

    margin-bottom: 4px;
}

.otm-overlay strong {
    display: block;

    color: #f3fbff;
    font-weight: normal;
    font-size: 13px;
    letter-spacing: 1px;

    text-shadow:
        0 0 8px rgba(174,221,255,.35),
        0 0 16px rgba(174,221,255,.12);
}

.otm-strip:hover .otm-image {
    transform: scale(1.06);
    filter:
        saturate(1.05)
        brightness(.9)
        contrast(1.08);
}

/* Mobile */
@media (max-width: 900px) {
    .news-row,
    .otm-row {
        grid-template-columns: 1fr;
    }

    .news-card {
        border-right: none;
        border-bottom: 1px solid rgba(137,184,220,.22);
    }

    .otm-strip {
        border-right: none;
        border-bottom: 1px solid rgba(137,184,220,.22);
    }

    .otm-strip:last-child {
        border-bottom: none;
    }
}

/* SCROLLING IC/OOC NEWS */

.news-scroll {
    height: 285px;

    overflow-y: auto;
    overflow-x: hidden;

    padding-right: 10px;

    scrollbar-width: thin;
    scrollbar-color: rgba(169,210,239,.45) transparent;
}

.news-scroll::-webkit-scrollbar {
    width: 5px;
}

.news-scroll::-webkit-scrollbar-track {
    background: rgba(255,255,255,.03);
    border-radius: 999px;
}

.news-scroll::-webkit-scrollbar-thumb {
    background: rgba(169,210,239,.45);
    border-radius: 999px;
}

.news-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(169,210,239,.75);
}