body {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    background: url('/storage/resources/background-69fbf4d237e9b.webp');
    background-size: cover;
    background-attachment: fixed;

}

.header {
    margin-bottom: 0;
    background: none;
    box-shadow: none;
    
    & > div {
        background: var(--c-elevation-1);
        padding-left: var(--spacing-6);
        padding-right: var(--spacing-6);
    }
}

main {
    padding: var(--spacing-6);
    margin-bottom: 0;
    background-color: var(--c-elevation-0);
}

.card-title {
    background-color: var(--c-secondary);
    color: var(--c-secondary-text);
    border: none;
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-2) var(--spacing-4);
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}

.forum-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
}

.forum-page-main {
    min-width: 0;
}

.forum-page-sidebar {
    padding-top: 53px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Main widget box */
.side-widget {
    background: #303136;
    border-radius: 4px;
    overflow: hidden;
    color: #fff;
}

/* Top grey title bar */
.side-widget-header {
    background: #505154;
    color: #fff;
    padding: 7px 16px;
    font-size: 16px;
    font-weight: 400;
}

/* Widget content rows */
.side-widget-row {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.side-widget-row:last-child {
    border-bottom: none;
}

.side-widget-row h3 {
    margin: 0 0 4px 0;
    color: #d8dbe3;
    font-size: 19px;
    font-weight: 500;
}

.side-widget-row p {
    margin: 0;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.35;
}

.side-widget-row a {
    color: #ffffff;
    text-decoration: none;
}

.side-widget-row a:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 1000px) {
    .forum-page-layout {
        grid-template-columns: 1fr;
    }
}

.social-links-widget {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-image-link {
    position: relative;
    display: block;
    height: 100px;
    border-radius: 4px;
    text-decoration: none !important;
    background: none;
}

.social-image-link img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: 0.75;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-image-link span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding-left: 18px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75);
}

.social-image-link:hover img {
    opacity: 1;
    transform: scale(1.04);
}