/*
Theme Name: ScoutBD
Theme URI: https://scoutbd.mgcroverscout.top/
Author: ScoutBD
Description: Custom ScoutBD Social Network Theme
Version: 2.0.0
Text Domain: scoutbd
*/

/* =========================================
   ROOT
========================================= */

:root {
    --sb-navy: #061b38;
    --sb-navy-2: #09284d;
    --sb-blue: #0b315d;
    --sb-green: #19d37a;
    --sb-green-dark: #0b9d59;
    --sb-cyan: #19b8e6;
    --sb-white: #ffffff;
    --sb-bg: #eef2f6;
    --sb-card: #ffffff;
    --sb-text: #182333;
    --sb-muted: #728096;
    --sb-border: #e3e8ef;
    --sb-danger: #ef3f5f;
    --sb-radius: 12px;
    --sb-shadow: 0 3px 16px rgba(5, 28, 55, .08);
}

/* =========================================
   RESET
========================================= */

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: var(--sb-bg);
    color: var(--sb-text);
    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

/* =========================================
   GLOBAL CONTAINER
========================================= */

.container {
    width: min(1380px, calc(100% - 30px));
    margin: 0 auto;
}

/* =========================================
   HEADER
========================================= */

.scoutbd-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    height: 64px;
    background: var(--sb-navy);
    color: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,.18);
}

.scoutbd-header-inner {
    height: 64px;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* =========================================
   LOGO
========================================= */

.scoutbd-logo {
    width: 215px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 23px;
    font-weight: 800;
    color: #fff;
}

.scoutbd-logo span {
    color: var(--sb-green);
}

.scoutbd-logo-mark {
    width: 39px;
    height: 39px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sb-green);
    color: var(--sb-navy);
    font-weight: 900;
    border: 2px solid rgba(255,255,255,.4);
}

/* WordPress Custom Logo */

.scoutbd-logo .custom-logo {
    max-height: 43px;
    width: auto;
}

/* =========================================
   SEARCH
========================================= */

.scoutbd-search {
    width: min(420px, 38vw);
    position: relative;
}

.scoutbd-search input {
    width: 100%;
    height: 40px;
    padding: 0 17px 0 42px;
    border: 0;
    border-radius: 9px;
    outline: none;
    background: #173b67;
    color: #fff;
}

.scoutbd-search input::placeholder {
    color: #a9bad0;
}

.scoutbd-search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #b8c8dc;
}

/* =========================================
   HEADER ACTIONS
========================================= */

.scoutbd-header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.scoutbd-header-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #12365f;
    cursor: pointer;
    transition: .2s ease;
}

.scoutbd-header-action:hover {
    background: var(--sb-green);
    color: var(--sb-navy);
}

/* =========================================
   PAGE
========================================= */

.scoutbd-page {
    padding-top: 84px;
    padding-bottom: 40px;
}

/* =========================================
   MAIN SOCIAL LAYOUT
========================================= */

.scoutbd-layout {
    display: grid;
    grid-template-columns: 235px minmax(450px, 1fr) 320px;
    gap: 18px;
    align-items: start;
}

/* =========================================
   LEFT SIDEBAR
========================================= */

.scoutbd-sidebar {
    position: sticky;
    top: 82px;
}

.scoutbd-sidebar-menu {
    padding: 7px;
    background: transparent;
}

.scoutbd-sidebar-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 9px 12px;
    border-radius: 8px;
    color: #34445a;
    font-weight: 600;
    transition: .18s ease;
}

.scoutbd-sidebar-menu a:hover {
    background: #dfeaf5;
    color: var(--sb-navy);
}

.scoutbd-sidebar-menu a.active {
    background: #087fbe;
    color: #fff;
    box-shadow: 0 3px 10px rgba(8,127,190,.25);
}

/* =========================================
   CARD
========================================= */

.scoutbd-card {
    background: var(--sb-card);
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius);
    box-shadow: var(--sb-shadow);
}

/* =========================================
   HERO / COVER
========================================= */

.scoutbd-hero {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    margin-bottom: 18px;
    padding: 45px;
    border-radius: 12px;
    color: #fff;
    background:
        linear-gradient(
            90deg,
            rgba(2,20,39,.92),
            rgba(4,31,57,.55)
        ),
        linear-gradient(
            135deg,
            #0a315d,
            #062039
        );
}

.scoutbd-hero::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: 8%;
    bottom: -70px;
    border-radius: 50%;
    background: rgba(25,211,122,.12);
}

.scoutbd-hero h1 {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 0 12px;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.1;
}

.scoutbd-hero p {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0;
    color: #d9e5f2;
    font-size: 16px;
}

/* =========================================
   COMPOSER
========================================= */

.scoutbd-composer {
    margin-bottom: 16px;
    padding: 15px;
}

.scoutbd-composer-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.scoutbd-avatar {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dceaf5;
    color: #087fbe;
    font-weight: 800;
}

.scoutbd-composer-input {
    flex: 1;
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 22px;
    background: #f1f4f7;
    color: #7a8797;
}

/* =========================================
   ACTION BUTTONS
========================================= */

.scoutbd-composer-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 13px;
    padding-top: 12px;
    border-top: 1px solid var(--sb-border);
}

.scoutbd-btn {
    min-height: 38px;
    padding: 8px 15px;
    border: 0;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    transition: .18s ease;
}

.scoutbd-btn-primary {
    background: #087fbe;
    color: #fff;
}

.scoutbd-btn-primary:hover {
    background: #066a9e;
}

.scoutbd-btn-light {
    background: #eaf3f8;
    color: #126a96;
}

.scoutbd-btn-light:hover {
    background: #dcebf3;
}

/* =========================================
   POST
========================================= */

.scoutbd-post {
    overflow: hidden;
    margin-bottom: 17px;
}

.scoutbd-post-header {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 15px;
}

.scoutbd-post-user {
    flex: 1;
}

.scoutbd-post-user strong {
    display: block;
    color: #172337;
    font-size: 14px;
}

.scoutbd-post-meta {
    color: #7b8796;
    font-size: 12px;
}

.scoutbd-post-content {
    padding: 0 15px 15px;
}

.scoutbd-post-content p {
    margin: 0;
}

.scoutbd-post-image {
    width: 100%;
    max-height: 620px;
    margin: 0 -15px 14px;
    width: calc(100% + 30px);
    display: block;
    object-fit: cover;
}

.scoutbd-post-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--sb-border);
}

.scoutbd-post-action {
    border: 0;
    background: transparent;
    padding: 11px 8px;
    color: #647184;
    font-weight: 600;
    cursor: pointer;
}

.scoutbd-post-action:hover {
    background: #f0f5f8;
    color: #087fbe;
}

/* =========================================
   RIGHT SIDEBAR
========================================= */

.scoutbd-rightbar {
    position: sticky;
    top: 82px;
}

.scoutbd-widget {
    padding: 16px;
    margin-bottom: 17px;
}

.scoutbd-widget-title {
    margin: 0 0 12px;
    color: #1a2a40;
    font-size: 15px;
    font-weight: 800;
}

/* =========================================
   PROFILE STYLE
========================================= */

.scoutbd-cover {
    height: 300px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background:
        linear-gradient(
            90deg,
            rgba(3,26,49,.45),
            rgba(3,26,49,.1)
        ),
        linear-gradient(
            135deg,
            #124879,
            #061d3b
        );
}

.scoutbd-profile {
    overflow: hidden;
    margin-bottom: 18px;
}

.scoutbd-profile-info {
    padding: 0 22px 20px;
}

.scoutbd-profile-avatar {
    width: 112px;
    height: 112px;
    margin-top: -56px;
    position: relative;
    border: 5px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dbeaf4;
    color: #087fbe;
    font-size: 30px;
    font-weight: 800;
}

.scoutbd-profile-name {
    margin: 10px 0 2px;
    font-size: 25px;
    font-weight: 800;
}

.scoutbd-profile-meta {
    color: var(--sb-muted);
}

/* =========================================
   BADGE
========================================= */

.scoutbd-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 20px;
    background: #e4f8ee;
    color: #0b9d59;
    font-size: 11px;
    font-weight: 800;
}

/* =========================================
   FORM
========================================= */

.scoutbd-form-group {
    margin-bottom: 15px;
}

.scoutbd-form-group label {
    display: block;
    margin-bottom: 6px;
    color: #29394d;
    font-weight: 700;
}

.scoutbd-input,
.scoutbd-textarea,
.scoutbd-select {
    width: 100%;
    border: 1px solid #dce3ea;
    border-radius: 8px;
    padding: 10px 12px;
    background: #fff;
    color: #1d2a3b;
    outline: none;
}

.scoutbd-input:focus,
.scoutbd-textarea:focus,
.scoutbd-select:focus {
    border-color: #087fbe;
    box-shadow: 0 0 0 3px rgba(8,127,190,.10);
}

.scoutbd-textarea {
    min-height: 120px;
    resize: vertical;
}

/* =========================================
   FOOTER
========================================= */

.scoutbd-footer {
    margin-top: 35px;
    padding: 35px 0;
    background: var(--sb-navy);
    color: #b9c8da;
}

.scoutbd-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.scoutbd-footer strong {
    color: #fff;
    font-size: 18px;
}

/* =========================================
   MOBILE HEADER
========================================= */

.scoutbd-mobile-menu {
    display: none;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1150px) {

    .scoutbd-layout {
        grid-template-columns: 210px minmax(420px, 1fr);
    }

    .scoutbd-rightbar {
        display: none;
    }

    .scoutbd-logo {
        width: 190px;
    }
}

@media (max-width: 760px) {

    body {
        font-size: 13px;
    }

    .container {
        width: calc(100% - 16px);
    }

    .scoutbd-header {
        height: 58px;
    }

    .scoutbd-header-inner {
        height: 58px;
        gap: 8px;
    }

    .scoutbd-logo {
        width: auto;
        font-size: 19px;
    }

    .scoutbd-logo-mark {
        width: 34px;
        height: 34px;
    }

    .scoutbd-search {
        display: none;
    }

    .scoutbd-header-actions {
        gap: 5px;
    }

    .scoutbd-header-action {
        width: 35px;
        height: 35px;
    }

    .scoutbd-page {
        padding-top: 70px;
        padding-bottom: 75px;
    }

    .scoutbd-layout {
        display: block;
    }

    .scoutbd-sidebar {
        display: none;
    }

    .scoutbd-rightbar {
        display: block;
        position: static;
        margin-top: 16px;
    }

    .scoutbd-hero {
        min-height: 230px;
        padding: 30px 20px;
    }

    .scoutbd-hero h1 {
        font-size: 32px;
    }

    .scoutbd-cover {
        height: 190px;
    }

    .scoutbd-profile-avatar {
        width: 90px;
        height: 90px;
        margin-top: -45px;
    }

    .scoutbd-profile-name {
        font-size: 21px;
    }

    .scoutbd-footer {
        padding-bottom: 85px;
    }

    .scoutbd-footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================
   ACCESSIBILITY
========================================= */

:focus-visible {
    outline: 3px solid rgba(25,211,122,.35);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}
/* =========================================
   MOBILE BOTTOM NAVIGATION
========================================= */

.scoutbd-mobile-nav {
    display: none;
}

@media (max-width: 760px) {

    .scoutbd-mobile-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 99999;

        height: 62px;

        display: grid;
        grid-template-columns: repeat(5, 1fr);

        background: #ffffff;
        border-top: 1px solid #dfe5eb;

        box-shadow: 0 -4px 18px rgba(0, 0, 0, .10);
    }

    .scoutbd-mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 2px;

        color: #718096;
        font-size: 20px;

        transition: .2s ease;
    }

    .scoutbd-mobile-nav-item small {
        font-size: 10px;
        font-weight: 700;
    }

    .scoutbd-mobile-nav-item:hover,
    .scoutbd-mobile-nav-item.active {
        color: #087fbe;
    }

    .scoutbd-footer {
        display: none;
    }
}
/* =========================================
   SIDEBAR DARK SOCIAL STYLE
========================================= */

@media (min-width: 761px) {

    .scoutbd-sidebar {
        background: var(--sb-navy);
        border-radius: 12px;
        padding: 10px;
        box-shadow: 0 4px 16px rgba(4, 25, 48, .12);
    }

    .scoutbd-sidebar-menu {
        padding: 0;
    }

    .scoutbd-sidebar-menu a {
        color: #d8e4f1;
        margin-bottom: 3px;
    }

    .scoutbd-sidebar-menu a:hover {
        background: #123b67;
        color: #ffffff;
    }

    .scoutbd-sidebar-menu a.active {
        background: linear-gradient(
            90deg,
            #0b9ed1,
            #087fbe
        );
        color: #ffffff;
    }

    .scoutbd-sidebar-online {
        margin-top: 15px;
        padding-top: 14px;
        border-top: 1px solid rgba(255,255,255,.10);
    }

    .scoutbd-sidebar-online-title {
        padding: 0 10px 10px;
        color: #9eb1c7;
        font-size: 12px;
        font-weight: 800;
    }

    .scoutbd-online-user {
        display: flex;
        align-items: center;
        gap: 9px;
        padding: 8px 10px;
        color: #d8e4f1;
        font-size: 12px;
        font-weight: 600;
        border-radius: 8px;
    }

    .scoutbd-online-user:hover {
        background: #123b67;
    }

    .scoutbd-online-avatar {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #1a426d;
    }
}

/* =========================================
   SCOUTBD AUTH / LOGIN / REGISTER
========================================= */

body.login,
body.buddypress {
    background: #061426;
}

/* WordPress Login */

body.login #login {
    width: 380px;
    max-width: calc(100% - 30px);
    padding-top: 8%;
}

body.login #login h1 a {
    background-image: none !important;
    width: auto;
    height: auto;
    text-indent: 0;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
}

body.login #login h1 a::after {
    content: "ScoutBD";
}

body.login form {
    background: #0b1d33;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,.35);
    padding: 28px;
}

body.login label {
    color: #d9e7f5;
    font-size: 14px;
}

body.login input[type="text"],
body.login input[type="password"],
body.login input[type="email"] {
    background: #07182b;
    color: #ffffff;
    border: 1px solid #29415b;
    border-radius: 10px;
    padding: 10px 12px;
    margin-top: 6px;
}

body.login input:focus {
    border-color: #18d69a;
    box-shadow: 0 0 0 1px #18d69a;
}

body.login .button-primary {
    background: #18d69a;
    border-color: #18d69a;
    color: #04131f;
    border-radius: 10px;
    font-weight: 700;
    padding: 5px 18px;
}

body.login .button-primary:hover {
    background: #20e7a8;
    border-color: #20e7a8;
}

body.login #nav,
body.login #backtoblog {
    text-align: center;
}

body.login #nav a,
body.login #backtoblog a {
    color: #65d9ff !important;
}

body.login .message,
body.login #login_error {
    background: #0b1d33;
    border-left-color: #18d69a;
    color: #d9e7f5;
}


/* =========================================
   BUDDYPRESS FORMS
========================================= */

.buddypress .site-content,
.buddypress #buddypress {
    color: #e8f1fa;
}

.buddypress input[type="text"],
.buddypress input[type="email"],
.buddypress input[type="password"],
.buddypress input[type="url"],
.buddypress textarea,
.buddypress select {
    width: 100%;
    background: #07182b;
    color: #ffffff;
    border: 1px solid #29415b;
    border-radius: 10px;
    padding: 12px 14px;
}

.buddypress input:focus,
.buddypress textarea:focus,
.buddypress select:focus {
    border-color: #18d69a;
    outline: none;
    box-shadow: 0 0 0 2px rgba(24,214,154,.12);
}

.buddypress button,
.buddypress input[type="submit"],
.buddypress input[type="button"] {
    background: #18d69a;
    color: #04131f;
    border: none;
    border-radius: 10px;
    padding: 11px 18px;
    font-weight: 700;
    cursor: pointer;
}

.buddypress button:hover,
.buddypress input[type="submit"]:hover,
.buddypress input[type="button"]:hover {
    background: #20e7a8;
}


/* =========================================
   BUDDYPRESS CARDS
========================================= */

#buddypress .item-list,
#buddypress .activity-list,
#buddypress .members-list,
#buddypress .groups-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

#buddypress .item-list > li,
#buddypress .activity-item,
#buddypress .member,
#buddypress .group {
    background: #0b1d33;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 14px;
}


/* =========================================
   MOBILE AUTH
========================================= */

@media (max-width: 600px) {

    body.login #login {
        width: auto;
        padding-top: 12%;
    }

    body.login form {
        padding: 22px;
    }

}
/* =========================================
   SCOUTBD PROFILE DESIGN
========================================= */

.scoutbd-profile-card {
    overflow: hidden;
    padding: 0;
}

.scoutbd-profile-cover {
    min-height: 180px;
    background:
        linear-gradient(
            135deg,
            #0b2947,
            #063c46,
            #0b1d33
        );
    position: relative;
}

.scoutbd-profile-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(24,214,154,.20),
            transparent 35%
        );
}

.scoutbd-profile-avatar {
    position: absolute;
    left: 30px;
    bottom: -55px;
    z-index: 2;
}

.scoutbd-profile-avatar img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #0b1d33;
    background: #07182b;
    box-shadow: 0 8px 25px rgba(0,0,0,.35);
}

.scoutbd-profile-info {
    padding: 75px 30px 25px;
}

.scoutbd-profile-info h1 {
    margin: 0 0 7px;
    font-size: 28px;
    color: #ffffff;
}

.scoutbd-profile-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}


/* =========================================
   SCOUT INFORMATION
========================================= */

.scoutbd-scout-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.scoutbd-info-item {
    background: #07182b;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    padding: 15px;
}

.scoutbd-info-item span {
    display: block;
    color: #7f9ab5;
    font-size: 12px;
    margin-bottom: 5px;
}

.scoutbd-info-item strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
}


/* =========================================
   PROFILE ACTIVITY
========================================= */

.scoutbd-profile-card,
.scoutbd-scout-info-grid,
.scoutbd-info-item,
.scoutbd-profile-actions {
    box-sizing: border-box;
}

.scoutbd-profile-card:hover {
    border-color: rgba(24,214,154,.25);
}


/* =========================================
   MOBILE PROFILE
========================================= */

@media (max-width: 768px) {

    .scoutbd-profile-cover {
        min-height: 150px;
    }

    .scoutbd-profile-avatar {
        left: 20px;
        bottom: -48px;
    }

    .scoutbd-profile-avatar img {
        width: 100px;
        height: 100px;
    }

    .scoutbd-profile-info {
        padding: 65px 20px 22px;
    }

    .scoutbd-profile-info h1 {
        font-size: 23px;
    }

    .scoutbd-scout-info-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {

    .scoutbd-profile-cover {
        min-height: 130px;
    }

    .scoutbd-profile-info {
        padding-left: 16px;
        padding-right: 16px;
    }

    .scoutbd-profile-avatar {
        left: 16px;
    }

}
/* =========================================
   SCOUTBD MEMBERS GRID
========================================= */

.scoutbd-members-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.scoutbd-member-card {
    background: #07182b;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 15px;
    overflow: hidden;
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.scoutbd-member-card:hover {
    transform: translateY(-4px);
    border-color: rgba(24,214,154,.35);
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}


/* MEMBER AVATAR */

.scoutbd-member-avatar {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            #0b2947,
            #063c46
        );
}

.scoutbd-member-avatar img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #0b1d33;
    box-shadow: 0 8px 20px rgba(0,0,0,.35);
}


/* MEMBER INFORMATION */

.scoutbd-member-info {
    padding: 18px;
    text-align: center;
}

.scoutbd-member-info h3 {
    margin: 0 0 5px;
    font-size: 17px;
}

.scoutbd-member-info h3 a {
    color: #ffffff;
    text-decoration: none;
}

.scoutbd-member-info h3 a:hover {
    color: #18d69a;
}


/* SCOUT TYPE */

.scoutbd-member-tag {
    display: inline-block;
    margin-top: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(24,214,154,.12);
    color: #18d69a;
    border: 1px solid rgba(24,214,154,.20);
    font-size: 12px;
    font-weight: 700;
}


/* UNIT */

.scoutbd-member-unit {
    margin-top: 9px;
    color: #8da6bd;
    font-size: 13px;
}


/* =========================================
   EMPTY STATE
========================================= */

.scoutbd-empty-state {
    padding: 35px 20px;
    text-align: center;
    background: #07182b;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.07);
}

.scoutbd-empty-state h3 {
    color: #ffffff;
    margin-bottom: 8px;
}

.scoutbd-empty-state p {
    color: #8da6bd;
}


/* =========================================
   MEMBER PAGINATION
========================================= */

#buddypress .pagination {
    margin-top: 20px;
}

#buddypress .pagination-links {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

#buddypress .pagination-links a,
#buddypress .pagination-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 8px;
    background: #07182b;
    border: 1px solid rgba(255,255,255,.08);
    color: #cfe0ef;
    text-decoration: none;
}

#buddypress .pagination-links .current {
    background: #18d69a;
    border-color: #18d69a;
    color: #04131f;
    font-weight: 700;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .scoutbd-members-grid {
        grid-template-columns: 1fr;
    }

    .scoutbd-member-avatar {
        height: 140px;
    }

}

@media (max-width: 480px) {

    .scoutbd-member-info {
        padding: 16px;
    }

    .scoutbd-member-avatar img {
        width: 80px;
        height: 80px;
    }

}