/*
 * Build 0091 — Main-site theme Phase 6: Public Profiles & Member Discovery.
 * Loaded after the retained legacy page styles so the visual normalization can
 * remain presentation-only while existing route/data/privacy behavior stays intact.
 */

.buzzen-community-page {
    min-height: 55vh;
}

.buzzen-community-page .buzzen-community-shell {
    width: 100%;
}

.buzzen-community-page .buzzen-v5-page-title {
    margin-bottom: 12px !important;
}

.buzzen-community-page .buzzen-v5-breadcrumb {
    margin-bottom: 18px;
}

/* Shared Donate-derived hero language for member-facing discovery pages. */
.buzzen-community-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.62fr) minmax(250px, .72fr);
    gap: 22px;
    align-items: stretch;
    margin: 0 0 20px;
    padding: 26px;
    overflow: hidden;
    background:
        radial-gradient(circle at 94% 8%, rgba(255, 210, 74, .20) 0, rgba(255, 210, 74, 0) 29%),
        linear-gradient(135deg, #ffffff 0%, #edf7fd 100%);
}

.buzzen-community-hero::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, #1b79bd 0%, #ffd24a 100%);
}

.buzzen-community-hero-copy {
    min-width: 0;
    padding: 4px 4px 4px 8px;
}

.buzzen-community-hero h2 {
    max-width: 760px;
    margin: 0 0 10px;
    color: #123d5c;
    font-family: var(--buzzen-font-heading);
    font-size: clamp(29px, 3vw, 38px);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.08;
}

.buzzen-community-hero-copy > p {
    max-width: 780px;
    margin: 0;
    color: #405c70;
    font-size: 15px;
    line-height: 1.7;
}

.buzzen-community-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
}

.buzzen-community-hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid rgba(27, 121, 189, .14);
    border-radius: var(--buzzen-radius-pill);
    background: rgba(255, 255, 255, .86);
    color: #31566d;
    font-size: 13px;
    font-weight: 750;
    box-shadow: 0 5px 13px rgba(17, 71, 111, .04);
}

.buzzen-community-hero-points i {
    color: #1b79bd;
}

.buzzen-community-hero-panel,
.buzzen-community-dark-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(18, 61, 92, .16);
    border-radius: var(--buzzen-radius-md);
    background: linear-gradient(145deg, #103858 0%, #155c91 70%, #1b79bd 100%);
    color: #fff;
    box-shadow: var(--buzzen-shadow-elevated);
}

.buzzen-community-hero-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 21px;
}

.buzzen-community-hero-panel::after,
.buzzen-community-dark-card::after {
    content: "";
    position: absolute;
    right: -36px;
    bottom: -48px;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background: rgba(255, 210, 74, .13);
    pointer-events: none;
}

.buzzen-community-hero-panel-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 13px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--buzzen-radius-md);
    background: rgba(255, 255, 255, .10);
    color: #ffd24a;
    font-size: 22px;
}

.buzzen-community-hero-panel > span {
    position: relative;
    z-index: 1;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .70);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.buzzen-community-hero-panel > strong {
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: var(--buzzen-font-heading);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.15;
}

.buzzen-community-hero-panel > p {
    position: relative;
    z-index: 1;
    margin: 9px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    line-height: 1.55;
}

.buzzen-community-page .form-control,
.buzzen-community-page .form-select,
.buzzen-community-page .input-group-text {
    min-height: 42px;
    border-color: rgba(34, 103, 154, .20);
    border-radius: var(--buzzen-radius-sm);
}

.buzzen-community-page .input-group > .input-group-text,
.buzzen-community-page .input-group > .form-control,
.buzzen-community-page .input-group > .form-select {
    border-radius: 0;
}

.buzzen-community-page .input-group > :first-child {
    border-top-left-radius: var(--buzzen-radius-sm);
    border-bottom-left-radius: var(--buzzen-radius-sm);
}

.buzzen-community-page .input-group > :last-child {
    border-top-right-radius: var(--buzzen-radius-sm);
    border-bottom-right-radius: var(--buzzen-radius-sm);
}

.buzzen-community-page .form-control:focus,
.buzzen-community-page .form-select:focus {
    border-color: rgba(27, 121, 189, .55);
    box-shadow: 0 0 0 .2rem rgba(27, 121, 189, .10);
}

.buzzen-community-page .form-label {
    color: #244b67;
    font-weight: 750;
}

.buzzen-community-page .pagination .page-link {
    color: #155c91;
    border-color: rgba(34, 103, 154, .16);
}

.buzzen-community-page .pagination .active > .page-link {
    border-color: #1b79bd;
    background: #1b79bd;
    color: #fff;
}

/* Member directory ------------------------------------------------------- */
.buzzen-members-page,
.buzzen-members-page .buzzen-members-panel {
    background: transparent;
}

.buzzen-members-panel.buzzen-v5-shell {
    padding: 18px 22px 26px;
}

.buzzen-members-spotlight-wrap {
    margin: 0 0 20px;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.buzzen-members-spotlight-title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    padding: 15px 18px;
    color: #123d5c;
    background: linear-gradient(135deg, #fbfdff 0%, #f1f8fd 100%);
    border-bottom: 1px solid rgba(34, 103, 154, .10);
    font-family: var(--buzzen-font-heading);
    font-size: 20px;
    font-weight: 800;
}

.buzzen-members-spotlight-title::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: 0;
    width: 82px;
    height: 3px;
    border-radius: var(--buzzen-radius-pill);
    background: #f5ad24;
}

.buzzen-members-spotlight-title i {
    color: #f5ad24;
}

.buzzen-members-spotlight-list {
    display: flex;
    gap: 13px;
    padding: 17px 18px 19px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.buzzen-members-spotlight-item {
    flex: 0 0 86px;
    text-align: center;
    color: #234b67;
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
}

.buzzen-members-spotlight-item img {
    display: block;
    width: 66px;
    height: 66px;
    margin: 0 auto 7px;
    object-fit: cover;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(27, 121, 189, .18), 0 8px 16px rgba(17, 71, 111, .12);
}

.buzzen-members-layout {
    margin-top: 0;
}

.buzzen-members-search-card,
.buzzen-members-results,
.buzzen-members-side-card {
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.buzzen-members-card-header.buzzen-v5-section-header {
    display: block;
    padding: 16px 18px 14px;
}

.buzzen-members-card-header h2 {
    margin: 0;
    color: #123d5c;
    font-family: var(--buzzen-font-heading);
    font-size: 22px;
    font-weight: 800;
}

.buzzen-members-card-header h2 i {
    margin-right: 7px;
    color: #1b79bd;
}

.buzzen-members-card-header p {
    margin: 4px 0 0;
    color: #61798a;
    font-size: 13px;
    line-height: 1.5;
}

.buzzen-members-search-form {
    padding: 19px;
}

.buzzen-members-check {
    padding: 13px 13px 13px 36px;
    border: 1px solid rgba(34, 103, 154, .13);
    border-radius: var(--buzzen-radius-sm);
    background: #f5faff;
}

.buzzen-members-results-summary {
    position: relative;
    padding: 15px 18px;
    border-bottom: 1px solid rgba(34, 103, 154, .10);
    background: linear-gradient(135deg, #fbfdff 0%, #f1f8fd 100%);
    color: #123d5c;
    font-family: var(--buzzen-font-heading);
    font-size: 20px;
    font-weight: 800;
}

.buzzen-members-results-summary::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: 0;
    width: 82px;
    height: 3px;
    border-radius: var(--buzzen-radius-pill);
    background: #f5ad24;
}

.buzzen-member-result {
    display: flex;
    gap: 16px;
    margin: 14px 16px;
    padding: 16px;
    border: 1px solid rgba(34, 103, 154, .13);
    border-radius: var(--buzzen-radius-md);
    background: #fff !important;
    box-shadow: 0 7px 18px rgba(17, 71, 111, .05);
}

.buzzen-member-result-avatar img {
    width: 92px;
    height: 92px;
    object-fit: cover;
    border: 3px solid #fff;
    border-radius: var(--buzzen-radius-md);
    box-shadow: 0 0 0 2px rgba(27, 121, 189, .14), 0 8px 18px rgba(17, 71, 111, .11);
}

.buzzen-member-result-name a {
    color: #123d5c;
    font-family: var(--buzzen-font-heading);
    font-size: 21px;
    font-weight: 800;
    text-decoration: none;
}

.buzzen-member-result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 12px;
    margin: 7px 0 9px;
    color: #536c7e;
    font-size: 13px;
}

.buzzen-member-result-line {
    margin-top: 5px;
    color: #496477;
    font-size: 13px;
}

.buzzen-member-result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.buzzen-members-side-card {
    padding: 0;
}

.buzzen-members-side-title {
    position: relative;
    padding: 14px 15px;
    border-bottom: 1px solid rgba(34, 103, 154, .10);
    background: linear-gradient(135deg, #fbfdff 0%, #f1f8fd 100%);
    color: #123d5c;
    font-family: var(--buzzen-font-heading);
    font-size: 18px;
    font-weight: 800;
}

.buzzen-members-side-title::after {
    content: "";
    position: absolute;
    left: 15px;
    bottom: 0;
    width: 58px;
    height: 3px;
    border-radius: 99px;
    background: #f5ad24;
}

.buzzen-members-side-title i {
    margin-right: 6px;
    color: #1b79bd;
}

.buzzen-members-side-list .list-group-item {
    padding: 10px 13px;
    border-color: rgba(34, 103, 154, .08);
    background: transparent;
    font-size: 13px;
}

.buzzen-members-side-list a {
    color: #155c91;
    font-weight: 700;
    text-decoration: none;
}

/* Birthdays -------------------------------------------------------------- */
.buzzen-birthdays-page,
.buzzen-birthdays-page #pholder,
.buzzen-birthdays-panel {
    background: transparent;
}

.buzzen-birthdays-panel.buzzen-v5-shell {
    padding: 18px 22px 26px;
}

.buzzen-birthdays-card {
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.buzzen-birthdays-card-header.buzzen-v5-section-header {
    display: block;
    padding: 16px 18px 14px;
}

.buzzen-birthdays-card-header h2 {
    margin: 0;
    color: #123d5c;
    font-family: var(--buzzen-font-heading);
    font-size: 22px;
    font-weight: 800;
}

.buzzen-birthdays-card-header h2 i {
    margin-right: 7px;
    color: #f5ad24;
}

.buzzen-birthdays-list {
    padding: 14px;
}

.buzzen-birthdays-member {
    display: flex;
    gap: 16px;
    margin: 0 0 12px;
    padding: 15px;
    border: 1px solid rgba(34, 103, 154, .13);
    border-radius: var(--buzzen-radius-md);
    background: #fff !important;
    box-shadow: 0 7px 18px rgba(17, 71, 111, .05);
}

.buzzen-birthdays-member:last-child {
    margin-bottom: 0;
}

.buzzen-birthdays-avatar img {
    width: 92px;
    height: 92px;
    object-fit: cover;
    border: 3px solid #fff;
    border-radius: var(--buzzen-radius-md);
    box-shadow: 0 0 0 2px rgba(245, 173, 36, .20), 0 8px 18px rgba(17, 71, 111, .11);
}

.buzzen-birthdays-member-title a {
    color: #123d5c;
    font-family: var(--buzzen-font-heading);
    font-size: 21px;
    font-weight: 800;
    text-decoration: none;
}

.buzzen-birthdays-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 12px;
    margin: 7px 0 8px;
    color: #536c7e;
    font-size: 13px;
}

.buzzen-birthdays-detail {
    margin-top: 5px;
    color: #496477;
    font-size: 13px;
}

.buzzen-birthdays-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.buzzen-birthdays-side-card {
    padding: 22px;
}

.buzzen-birthdays-side-title {
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: var(--buzzen-font-heading);
    font-size: 23px;
    font-weight: 800;
}

.buzzen-birthdays-side-title i {
    margin-right: 7px;
    color: #ffd24a;
}

.buzzen-birthdays-side-card img,
.buzzen-birthdays-side-card p {
    position: relative;
    z-index: 1;
}

.buzzen-birthdays-side-card img {
    margin: 18px 0 12px;
    max-height: 180px;
    object-fit: contain;
}

.buzzen-birthdays-side-card p {
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 13px;
    line-height: 1.6;
}

/* Awards ---------------------------------------------------------------- */
.buzzen-awards-page,
.buzzen-awards-page #pholder,
.buzzen-awards-panel {
    background: transparent;
}

.buzzen-awards-panel.buzzen-v5-shell {
    padding: 18px 22px 26px;
}

.buzzen-awards-card {
    margin-bottom: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.buzzen-awards-card-header,
.buzzen-awards-table-header,
.buzzen-awards-video-title {
    position: relative;
    padding: 16px 18px 14px;
    border-bottom: 1px solid rgba(34, 103, 154, .10);
    background: linear-gradient(135deg, #fbfdff 0%, #f1f8fd 100%);
}

.buzzen-awards-card-header::after,
.buzzen-awards-table-header::after,
.buzzen-awards-video-title::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: 0;
    width: 82px;
    height: 3px;
    border-radius: 99px;
    background: #f5ad24;
}

.buzzen-awards-card h2,
.buzzen-awards-video-title {
    margin: 0;
    color: #123d5c;
    font-family: var(--buzzen-font-heading);
    font-size: 22px;
    font-weight: 800;
}

.buzzen-awards-card-header p,
.buzzen-awards-table-header p {
    margin: 4px 0 0;
    color: #61798a;
    font-size: 13px;
    line-height: 1.5;
}

.buzzen-awards-filter {
    padding: 18px;
}

.buzzen-awards-table-wrap {
    padding: 0 14px 14px;
}

.buzzen-awards-table {
    margin: 0;
    --bs-table-striped-bg: rgba(232, 244, 252, .48);
}

.buzzen-awards-table thead th {
    border-bottom-color: rgba(34, 103, 154, .20);
    color: #31566d;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.buzzen-awards-user {
    color: #155c91;
    font-weight: 750;
    text-decoration: none;
}

.buzzen-awards-video-card > .row {
    padding: 18px;
}

.buzzen-awards-timestamps {
    padding: 16px;
    border: 1px solid rgba(34, 103, 154, .13);
    border-radius: var(--buzzen-radius-md);
    background: #f5faff;
    color: #496477;
    font-size: 13px;
    line-height: 1.65;
}

/* Memorial wall --------------------------------------------------------- */
.buzzen-memorial-page,
.buzzen-memorial-panel {
    background: transparent;
}

.buzzen-memorial-panel.buzzen-v5-shell {
    padding: 18px 22px 26px;
}

.buzzen-memorial-v5-hero {
    background:
        radial-gradient(circle at 94% 8%, rgba(255, 210, 74, .15) 0, rgba(255, 210, 74, 0) 29%),
        linear-gradient(135deg, #ffffff 0%, #f0f7fb 100%);
}

.buzzen-memorial-hero-panel {
    background: linear-gradient(145deg, #173a57 0%, #245b83 72%, #2f779c 100%);
}

.buzzen-memorial-notice {
    margin: 0 0 18px;
    border-color: rgba(27, 121, 189, .14);
    border-radius: var(--buzzen-radius-sm);
    background: #eef8ff;
    color: #31566d;
}

.buzzen-memorial-intro {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 18px;
    padding: 18px;
    background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.buzzen-memorial-intro-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: var(--buzzen-radius-sm);
    background: #eaf5fc;
    color: #1b79bd;
    font-size: 20px;
}

.buzzen-memorial-intro h2 {
    margin: 0 0 5px;
    color: #123d5c;
    font-family: var(--buzzen-font-heading);
    font-size: 23px;
    font-weight: 800;
}

.buzzen-memorial-intro p {
    margin: 0;
    color: #536c7e;
    font-size: 14px;
    line-height: 1.65;
}

.buzzen-memorial-filter {
    margin-bottom: 18px;
    padding: 17px;
    background: linear-gradient(135deg, #ffffff 0%, #f7fbfe 100%);
}

.buzzen-memorial-summary {
    margin: 0 0 14px;
    color: #536c7e;
    font-size: 13px;
}

.buzzen-memorial-summary strong {
    color: #123d5c;
    font-family: var(--buzzen-font-heading);
    font-size: 20px;
}

.buzzen-memorial-card {
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    transition: transform .18s ease, box-shadow .18s ease;
}

.buzzen-memorial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--buzzen-shadow-elevated);
}

.buzzen-memorial-photo {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e7f0f6;
}

.buzzen-memorial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.buzzen-memorial-card:hover .buzzen-memorial-photo img {
    transform: scale(1.025);
}

.buzzen-memorial-card-body {
    padding: 16px 17px 13px;
}

.buzzen-memorial-card-body h2 {
    margin: 0;
    font-family: var(--buzzen-font-heading);
    font-size: 23px;
    font-weight: 800;
}

.buzzen-memorial-card-body h2 a {
    color: #123d5c;
    text-decoration: none;
}

.buzzen-memorial-realname {
    margin-top: 2px;
    color: #6c7d8b;
    font-size: 13px;
    font-weight: 650;
}

.buzzen-memorial-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin: 10px 0;
    color: #587083;
    font-size: 12.5px;
}

.buzzen-memorial-meta i {
    color: #1b79bd;
}

.buzzen-memorial-card-body p {
    margin: 0;
    color: #50697b;
    font-size: 13px;
    line-height: 1.55;
}

.buzzen-memorial-card-footer {
    padding: 0 17px 17px;
}

/* Memorial detail */
.buzzen-memorial-detail-hero {
    position: relative;
    margin-bottom: 20px;
    padding: 23px;
    overflow: hidden;
    background:
        radial-gradient(circle at 96% 8%, rgba(255, 210, 74, .15) 0, rgba(255, 210, 74, 0) 28%),
        linear-gradient(135deg, #ffffff 0%, #edf7fd 100%);
}

.buzzen-memorial-detail-hero::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, #1b79bd 0%, #ffd24a 100%);
}

.buzzen-memorial-detail-photo {
    overflow: hidden;
    border: 4px solid #fff;
    border-radius: var(--buzzen-radius-md);
    box-shadow: 0 0 0 2px rgba(27, 121, 189, .13), 0 12px 24px rgba(17, 71, 111, .12);
}

.buzzen-memorial-detail-photo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.buzzen-memorial-detail-card h2 {
    margin: 0;
    color: #123d5c;
    font-family: var(--buzzen-font-heading);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
}

.buzzen-memorial-bio {
    color: #465f72;
    font-size: 14px;
    line-height: 1.7;
}

.buzzen-memorial-comments-header.buzzen-v5-section-header {
    margin-top: 18px;
    border: 1px solid rgba(34, 103, 154, .14);
    border-radius: var(--buzzen-radius-md) var(--buzzen-radius-md) 0 0;
}

.buzzen-memorial-comments-header h2 {
    margin: 0;
    color: #123d5c;
    font-family: var(--buzzen-font-heading);
    font-size: 22px;
    font-weight: 800;
}

.buzzen-memorial-comment {
    margin-top: 10px;
    padding: 14px;
    border: 1px solid rgba(34, 103, 154, .11);
    border-radius: var(--buzzen-radius-md);
    background: #fff;
    box-shadow: 0 6px 15px rgba(17, 71, 111, .04);
}

.buzzen-memorial-comment-avatar {
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(27,121,189,.12);
}

.buzzen-memorial-comment-form {
    margin-top: 18px;
    padding: 18px;
    background: linear-gradient(180deg, #fff 0%, #f8fcff 100%);
}

/* Public profile -------------------------------------------------------- */
.buzzen-profile-stage.buzzen-v5-page {
    padding-bottom: 38px;
}

.buzzen-profile-stage .buzzen-v5-page-container {
    padding-top: 38px;
}

.buzzen-profile-v5-holder {
    border-radius: var(--buzzen-radius-lg);
}

.buzzen-profile-panel.buzzen-v5-shell {
    padding: 18px 22px 26px;
    background: rgba(246, 250, 253, var(--legacy-profile-panel-alpha, .96));
    backdrop-filter: blur(3px);
}

.buzzen-profile-v5-hero {
    position: relative;
    margin: 0 0 18px;
    padding: 22px;
    overflow: hidden;
    background:
        radial-gradient(circle at 96% 5%, rgba(255, 210, 74, .17) 0, rgba(255, 210, 74, 0) 25%),
        linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(237,247,253,.96) 100%);
}

.buzzen-profile-v5-hero::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, #1b79bd 0%, #ffd24a 100%);
}

.buzzen-profile-v5-kicker {
    margin: 0 0 12px 5px;
}

.buzzen-profile-v5-hero .buzzen-userinfo-mood {
    margin: 0 0 12px 5px;
}

.buzzen-profile-v5-hero .buzzen-userinfo-shell {
    margin: 0;
    border: 0;
    border-radius: var(--buzzen-radius-md);
    background: transparent;
    box-shadow: none;
}

.buzzen-profile-v5-hero .buzzen-userinfo-photo img {
    border: 4px solid #fff !important;
    border-radius: var(--buzzen-radius-md) !important;
    box-shadow: 0 0 0 2px rgba(27, 121, 189, .16), 0 13px 28px rgba(17, 71, 111, .13) !important;
}

.buzzen-profile-v5-hero .buzzen-userinfo-name-text a {
    color: #123d5c !important;
    font-family: var(--buzzen-font-heading);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    line-height: 1.05;
}

.buzzen-profile-v5-hero .buzzen-userinfo-detail-pill,
.buzzen-profile-v5-hero .buzzen-userinfo-mood-pill {
    border-color: rgba(27,121,189,.13);
    background: rgba(255,255,255,.82);
    box-shadow: 0 4px 12px rgba(17,71,111,.04);
}

.buzzen-profile-meta {
    margin: 0 0 18px;
    padding: 12px 15px;
    border: 1px solid rgba(34,103,154,.13);
    border-radius: var(--buzzen-radius-md);
    background: rgba(255,255,255,.90);
    box-shadow: var(--buzzen-shadow-soft);
}

.buzzen-profile-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}

.buzzen-profile-stat {
    color: #536c7e;
    font-size: 13px;
}

.buzzen-profile-stat i {
    margin-right: 5px;
    color: #1b79bd;
}

.buzzen-profile-anniversary {
    margin: 0 0 18px;
    padding: 13px;
    border: 1px solid rgba(34,103,154,.11);
    border-radius: var(--buzzen-radius-md);
    background: rgba(255,255,255,.78);
}

.buzzen-profile-anniversary img {
    max-width: min(100%, 780px);
}

.buzzen-legacy-relay-promo {
    margin: 0 0 20px;
    overflow: hidden;
    border: 1px solid rgba(34,103,154,.14);
    border-radius: var(--buzzen-radius-md);
    background: #fff;
    box-shadow: var(--buzzen-shadow-card);
}

.buzzen-profile-v5-content {
    margin-top: 0;
}

.buzzen-profile-v5-content .sidebar-widget-header {
    position: relative;
    margin: 0;
    padding: 14px 17px;
    border: 1px solid rgba(34,103,154,.13);
    border-bottom: 0;
    border-radius: var(--buzzen-radius-md) var(--buzzen-radius-md) 0 0;
    background: linear-gradient(135deg, #fbfdff 0%, #f1f8fd 100%);
}

.buzzen-profile-v5-content .sidebar-widget-header::after {
    content: "";
    position: absolute;
    left: 17px;
    bottom: 0;
    width: 72px;
    height: 3px;
    border-radius: 99px;
    background: #f5ad24;
}

.buzzen-profile-v5-content .sidebar-widget-header h1 {
    margin: 0 !important;
    color: #123d5c;
    font-family: var(--buzzen-font-heading);
    font-size: 20px !important;
    font-weight: 800;
}

.buzzen-profile-v5-content .sidebar-widget-header h1 i {
    margin-right: 6px;
    color: #1b79bd;
}

.buzzen-profile-about {
    padding: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    overflow: hidden;
    background: linear-gradient(180deg,#fff 0%,#fbfdff 100%);
}

.buzzen-profile-about-inner {
    padding: 20px;
}

.buzzen-profile-v5-side-card,
.buzzen-profile-media-card {
    margin: 0 0 16px;
    border: 1px solid rgba(34,103,154,.13) !important;
    border-top: 0 !important;
    border-radius: 0 0 var(--buzzen-radius-md) var(--buzzen-radius-md) !important;
    background: #fff !important;
    box-shadow: var(--buzzen-shadow-card);
    overflow: hidden;
}

.buzzen-profile-v5-side-card .list-group-item,
.buzzen-profile-media-card .list-group-item {
    border-color: rgba(34,103,154,.08);
    background: transparent;
}

.buzzen-profile-unavailable {
    padding: 38px 0;
    background: linear-gradient(180deg,#eef3f8 0%,#f7fafc 100%);
}

.buzzen-profile-unavailable-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 32px;
    border: 1px solid rgba(34,103,154,.14);
    border-radius: var(--buzzen-radius-lg);
    background: linear-gradient(135deg,#fff 0%,#edf7fd 100%);
    box-shadow: var(--buzzen-shadow-panel);
    text-align: center;
}

.buzzen-profile-unavailable-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin: 12px auto;
    border-radius: var(--buzzen-radius-md);
    background: #103858;
    color: #ffd24a;
    font-size: 26px;
}

/* Responsive ------------------------------------------------------------ */
@media (max-width: 991.98px) {
    .buzzen-community-hero {
        grid-template-columns: 1fr;
    }

    .buzzen-community-hero-panel {
        min-height: 0;
    }

    .buzzen-members-layout > aside {
        order: initial !important;
    }

    .buzzen-profile-v5-content .buzzen-profile-sidecol {
        margin-top: 18px;
    }
}

@media (max-width: 767.98px) {
    .buzzen-community-page .buzzen-v5-page-container,
    .buzzen-profile-stage .buzzen-v5-page-container {
        padding-top: 24px;
    }

    .buzzen-members-panel.buzzen-v5-shell,
    .buzzen-birthdays-panel.buzzen-v5-shell,
    .buzzen-awards-panel.buzzen-v5-shell,
    .buzzen-memorial-panel.buzzen-v5-shell,
    .buzzen-profile-panel.buzzen-v5-shell {
        padding: 14px;
    }

    .buzzen-community-hero,
    .buzzen-profile-v5-hero,
    .buzzen-memorial-detail-hero {
        padding: 20px 18px;
    }

    .buzzen-community-hero h2 {
        font-size: 29px;
    }

    .buzzen-member-result,
    .buzzen-birthdays-member {
        align-items: flex-start;
    }

    .buzzen-member-result-avatar img,
    .buzzen-birthdays-avatar img {
        width: 76px;
        height: 76px;
    }

    .buzzen-memorial-intro {
        display: block;
    }

    .buzzen-memorial-intro-icon {
        margin-bottom: 12px;
    }
}

@media (max-width: 575.98px) {
    .buzzen-community-hero-points {
        display: grid;
        grid-template-columns: 1fr;
    }

    .buzzen-community-hero-points span {
        justify-content: flex-start;
    }

    .buzzen-member-result,
    .buzzen-birthdays-member {
        display: block;
    }

    .buzzen-member-result-avatar,
    .buzzen-birthdays-avatar {
        display: inline-block;
        margin-bottom: 12px;
    }

    .buzzen-member-result-actions,
    .buzzen-birthdays-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .buzzen-member-result-actions form,
    .buzzen-member-result-actions .btn,
    .buzzen-birthdays-actions form,
    .buzzen-birthdays-actions .btn {
        width: 100%;
    }

    .buzzen-profile-v5-hero .buzzen-userinfo-main {
        display: block;
    }

    .buzzen-profile-v5-hero .buzzen-userinfo-photo {
        margin-bottom: 14px;
    }
}

/* Build 0104 — Memorial visual normalization.
 * Remove the last pre-foundation magenta/compact treatment and align the wall/detail
 * surfaces with the Donate-derived main-site language. */
.buzzen-memorial-page {
    padding: 0 0 42px;
}

.buzzen-memorial-title > i {
    color: var(--buzzen-yellow-light) !important;
}

.buzzen-memorial-rule {
    height: 1px !important;
    margin: 14px 0 16px !important;
    background: linear-gradient(to right, transparent, rgba(25,92,142,.25), transparent) !important;
}

.buzzen-memorial-intro {
    position: relative;
    overflow: hidden;
    border-color: rgba(34,103,154,.14) !important;
    border-radius: var(--buzzen-radius-md) !important;
    background: linear-gradient(135deg,#fff 0%,#f5faff 100%) !important;
    box-shadow: var(--buzzen-shadow-soft) !important;
}

.buzzen-memorial-intro::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg,#1b79bd,#f5ad24);
}

.buzzen-memorial-filter {
    border-color: rgba(34,103,154,.14) !important;
    border-radius: var(--buzzen-radius-md) !important;
    background: linear-gradient(135deg,#fff 0%,#f7fbfe 100%) !important;
    box-shadow: var(--buzzen-shadow-soft) !important;
}

.buzzen-memorial-filter .form-label {
    color: #315970;
    font-size: 13px;
    font-weight: 800;
}

.buzzen-memorial-filter .form-control,
.buzzen-memorial-filter .form-select,
.buzzen-memorial-filter .input-group-text {
    min-height: 42px;
    border-color: rgba(34,103,154,.18);
    font-size: 14px;
}

.buzzen-memorial-card {
    position: relative;
    border-color: rgba(34,103,154,.14) !important;
    border-radius: var(--buzzen-radius-md) !important;
    box-shadow: var(--buzzen-shadow-card) !important;
}

.buzzen-memorial-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 2;
    width: 4px;
    background: linear-gradient(180deg,#1b79bd,#f5ad24);
    pointer-events: none;
}

.buzzen-memorial-photo {
    background: linear-gradient(135deg,#e9f3f9,#f8fbfd) !important;
}

.buzzen-memorial-photo img {
    object-position: center;
}

.buzzen-memorial-card-footer .btn {
    min-height: 38px;
    border-radius: 10px;
    font-weight: 800;
}

.buzzen-memorial-detail-hero {
    border-radius: var(--buzzen-radius-lg) !important;
    box-shadow: var(--buzzen-shadow-elevated) !important;
}

.buzzen-memorial-detail-photo {
    background: linear-gradient(145deg,#0f3653,#155c91);
}

.buzzen-memorial-detail-photo img {
    min-height: 220px;
    background: #eef5f9;
}

.buzzen-memorial-bio {
    border-left-color: #f5ad24 !important;
    border-radius: 0 10px 10px 0;
    background: #f8fcff !important;
}

.buzzen-memorial-comments-section {
    overflow: hidden;
    margin-top: 18px;
    background: #fff;
    box-shadow: var(--buzzen-shadow-card);
}

.buzzen-memorial-comments-header.buzzen-v5-section-header {
    margin: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(34,103,154,.12) !important;
    border-radius: 0 !important;
}

.buzzen-memorial-comments-header h2 {
    font-size: 21px;
}

.buzzen-memorial-comments-header p {
    margin: 3px 0 0;
    color: #718797;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 650;
}

.buzzen-memorial-comments-body {
    padding: 16px 18px 18px;
}

.buzzen-memorial-comments-list {
    margin-top: 0;
}

.buzzen-memorial-older-comments {
    margin: 0 0 12px;
    border-color: rgba(34,103,154,.13);
    border-radius: 11px;
    background: #f7fbfe;
}

.buzzen-memorial-comment {
    margin-top: 0;
    border-radius: 12px;
    box-shadow: var(--buzzen-shadow-soft);
}

.buzzen-memorial-comment-form {
    border-color: rgba(34,103,154,.14) !important;
    border-radius: var(--buzzen-radius-md) !important;
    box-shadow: var(--buzzen-shadow-card) !important;
}

.buzzen-memorial-empty-comment {
    margin: 0;
    border-color: rgba(34,103,154,.18);
    border-radius: 11px;
    background: #f8fcff;
}

@media (max-width: 767.98px) {
    .buzzen-memorial-page {
        padding-bottom: 30px;
    }

    .buzzen-memorial-comments-body {
        padding: 14px;
    }
}

/* Build 0128 — Members directory search/layout refresh ------------------ */
.buzzen-members-page .buzzen-members-search-card {
    margin: 0 0 20px;
    border: 1px solid rgba(34, 103, 154, .14);
    border-radius: var(--buzzen-radius-lg);
    background: #fff;
    box-shadow: var(--buzzen-shadow-panel);
}

.buzzen-members-page .buzzen-members-card-header.buzzen-v5-section-header,
.buzzen-members-page .buzzen-members-results-head,
.buzzen-members-page .buzzen-members-spotlight-heading,
.buzzen-members-page .buzzen-members-side-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 17px 19px;
    border-bottom: 1px solid rgba(34, 103, 154, .10);
    background: linear-gradient(135deg, #fbfdff 0%, #f0f8fd 100%);
}

.buzzen-members-page .buzzen-members-section-kicker {
    display: block;
    margin: 0 0 3px;
    color: #6b8190;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.buzzen-members-page .buzzen-members-card-header h2,
.buzzen-members-page .buzzen-members-results-head h2,
.buzzen-members-page .buzzen-members-spotlight-heading h2,
.buzzen-members-page .buzzen-members-side-title h2 {
    margin: 0;
    color: #123d5c;
    font-family: var(--buzzen-font-heading);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.15;
}

.buzzen-members-page .buzzen-members-card-header h2 i,
.buzzen-members-page .buzzen-members-results-head h2 i,
.buzzen-members-page .buzzen-members-side-title h2 i {
    margin-right: 6px;
    color: #1b79bd;
}

.buzzen-members-page .buzzen-members-spotlight-heading h2 i {
    margin-right: 6px;
    color: #f5ad24;
}

.buzzen-members-page .buzzen-members-card-header p,
.buzzen-members-page .buzzen-members-results-head p {
    margin: 4px 0 0;
    color: #647d8f;
    font-size: 13px;
    line-height: 1.45;
}

.buzzen-members-page .buzzen-members-search-form {
    padding: 19px;
}

.buzzen-members-page .buzzen-members-quick-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(190px, 240px) auto;
    gap: 12px;
    align-items: end;
}

.buzzen-members-page .buzzen-members-keyword-field,
.buzzen-members-page .buzzen-members-sort-field {
    min-width: 0;
}

.buzzen-members-page .buzzen-members-keyword-field .input-group-text {
    width: 44px;
    justify-content: center;
    border-right: 0;
    background: #f3f8fc;
    color: #1b79bd;
}

.buzzen-members-page .buzzen-members-keyword-field .form-control {
    border-left: 0;
    font-size: 15px;
}

.buzzen-members-page .buzzen-members-search-submit .btn {
    min-height: 42px;
    padding-inline: 18px;
    font-weight: 800;
}

.buzzen-members-page .buzzen-members-more-filters {
    margin-top: 14px;
    border: 1px solid rgba(34, 103, 154, .13);
    border-radius: var(--buzzen-radius-md);
    background: linear-gradient(180deg, #fbfdff 0%, #f7fbfe 100%);
    overflow: hidden;
}

.buzzen-members-page .buzzen-members-more-filters summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 48px;
    padding: 12px 15px;
    cursor: pointer;
    color: #244c68;
    font-size: 14px;
    font-weight: 800;
    list-style: none;
    user-select: none;
}

.buzzen-members-page .buzzen-members-more-filters summary::-webkit-details-marker {
    display: none;
}

.buzzen-members-page .buzzen-members-more-filters summary::after {
    content: "\f078";
    margin-left: auto;
    color: #1b79bd;
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    transition: transform .18s ease;
}

.buzzen-members-page .buzzen-members-more-filters[open] summary::after {
    transform: rotate(180deg);
}

.buzzen-members-page .buzzen-members-more-filters summary span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.buzzen-members-page .buzzen-members-more-filters summary span i {
    color: #1b79bd;
}

.buzzen-members-page .buzzen-members-more-filters summary small {
    margin-left: auto;
    color: #758a98;
    font-size: 12px;
    font-weight: 650;
}

.buzzen-members-page .buzzen-members-filter-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 17px;
    border-top: 1px solid rgba(34, 103, 154, .09);
    background: #fff;
}

.buzzen-members-page .buzzen-members-photo-filter {
    display: flex;
    align-items: end;
}

.buzzen-members-page .buzzen-members-check {
    width: 100%;
    min-height: 42px;
    margin: 0;
    padding: 10px 12px 10px 36px;
    border: 1px solid rgba(34, 103, 154, .16);
    background: #f7fbfe;
}

.buzzen-members-page .buzzen-members-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
}

.buzzen-members-page .buzzen-members-form-footer > span {
    color: #718797;
    font-size: 12px;
}

.buzzen-members-page .buzzen-members-form-footer > span i {
    margin-right: 4px;
    color: #1b79bd;
}

.buzzen-members-page .buzzen-members-active-filters {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 18px 15px;
    border-top: 1px solid rgba(34, 103, 154, .10);
    background: #f8fcff;
}

.buzzen-members-page .buzzen-members-active-label {
    flex: 0 0 auto;
    padding-top: 5px;
    color: #315970;
    font-size: 12px;
    font-weight: 800;
}

.buzzen-members-page .buzzen-members-active-label i {
    margin-right: 4px;
    color: #1b79bd;
}

.buzzen-members-page .buzzen-members-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.buzzen-members-page .buzzen-members-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 9px;
    border: 1px solid rgba(27, 121, 189, .18);
    border-radius: var(--buzzen-radius-pill);
    background: #fff;
    color: #315970;
    font-size: 11px;
    font-weight: 750;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(17, 71, 111, .04);
}

.buzzen-members-page .buzzen-members-filter-chip:hover,
.buzzen-members-page .buzzen-members-filter-chip:focus-visible {
    border-color: rgba(27, 121, 189, .38);
    color: #155c91;
}

.buzzen-members-page .buzzen-members-filter-chip i {
    color: #8194a1;
}

.buzzen-members-page .buzzen-members-results {
    margin-top: 20px;
    overflow: hidden;
    border: 1px solid rgba(34, 103, 154, .14);
    border-radius: var(--buzzen-radius-lg);
    background: #fff;
    box-shadow: var(--buzzen-shadow-panel);
}

.buzzen-members-page .buzzen-members-results-head {
    position: relative;
}

.buzzen-members-page .buzzen-members-results-head::after,
.buzzen-members-page .buzzen-members-spotlight-heading::after,
.buzzen-members-page .buzzen-members-side-title::after {
    content: "";
    position: absolute;
    left: 19px;
    bottom: 0;
    width: 74px;
    height: 3px;
    border-radius: var(--buzzen-radius-pill);
    background: #f5ad24;
}

.buzzen-members-page .buzzen-members-results-note {
    margin: 15px 17px 0;
    padding: 11px 13px;
    border: 1px solid rgba(245, 173, 36, .25);
    border-radius: var(--buzzen-radius-sm);
    background: #fff9e9;
    color: #67531b;
    font-size: 13px;
}

.buzzen-members-page .buzzen-members-results-note i {
    margin-right: 6px;
    color: #c88716;
}

.buzzen-members-page .buzzen-members-results-empty {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 17px;
    padding: 18px;
    border: 1px dashed rgba(34, 103, 154, .22);
    border-radius: var(--buzzen-radius-md);
    background: #f8fcff;
    color: #456175;
}

.buzzen-members-page .buzzen-members-results-empty > i {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #e9f5fc;
    color: #1b79bd;
    font-size: 18px;
}

.buzzen-members-page .buzzen-members-results-empty strong,
.buzzen-members-page .buzzen-members-results-empty span {
    display: block;
}

.buzzen-members-page .buzzen-members-results-empty strong {
    color: #244c68;
}

.buzzen-members-page .buzzen-members-results-empty span {
    margin-top: 2px;
    color: #718797;
    font-size: 12px;
}

.buzzen-members-page .buzzen-members-results-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 17px;
}

.buzzen-members-page .buzzen-member-result {
    display: flex;
    flex-direction: column;
    gap: 13px;
    min-width: 0;
    margin: 0;
    padding: 15px;
    border: 1px solid rgba(34, 103, 154, .14);
    border-radius: var(--buzzen-radius-md);
    background: linear-gradient(180deg, #fff 0%, #fbfdff 100%) !important;
    box-shadow: 0 7px 18px rgba(17, 71, 111, .05);
}

.buzzen-members-page .buzzen-member-result-top {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.buzzen-members-page .buzzen-member-result-avatar {
    flex: 0 0 auto;
}

.buzzen-members-page .buzzen-member-result-avatar img {
    display: block;
    width: 82px;
    height: 82px;
    border: 3px solid #fff;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 0 0 2px rgba(27, 121, 189, .14), 0 8px 18px rgba(17, 71, 111, .11);
}

.buzzen-members-page .buzzen-member-result-identity {
    min-width: 0;
}

.buzzen-members-page .buzzen-member-result-name a {
    display: block;
    overflow: hidden;
    color: #123d5c;
    font-family: var(--buzzen-font-heading);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.buzzen-members-page .buzzen-member-realname {
    margin-top: 3px;
    overflow: hidden;
    color: #718797;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.buzzen-members-page .buzzen-member-result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin: 7px 0 0;
    color: #536c7e;
    font-size: 12px;
}

.buzzen-members-page .buzzen-member-result-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.buzzen-members-page .buzzen-member-detail-list {
    display: grid;
    gap: 7px;
    padding: 11px 12px;
    border: 1px solid rgba(34, 103, 154, .09);
    border-radius: 12px;
    background: #f8fbfe;
}

.buzzen-members-page .buzzen-member-detail-list > div {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 7px;
    color: #4f687a;
    font-size: 12px;
    line-height: 1.4;
}

.buzzen-members-page .buzzen-member-detail-list > div > i {
    margin-top: 2px;
    color: #1b79bd;
    text-align: center;
}

.buzzen-members-page .buzzen-member-detail-list strong {
    color: #31566d;
}

.buzzen-members-page .buzzen-member-result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: auto;
}

.buzzen-members-page .buzzen-member-result-actions .btn {
    min-height: 35px;
    font-weight: 750;
}

.buzzen-members-page .buzzen-members-pagination {
    padding: 0 17px 17px;
}

.buzzen-members-page .buzzen-members-pagination .pagination {
    margin: 0;
}

.buzzen-members-page .buzzen-members-spotlight-wrap {
    margin: 20px 0 0;
    overflow: hidden;
    border: 1px solid rgba(34, 103, 154, .14);
    border-radius: var(--buzzen-radius-lg);
    background: #fff;
    box-shadow: var(--buzzen-shadow-card);
}

.buzzen-members-page .buzzen-members-spotlight-heading {
    position: relative;
}

.buzzen-members-page .buzzen-members-spotlight-heading > span {
    color: #718797;
    font-size: 12px;
    font-weight: 700;
}

.buzzen-members-page .buzzen-members-spotlight-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 11px;
    padding: 16px;
    overflow: visible;
}

.buzzen-members-page .buzzen-members-spotlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    padding: 13px 9px;
    border: 1px solid rgba(34, 103, 154, .11);
    border-radius: 14px;
    background: linear-gradient(180deg, #fff 0%, #f8fcff 100%);
    color: #31566d;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 5px 14px rgba(17, 71, 111, .04);
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.buzzen-members-page .buzzen-members-spotlight-item:hover,
.buzzen-members-page .buzzen-members-spotlight-item:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(27, 121, 189, .28);
    box-shadow: 0 9px 20px rgba(17, 71, 111, .08);
}

.buzzen-members-page .buzzen-members-spotlight-item img {
    width: 72px;
    height: 72px;
    margin: 0 0 9px;
    border: 3px solid #fff;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 2px rgba(27, 121, 189, .16), 0 7px 15px rgba(17, 71, 111, .10);
}

.buzzen-members-page .buzzen-members-spotlight-name {
    display: block;
    width: 100%;
    overflow: hidden;
    color: #123d5c;
    font-family: var(--buzzen-font-heading);
    font-size: 16px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.buzzen-members-page .buzzen-members-spotlight-item small {
    display: -webkit-box;
    margin-top: 3px;
    overflow: hidden;
    color: #7a8d9a;
    font-size: 10px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.buzzen-members-page .buzzen-members-discovery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.buzzen-members-page .buzzen-members-side-card {
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(34, 103, 154, .14);
    border-radius: var(--buzzen-radius-lg);
    background: #fff;
    box-shadow: var(--buzzen-shadow-card);
}

.buzzen-members-page .buzzen-members-side-title {
    position: relative;
}

.buzzen-members-page .buzzen-members-side-title-action > a {
    color: #155c91;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.buzzen-members-page .buzzen-members-side-title-action > a i {
    margin-left: 3px;
}

.buzzen-members-page .buzzen-members-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 13px;
}

.buzzen-members-page .buzzen-members-mini-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 14px;
    gap: 9px;
    align-items: center;
    min-width: 0;
    padding: 8px;
    border: 1px solid rgba(34, 103, 154, .09);
    border-radius: 11px;
    background: #fbfdff;
    color: #31566d;
    text-decoration: none;
}

.buzzen-members-page .buzzen-members-mini-card:hover,
.buzzen-members-page .buzzen-members-mini-card:focus-visible {
    border-color: rgba(27, 121, 189, .25);
    background: #f5faff;
}

.buzzen-members-page .buzzen-members-mini-card img {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    object-fit: cover;
}

.buzzen-members-page .buzzen-members-mini-card span,
.buzzen-members-page .buzzen-members-mini-card strong,
.buzzen-members-page .buzzen-members-mini-card small {
    display: block;
    min-width: 0;
}

.buzzen-members-page .buzzen-members-mini-card strong,
.buzzen-members-page .buzzen-members-mini-card small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.buzzen-members-page .buzzen-members-mini-card strong {
    color: #244c68;
    font-size: 12px;
}

.buzzen-members-page .buzzen-members-mini-card small {
    margin-top: 2px;
    color: #7a8d9a;
    font-size: 10px;
}

.buzzen-members-page .buzzen-members-mini-card > i {
    color: #9aacb8;
    font-size: 10px;
}

@media (max-width: 991.98px) {
    .buzzen-members-page .buzzen-members-quick-search {
        grid-template-columns: minmax(0, 1fr) minmax(180px, 220px);
    }

    .buzzen-members-page .buzzen-members-search-submit {
        grid-column: 1 / -1;
    }

    .buzzen-members-page .buzzen-members-search-submit .btn {
        width: 100%;
    }

    .buzzen-members-page .buzzen-members-filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .buzzen-members-page .buzzen-members-results-grid {
        grid-template-columns: 1fr;
    }

    .buzzen-members-page .buzzen-members-spotlight-list {
        grid-template-columns: repeat(5, minmax(120px, 1fr));
        overflow-x: auto;
    }

    .buzzen-members-page .buzzen-members-discovery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .buzzen-members-page .buzzen-members-card-header.buzzen-v5-section-header,
    .buzzen-members-page .buzzen-members-results-head,
    .buzzen-members-page .buzzen-members-spotlight-heading,
    .buzzen-members-page .buzzen-members-side-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .buzzen-members-page .buzzen-members-quick-search,
    .buzzen-members-page .buzzen-members-filter-grid {
        grid-template-columns: 1fr;
    }

    .buzzen-members-page .buzzen-members-search-submit {
        grid-column: auto;
    }

    .buzzen-members-page .buzzen-members-more-filters summary small {
        display: none;
    }

    .buzzen-members-page .buzzen-members-form-footer,
    .buzzen-members-page .buzzen-members-active-filters {
        align-items: stretch;
        flex-direction: column;
    }

    .buzzen-members-page .buzzen-members-form-footer .buzzen-members-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .buzzen-members-page .buzzen-member-result-top {
        align-items: flex-start;
    }

    .buzzen-members-page .buzzen-member-result-avatar img {
        width: 72px;
        height: 72px;
    }

    .buzzen-members-page .buzzen-members-mini-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .buzzen-members-page .buzzen-members-search-form,
    .buzzen-members-page .buzzen-members-results-grid,
    .buzzen-members-page .buzzen-members-spotlight-list {
        padding: 13px;
    }

    .buzzen-members-page .buzzen-members-filter-grid {
        padding: 13px;
    }

    .buzzen-members-page .buzzen-members-form-footer .buzzen-members-actions {
        grid-template-columns: 1fr;
    }

    .buzzen-members-page .buzzen-member-result {
        display: flex;
        padding: 13px;
    }

    .buzzen-members-page .buzzen-member-result-actions,
    .buzzen-members-page .buzzen-member-result-actions form,
    .buzzen-members-page .buzzen-member-result-actions .btn {
        width: 100%;
    }

    .buzzen-members-page .buzzen-member-result-actions .btn {
        justify-content: center;
    }

    .buzzen-members-page .buzzen-members-spotlight-list {
        grid-template-columns: repeat(5, minmax(112px, 1fr));
    }
}

/* Build 0129 — Memorial wall/detail refresh ----------------------------- */
.buzzen-memorial-page .buzzen-memorial-panel.buzzen-v5-shell {
    padding: 18px 22px 30px;
}

.buzzen-memorial-page .buzzen-memorial-v5-hero {
    margin-bottom: 16px;
    background:
        radial-gradient(circle at 94% 8%, rgba(255, 210, 74, .14) 0, rgba(255, 210, 74, 0) 30%),
        linear-gradient(135deg, #ffffff 0%, #eef7fc 100%);
}

.buzzen-memorial-help {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0 0 18px;
    padding: 13px 15px;
    border: 1px solid rgba(34, 103, 154, .13);
    border-radius: var(--buzzen-radius-md);
    background: linear-gradient(135deg, #f8fcff 0%, #fffdf5 100%);
    color: #486477;
    box-shadow: var(--buzzen-shadow-soft);
}

/* Build 0130 — Memorial help icon alignment correction */
.buzzen-memorial-help .buzzen-memorial-help-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    background: #eaf5fc;
    color: #1b79bd;
    line-height: 1;
}

.buzzen-memorial-help .buzzen-memorial-help-icon i {
    display: block;
    line-height: 1;
}

.buzzen-memorial-help > div > strong,
.buzzen-memorial-help > div > span {
    display: block;
}

.buzzen-memorial-help > div > strong {
    margin-bottom: 2px;
    color: #173f5c;
    font-size: 13px;
    font-weight: 850;
}

.buzzen-memorial-help > div > span {
    font-size: 13px;
    line-height: 1.55;
}

.buzzen-memorial-help a {
    color: #155c91;
    font-weight: 750;
}

.buzzen-memorial-search-card {
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(34, 103, 154, .14);
    border-radius: var(--buzzen-radius-lg);
    background: #fff;
    box-shadow: var(--buzzen-shadow-panel);
}

.buzzen-memorial-search-head,
.buzzen-memorial-results-head,
.buzzen-memorial-subsection-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.buzzen-memorial-search-head {
    padding: 17px 19px 14px;
    border-bottom: 1px solid rgba(34, 103, 154, .10);
    background: linear-gradient(135deg, #fbfdff 0%, #f1f8fd 100%);
}

.buzzen-memorial-section-kicker {
    display: block;
    margin-bottom: 3px;
    color: #1b79bd;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.buzzen-memorial-search-head h2,
.buzzen-memorial-results-head h2,
.buzzen-memorial-subsection-head h2 {
    margin: 0;
    color: #123d5c;
    font-family: var(--buzzen-font-heading);
    font-weight: 800;
}

.buzzen-memorial-search-head h2 {
    font-size: 22px;
}

.buzzen-memorial-search-head h2 i {
    margin-right: 6px;
    color: #1b79bd;
}

.buzzen-memorial-search-head p,
.buzzen-memorial-subsection-head p {
    margin: 4px 0 0;
    color: #667f90;
    font-size: 13px;
    line-height: 1.5;
}

.buzzen-memorial-search-card .buzzen-memorial-filter {
    margin: 0 !important;
    padding: 18px 19px 19px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
}

.buzzen-memorial-search-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(230px, .85fr) auto;
    gap: 13px;
    align-items: end;
}

.buzzen-memorial-search-submit .btn {
    min-height: 42px;
    padding-inline: 18px;
    white-space: nowrap;
}

.buzzen-memorial-results-head {
    margin: 2px 0 13px;
    padding: 0 2px;
}

.buzzen-memorial-results-head h2 {
    font-size: 22px;
}

.buzzen-memorial-result-count {
    color: #667f90;
    font-size: 12.5px;
    font-weight: 750;
}

.buzzen-memorial-active-filter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    padding: 7px 8px 7px 11px;
    border: 1px solid rgba(27, 121, 189, .15);
    border-radius: var(--buzzen-radius-pill);
    background: #eef8ff;
    color: #31566d;
    font-size: 12px;
}

.buzzen-memorial-active-filter > a {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #31566d;
    text-decoration: none;
}

.buzzen-memorial-active-filter > a:hover {
    background: rgba(21, 92, 145, .09);
}

.buzzen-memorial-page .buzzen-memorial-grid {
    margin-bottom: 0;
}

.buzzen-memorial-page .buzzen-memorial-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(34, 103, 154, .13) !important;
    border-radius: var(--buzzen-radius-lg) !important;
    background: #fff !important;
    box-shadow: 0 9px 24px rgba(17, 71, 111, .075) !important;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.buzzen-memorial-page .buzzen-memorial-card::before {
    display: none;
}

.buzzen-memorial-page .buzzen-memorial-card:hover {
    transform: translateY(-3px);
    border-color: rgba(27, 121, 189, .24) !important;
    box-shadow: 0 15px 34px rgba(17, 71, 111, .12) !important;
}

.buzzen-memorial-page .buzzen-memorial-photo {
    position: relative;
    aspect-ratio: 16 / 10;
    background: linear-gradient(145deg, #e8f2f8, #f9fbfc) !important;
}

.buzzen-memorial-page .buzzen-memorial-photo::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, rgba(8, 37, 57, 0), rgba(8, 37, 57, .46));
    pointer-events: none;
}

.buzzen-memorial-page .buzzen-memorial-photo img {
    transition: transform .28s ease;
}

.buzzen-memorial-page .buzzen-memorial-card:hover .buzzen-memorial-photo img {
    transform: scale(1.018);
}

.buzzen-memorial-photo-label,
.buzzen-memorial-detail-photo-label {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: var(--buzzen-radius-pill);
    background: rgba(8, 37, 57, .72);
    color: #fff;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.buzzen-memorial-photo-label {
    left: 13px;
    bottom: 11px;
    padding: 5px 9px;
}

.buzzen-memorial-photo-label i,
.buzzen-memorial-detail-photo-label i {
    color: #ffd24a;
}

.buzzen-memorial-page .buzzen-memorial-card-body {
    padding: 17px 18px 14px;
}

.buzzen-memorial-page .buzzen-memorial-card-body h2 {
    font-size: 22px;
    line-height: 1.15;
}

.buzzen-memorial-page .buzzen-memorial-realname {
    margin-top: 3px;
    color: #718493;
    font-size: 12.5px;
}

.buzzen-memorial-page .buzzen-memorial-meta {
    gap: 7px 13px;
    margin: 11px 0 10px;
    color: #5a7486;
}

.buzzen-memorial-page .buzzen-memorial-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.buzzen-memorial-page .buzzen-memorial-card-body p {
    min-height: 40px;
    color: #50697b;
    font-size: 13px;
    line-height: 1.55;
}

.buzzen-memorial-page .buzzen-memorial-card-footer {
    display: flex;
    padding: 0 18px 18px;
}

.buzzen-memorial-page .buzzen-memorial-card-footer .btn {
    min-height: 36px;
    padding-inline: 13px;
}

.buzzen-memorial-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 34px 20px;
    border-style: dashed !important;
    text-align: center;
}

.buzzen-memorial-empty-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 4px;
    border-radius: 50%;
    background: #eef8ff;
    color: #1b79bd;
    font-size: 20px;
}

.buzzen-memorial-empty .btn {
    margin-top: 6px;
}

.buzzen-memorial-pagination {
    margin-top: 24px;
}

/* Memorial detail */
.buzzen-memorial-page .buzzen-memorial-detail-hero {
    margin-bottom: 18px;
    padding: 25px;
    border: 1px solid rgba(34, 103, 154, .13) !important;
    background:
        radial-gradient(circle at 94% 5%, rgba(255, 210, 74, .13) 0, rgba(255, 210, 74, 0) 28%),
        linear-gradient(135deg, #fff 0%, #eef7fc 100%);
    box-shadow: 0 13px 30px rgba(17, 71, 111, .09) !important;
}

.buzzen-memorial-page .buzzen-memorial-detail-hero::before {
    width: 5px;
}

.buzzen-memorial-page .buzzen-memorial-detail-photo {
    position: relative;
    overflow: hidden;
    border: 4px solid #fff;
    border-radius: var(--buzzen-radius-lg);
    background: #eaf2f7;
    box-shadow: 0 0 0 1px rgba(27, 121, 189, .14), 0 13px 26px rgba(17, 71, 111, .13);
}

.buzzen-memorial-page .buzzen-memorial-detail-photo img {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.buzzen-memorial-detail-photo-label {
    left: 12px;
    bottom: 12px;
    padding: 6px 10px;
}

.buzzen-memorial-detail-copy {
    min-width: 0;
}

.buzzen-memorial-page .buzzen-memorial-detail-card h2 {
    margin-top: 2px;
    font-size: clamp(30px, 3.2vw, 42px);
}

.buzzen-memorial-detail-realname {
    margin-top: 4px !important;
    font-size: 14px !important;
}

.buzzen-memorial-detail-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 17px 0;
}

.buzzen-memorial-detail-stats > div {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 11px 12px;
    border: 1px solid rgba(34, 103, 154, .12);
    border-radius: 12px;
    background: rgba(255, 255, 255, .80);
}

.buzzen-memorial-detail-stat-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 10px;
    background: #eaf5fc;
    color: #1b79bd;
}

.buzzen-memorial-detail-stats small,
.buzzen-memorial-detail-stats strong {
    display: block;
}

.buzzen-memorial-detail-stats small {
    margin-bottom: 1px;
    color: #78909f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.buzzen-memorial-detail-stats strong {
    color: #173f5c;
    font-size: 13px;
}

.buzzen-memorial-page .buzzen-memorial-bio {
    max-height: none;
    margin-top: 0;
    padding: 14px 16px;
    border-left: 4px solid #f5ad24 !important;
    border-radius: 0 12px 12px 0;
    background: rgba(255, 255, 255, .72) !important;
    color: #405d70;
    font-size: 14px;
    line-height: 1.72;
}

.buzzen-memorial-bio > :last-child {
    margin-bottom: 0;
}

.buzzen-memorial-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.buzzen-memorial-flash {
    margin-bottom: 16px;
}

.buzzen-memorial-pending-section,
.buzzen-memorial-compose-card {
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid rgba(34, 103, 154, .14);
    border-radius: var(--buzzen-radius-lg);
    background: #fff;
    box-shadow: var(--buzzen-shadow-card);
}

.buzzen-memorial-pending-section {
    padding: 17px 18px 18px;
    background: linear-gradient(135deg, #fffdf4 0%, #fff 58%);
    border-color: rgba(210, 162, 39, .24);
}

.buzzen-memorial-subsection-head {
    justify-content: flex-start;
    margin-bottom: 13px;
}

.buzzen-memorial-subsection-head h2 {
    font-size: 20px;
}

.buzzen-memorial-subsection-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 12px;
    background: #eaf5fc;
    color: #1b79bd;
    font-size: 16px;
}

.buzzen-memorial-pending-section .buzzen-memorial-subsection-icon {
    background: #fff5cf;
    color: #aa7611;
}

.buzzen-memorial-page .buzzen-memorial-comments-section {
    margin-top: 18px;
    border: 1px solid rgba(34, 103, 154, .14);
    border-radius: var(--buzzen-radius-lg);
}

.buzzen-memorial-page .buzzen-memorial-comments-header.buzzen-v5-section-header {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 15px 18px;
    background: linear-gradient(135deg, #fbfdff 0%, #f1f8fd 100%);
}

.buzzen-memorial-page .buzzen-memorial-comments-header h2 {
    font-size: 22px;
}

.buzzen-memorial-page .buzzen-memorial-comments-body {
    padding: 17px 18px 18px;
}

.buzzen-memorial-page .buzzen-memorial-comments-list {
    display: grid;
    gap: 10px;
}

.buzzen-memorial-page .buzzen-memorial-comment {
    gap: 12px;
    margin: 0;
    padding: 14px;
    border: 1px solid rgba(34, 103, 154, .11);
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 5px 14px rgba(17, 71, 111, .04);
}

.buzzen-memorial-page .buzzen-memorial-comment.is-pending {
    border-color: rgba(210, 162, 39, .25);
    background: #fffdf5;
}

.buzzen-memorial-page .buzzen-memorial-comment-avatar {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px rgba(27, 121, 189, .14);
}

.buzzen-memorial-comment-author {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
}

.buzzen-memorial-pending-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 7px;
    border-radius: var(--buzzen-radius-pill);
    background: #fff1bd;
    color: #8b620d;
    font-size: 9.5px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.buzzen-memorial-comment-delete {
    margin-top: 8px;
}

.buzzen-memorial-page .buzzen-memorial-older-comments {
    padding: 10px 11px;
    background: #f8fbfd;
}

.buzzen-memorial-page .buzzen-memorial-older-comments summary {
    color: #31566d;
    font-size: 12.5px;
}

.buzzen-memorial-page .buzzen-memorial-empty-comment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 26px 18px;
    text-align: center;
}

.buzzen-memorial-page .buzzen-memorial-empty-comment > i {
    margin-bottom: 3px;
    color: #1b79bd;
    font-size: 22px;
}

.buzzen-memorial-page .buzzen-memorial-empty-comment strong {
    color: #244b67;
}

.buzzen-memorial-compose-card {
    padding: 18px;
}

.buzzen-memorial-page .buzzen-memorial-comment-form {
    margin: 0;
    padding: 0;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.buzzen-memorial-page .buzzen-memorial-comment-form textarea {
    min-height: 130px;
    resize: vertical;
}

.buzzen-memorial-comment-form-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 7px 1px 12px;
    color: #718797;
    font-size: 11.5px;
}

.buzzen-memorial-signin-card {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 15px 17px;
    border: 1px solid rgba(34, 103, 154, .14);
    border-radius: var(--buzzen-radius-lg);
    background: linear-gradient(135deg, #fff 0%, #f5faff 100%);
    box-shadow: var(--buzzen-shadow-card);
}

.buzzen-memorial-signin-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 12px;
    background: #eaf5fc;
    color: #1b79bd;
}

.buzzen-memorial-signin-card div {
    min-width: 0;
    flex: 1 1 auto;
}

.buzzen-memorial-signin-card strong,
.buzzen-memorial-signin-card span {
    display: block;
}

.buzzen-memorial-signin-card strong {
    color: #244b67;
    font-size: 13px;
}

.buzzen-memorial-signin-card span {
    margin-top: 2px;
    color: #718797;
    font-size: 12px;
}

@media (max-width: 991.98px) {
    .buzzen-memorial-search-grid {
        grid-template-columns: minmax(0, 1fr) minmax(220px, .8fr);
    }

    .buzzen-memorial-search-submit {
        grid-column: 1 / -1;
    }

    .buzzen-memorial-search-submit .btn {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .buzzen-memorial-page .buzzen-memorial-panel.buzzen-v5-shell {
        padding: 15px 14px 22px;
    }

    .buzzen-memorial-search-grid,
    .buzzen-memorial-detail-stats {
        grid-template-columns: 1fr;
    }

    .buzzen-memorial-search-head,
    .buzzen-memorial-results-head {
        align-items: flex-start;
    }

    .buzzen-memorial-page .buzzen-memorial-detail-hero {
        padding: 19px;
    }

    .buzzen-memorial-page .buzzen-memorial-detail-photo img {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 575.98px) {
    .buzzen-memorial-help,
    .buzzen-memorial-search-head,
    .buzzen-memorial-results-head,
    .buzzen-memorial-signin-card {
        flex-direction: column;
    }

    .buzzen-memorial-search-head .btn,
    .buzzen-memorial-signin-card .btn {
        width: 100%;
    }

    .buzzen-memorial-result-count {
        margin-top: 2px;
    }

    .buzzen-memorial-page .buzzen-memorial-comment {
        display: block;
    }

    .buzzen-memorial-page .buzzen-memorial-comment-avatar {
        margin-bottom: 9px;
    }

    .buzzen-memorial-page .buzzen-memorial-comment-topline,
    .buzzen-memorial-comment-form-meta {
        display: block;
    }

    .buzzen-memorial-page .buzzen-memorial-comment-date,
    .buzzen-memorial-comment-form-meta [data-memorial-counter] {
        display: block;
        margin-top: 4px;
    }

    .buzzen-memorial-detail-actions .btn {
        width: 100%;
    }
}
