.mini-profile--custom dl dd {
    overflow-y: auto;
}


.admingroup {
    color: #4c6ec4;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}


.fsFooter {
    position: relative;
    isolation: isolate;
    background: transparent;
    color: inherit;
    padding: 60px 0 32px;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
    overflow: hidden;
}

.fsFooter::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0.035) 0%,
        rgba(15, 23, 42, 0.025) 55%,
        transparent 100%
    );
    pointer-events: none;
}




/* Dark mode depth */
.dark .fsFooter::before,
body.dark .fsFooter::before {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.18) 0%,
        rgba(0, 0, 0, 0.10) 55%,
        transparent 100%
    );
}

.dark .fsFooter::after,
body.dark .fsFooter::after {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(45, 212, 191, 0.35),
        transparent
    );
}

.fsFooter-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.fsFooter-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.fsFooter-brand h3,
.fsFooter-col h4 {
    color: inherit;
    text-transform: uppercase;
}

.fsFooter-brand h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Brand logo */

.fsFooter-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.3px;
}

.fsFooter-logoIcon {
    position: relative;
    width: 30px;
    height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    color: #f5a400;
    line-height: 1;
    box-shadow:
        0 8px 22px rgba(245, 164, 0, 0.16),
        0 0 0 1px rgba(255, 255, 255, 0.16);
}

.fsFooter-logoIcon::after {
    content: "";
    position: absolute;
    left: 4px;
    bottom: -5px;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.98);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.fsFooter-logoSvg {
    position: relative;
    z-index: 1;
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
}

.fsFooter-brand p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.75;
}

.fsFooter-col h4 {
    font-size: 14px;
    margin-bottom: 12px;
}

.fsFooter-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fsFooter-col li {
    margin-bottom: 8px;
}

.fsFooter-col a,
.fsFooter-social a,
.fsFooter-bottom a {
    color: inherit;
    text-decoration: none;
    opacity: 0.78;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.fsFooter-col a,
.fsFooter-social a {
    font-size: 13px;
}

.fsFooter-col a:hover,
.fsFooter-social a:hover,
.fsFooter-bottom a:hover {
    opacity: 1;
}

.fsFooter-social {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fsFooter-title {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.fsFooter-brandHeader {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 35px;
}

.fsFooter-brandHeader h3 {
    margin: 0;
}

.fsFooter-slogan {
    position: absolute;
    bottom: -14px;
    left: 40px;
    font-size: 10px;
    opacity: 0.45;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    white-space: nowrap;
}

.fsFooter-bottom {
    margin-top: 32px;
    font-size: 15px;
    opacity: 0.82;
}

.fsFooter-bottom a {
    color: inherit;
}

@media (max-width: 768px) {
    .fsFooter-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fsFooter-brand {
        margin-bottom: 10px;
    }

    .fsFooter-col {
        width: 100%;
    }

    .fsFooter-slogan {
        left: 40px;
        white-space: normal;
    }

    .fsFooter-bottom {
        line-height: 1.7;
    }
}


