/* ============================================
   Global
   ============================================ */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #111;
}

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

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

[data-current-avatar],
.user-avatar,
.user-entry {
    opacity: 0;
}

[data-current-avatar].avatar-ready,
.user-avatar.avatar-ready,
.user-entry.avatar-ready {
    opacity: 1;
}

button,
input,
textarea {
    font: inherit;
}

header,
.main-header,
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    transition: transform 0.3s ease;
    box-shadow: none;
}

header.hide,
.main-header.hide,
.site-header.is-hidden {
    transform: translateY(-100%);
}

footer,
.simple-footer {
    background: #f5f5f5;
    padding: 20px;
    text-align: center;
    color: #888;
    font-size: 14px;
    margin-top: 40px;
}

/* ============================================
   Desktop Header
   ============================================ */
@media (min-width: 769px) {
    .header-container,
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 34px;
        max-width: 1400px;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
        position: relative;
    }

    .logo,
    .brand-mark {
        height: 45px;
        width: auto;
        flex-shrink: 0;
        border-radius: 0;
        background: none;
    }

    .brand,
    .logo-link {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-shrink: 0;
        margin-left: -6px;
    }

    .brand-copy strong {
        font-size: 20px;
        font-weight: 800;
        color: #1d2743;
        white-space: nowrap;
    }

    .brand-copy span {
        display: none;
    }
    
    nav,
    .site-nav,
    .main-nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 12px;
        border: 1px solid #e6e6e6;
        border-radius: 999px;
        background: #ffffff;
        box-shadow: none;
    }

    nav a,
    .site-nav a,
    .main-nav a {
        color: #555;
        text-decoration: none;
        font-weight: 700;
        font-size: 20px;
        transition: all 0.3s ease;
        padding: 14px 26px;
        border-radius: 999px;
        white-space: nowrap;
    }
    
    nav a:hover,
    .site-nav a:hover,
    .main-nav a:hover {
        color: #16213E;
        background: #f5f5f5;
    }
    
    nav a.current,
    .site-nav a.is-active,
    .main-nav a.active,
    .main-nav a.current {
        color: #fff;
        font-weight: 700;
        background: #16213E;
        box-shadow: none;
    }

    .user-area,
    .header-user {
        flex-shrink: 0;
        margin-right: -4px;
    }
    
    .user-avatar,
    .user-entry {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        cursor: pointer;
        transition: transform 0.2s, opacity 0.2s;
        border: 1px solid rgba(22, 33, 62, 0.12);
        background: #fff;
        padding: 0;
        overflow: hidden;
        display: block;
        box-sizing: border-box;
    }
    
    .user-avatar:hover,
    .user-entry:hover {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* ============================================
   Mobile Header
   ============================================ */
@media (max-width: 768px) {
    .header-container,
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 10px 12px;
        max-width: 1400px;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
    }
    
    .logo,
    .brand-mark {
        height: 30px;
        width: auto;
        margin-left: 5px;
        border-radius: 0;
        background: none;
    }

    .brand,
    .logo-link {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-left: -4px;
    }

    .brand-copy strong {
        font-size: 14px;
        font-weight: 800;
        color: #1d2743;
    }

    .brand-copy span {
        display: none;
    }

    nav,
    .site-nav,
    .main-nav {
        display: flex;
        justify-content: center;
        gap: 6px;
        padding: 6px;
        border: 1px solid #e6e6e6;
        border-radius: 999px;
        background: #ffffff;
        box-shadow: none;
    }
    
    nav a,
    .site-nav a,
    .main-nav a {
        color: #333;
        text-decoration: none;
        font-weight: bold;
        font-size: 14px;
        transition: all 0.3s ease;
        padding: 10px 12px;
        border-radius: 20px;
        white-space: nowrap;
    }
    
    nav a:hover,
    .site-nav a:hover,
    .main-nav a:hover {
        color: #16213E;
    }
    
    nav a.current,
    .site-nav a.is-active,
    .main-nav a.active,
    .main-nav a.current {
        background-color: #16213E;
        color: #fff;
    }
    
    .user-area,
    .header-user {
        flex-shrink: 0;
        margin-right: -3px;
    }
    
    .user-avatar,
    .user-entry {
        width: 42px;
        height: 42px;
        margin-right: 5px;
        border-radius: 50%;
        object-fit: cover;
        cursor: pointer;
        border: 1px solid rgba(22, 33, 62, 0.12);
        background: #fff;
        padding: 0;
        display: block;
        overflow: hidden;
        box-sizing: border-box;
    }
}

/* ============================================
   Shared Sections
   ============================================ */
section {
    padding-top: 100px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
}

#forum-page {
    padding-top: 100px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
    background: #ffffff;
}

#home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    background: #ffffff;
}

.department-card {
    display: block;
    width: 60%;
    max-width: 500px;
    margin: 0 auto;
    cursor: pointer;
    text-decoration: none;
    position: relative;
}

.department-card img {
    width: 100%;
    border-radius: 16px;
    transition: transform 0.3s, filter 0.3s;
    display: block;
    box-shadow: none;
}

.department-card:hover img {
    transform: scale(1.02);
    filter: brightness(0.7);
}

.department-card .hover-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    opacity: 0;
    transition: opacity 0.3s;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    white-space: nowrap;
}

.department-card:hover .hover-text {
    opacity: 1;
}

.mobile-text {
    display: none;
}

.about-entry-link {
    display: inline-flex;
    margin-top: 16px;
    color: #5f6678;
    font-size: 15px;
    font-weight: 700;
}

.post-avatar-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.plan-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: min(100%, 760px);
    max-width: 760px;
    margin: 40px auto 0;
    box-sizing: border-box;
}

.plan-card {
    width: 100%;
    padding: 52px 38px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(22, 33, 62, 0.08);
    box-sizing: border-box;
    overflow: hidden;
}

.plan-link {
    flex-shrink: 0;
    width: 200px;
}

.plan-link:hover {
    transform: scale(1.02);
}

.plan-img {
    width: 100%;
    border-radius: 16px;
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.plan-text {
    flex: 1;
    text-align: left;
    width: 100%;
}

.plan-title {
    font-size: 30px;
    font-weight: 800;
    color: #de6b43;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.plan-desc {
    font-size: 18px;
    color: #6c7280;
    font-weight: 500;
}

.plan-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 14px 24px;
    border-radius: 999px;
    background: #16213E;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    min-width: 220px;
}

body.editor-open .main-header,
body.editor-open .site-header,
body.editor-open header,
body.drawer-open .main-header,
body.drawer-open .site-header,
body.drawer-open header {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .department-card .hover-text {
        display: none;
    }

    .mobile-text {
        display: block;
        text-align: center;
        margin-top: 12px;
        font-size: 26px;
        font-weight: bold;
        color: #333;
    }
    
    .department-card {
        width: 80%;
        max-width: 350px;
    }
    
    .plan-wrapper {
        gap: 14px;
        margin: 30px auto 0;
        padding: 0 12px;
        width: min(100%, 100%);
    }
    
    .plan-link {
        width: 140px;
    }

    .plan-card {
        padding: 26px 18px;
        border-radius: 22px;
    }

    .plan-text {
        text-align: left;
    }
    
    .plan-title {
        font-size: 20px;
        line-height: 1.28;
        word-break: break-word;
    }
    
    .plan-desc {
        font-size: 14px;
        line-height: 1.55;
    }

    .plan-cta {
        width: auto;
        min-width: 0;
        max-width: 220px;
        margin-top: 14px;
        padding: 13px 16px;
        justify-content: center;
        font-size: 16px;
    }

    .plan-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}

#news {
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    display: block;
    width: 400px;
    margin: 30px auto;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    background: #f5f5f5;
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s, background 0.3s;
    border: 1px solid #e0e0e0;
}

.news-card:hover {
    background: #e8e8e8;
    transform: translateY(-8px);
}

.news-card p {
    color: #333;
    font-size: 26px;
    margin-bottom: 12px;
}

.news-card small {
    display: block;
    margin-top: 10px;
    font-size: 18px;
    color: #666;
}

@media (max-width: 768px) {
    .news-card {
        width: 90%;
        max-width: 350px;
        padding: 20px;
    }
    .news-card p {
        font-size: 20px;
    }
    .news-card small {
        font-size: 14px;
    }
}

#about {
    max-width: 1000px;
    margin: 0 auto;
}

#about h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: left;
    color: #111;
}

#about p {
    font-size: 22px;
    line-height: 1.8;
    color: #333;
}

@media (max-width: 768px) {
    #about h2 {
        font-size: 32px;
    }
    #about p {
        font-size: 18px;
    }
}

#profile-page,
#members-page {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 100px;
}

.profile-top,
.members-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.profile-main-title,
.members-main-title {
    display: flex;
    align-items: center;
    font-size: 80px;
    font-weight: bold;
    margin-bottom: 10px;
    justify-content: center;
    letter-spacing: 4px;
}

.profile-title-logo,
.member-title-logo {
    width: 80px;
    height: 80px;
    margin-right: 16px;
}

.profile-main-img,
.members-main-img {
    width: 90%;
    max-width: 700px;
    border-radius: 16px;
    margin-bottom: 30px;
    display: block;
}

.profile-box {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 24px;
    color: #111;
    line-height: 2.1;
}

.profile-box p {
    font-size: 16px;
    color: #555;
    margin-bottom: 28px;
    text-align: justify;
}

.member-link {
    color: #0066cc;
    text-decoration: none !important;
    font-weight: normal;
}

.member-link:hover,
.member-link:visited {
    text-decoration: none !important;
    color: #0066cc;
}

.members-container,
.member-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.member-card,
.member-item {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.member-card img,
.member-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 12px;
}

.member-card h3,
.member-item h3 {
    font-size: 18px;
    margin: 6px 0 4px;
    color: #111 !important;
}

.member-card p,
.member-item p {
    font-size: 16px;
    margin: 2px 0 0;
    color: #666;
}

.member-card-link {
    text-decoration: none;
    display: block;
}

.member-card-link:hover .member-card {
    transform: translateY(-5px);
    background: #eeeeee;
}

.member-card-link .member-card h3 {
    color: #111 !important;
}

.member-card-link .member-card p {
    color: #666;
}

.page-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.page-nav-item {
    font-size: 28px;
    font-weight: 500;
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
    padding-bottom: 4px;
    cursor: pointer;
}

.page-nav-item:hover {
    color: #555;
}

.page-nav-item.active {
    color: #111;
    font-weight: 600;
    border-bottom: 2px solid #111;
}

@media (max-width: 768px) {
    #profile-page,
    #members-page {
        padding-top: 120px;
    }
    
    .profile-main-title,
    .members-main-title {
        font-size: 52px;
    }
    
    .profile-title-logo,
    .member-title-logo {
        width: 52px;
        height: 52px;
    }
    
    .profile-main-img,
    .members-main-img {
        max-width: 550px;
    }
    
    .profile-box {
        margin: 30px auto;
        padding: 0 16px;
    }
    
    .profile-box p {
        font-size: 14px;
        line-height: 1.8;
    }
    
    .members-container,
    .member-gallery {
        gap: 10px;
    }
    
    .member-card h3,
    .member-item h3 {
        font-size: 12px;
    }
    
    .member-card p,
    .member-item p {
        font-size: 10px;
    }
    
    .member-card,
    .member-item {
        padding: 8px;
    }
    
    .page-nav {
        gap: 30px;
        margin-top: 15px;
    }
    
    .page-nav-item {
        font-size: 22px;
    }
}

/* ============================================
   Auth / Account
   ============================================ */
body.auth-page {
    background: #ffffff;
}

.auth-shell {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
}

.form-card {
    width: min(480px, 100%);
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.form-content {
    padding: 18px 20px;
    background: transparent;
}

.auth-tabs {
    display: inline-flex;
    gap: 8px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(22, 33, 62, 0.05);
    margin-bottom: 18px;
}

.auth-tab {
    padding: 10px 16px;
    border-radius: 999px;
    color: #777;
    font-weight: 700;
}

.auth-tab.is-active {
    background: #16213E;
    color: #fff;
}

.field {
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
}

.field label {
    font-size: 14px;
    font-weight: 700;
}

.field input,
.field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 24px;
    box-sizing: border-box;
}

.button,
.button-secondary,
.ghost-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 22px;
    border: none;
    border-radius: 32px;
    cursor: pointer;
}

.button {
    background: #16213E;
    color: #fff;
}

.button-secondary {
    background: rgba(22, 33, 62, 0.08);
    color: #16213E;
}

.ghost-button {
    background: transparent;
    border: 1px solid rgba(22, 33, 62, 0.12);
    color: #16213E;
}

.status-text,
.helper-text,
.lead,
.form-intro p,
.profile-meta p {
    color: #6c7280;
    line-height: 1.65;
}

.status-text.is-error {
    color: #d95032;
}

.status-text.is-success {
    color: #21764f;
}

.profile-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 20px;
    padding-top: 110px;
}

.profile-card,
.section-card,
.mini-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(22, 33, 62, 0.08);
}

.profile-card,
.section-card {
    padding: 28px;
}

.profile-header {
    display: flex;
    gap: 18px;
    align-items: center;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-name {
    font-size: 32px;
    margin: 0 0 8px;
}

.profile-pill {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(22, 33, 62, 0.08);
    color: #16213E;
    font-size: 14px;
    font-weight: 700;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.stat-box {
    padding: 18px;
    border-radius: 18px;
    background: #f5f5f5;
    text-align: center;
}

.stat-box strong {
    display: block;
    font-size: 24px;
}

.timeline {
    display: grid;
    gap: 12px;
}

.mini-card {
    padding: 16px;
}

.tag {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(22, 33, 62, 0.08);
    color: #16213E;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .form-card,
    .profile-grid {
        grid-template-columns: 1fr;
    }
}

.page-main {
    padding-top: 118px;
    padding-bottom: 72px;
    padding-left: 20px;
    padding-right: 20px;
}

.news-page-main {
    padding-top: 22px;
}

.about-page-main {
    padding-top: 96px;
    padding-bottom: 24px;
}

.about-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}

.section-kicker {
    display: inline-flex;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(22, 33, 62, 0.08);
    color: #16213E;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-card h1 {
    margin: 18px 0 14px;
    font-size: 40px;
    line-height: 1.2;
}

.site-shell {
    max-width: 1120px;
    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(22, 33, 62, 0.08);
    color: #16213E;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-grid,
.vote-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 20px;
}

.hero-card,
.vote-panel {
    position: relative;
    overflow: hidden;
}

.hero-card::before,
.vote-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 244, 232, 0.78), rgba(246, 248, 255, 0.92));
    pointer-events: none;
}

.hero-card > *,
.vote-panel > * {
    position: relative;
    z-index: 1;
}

.hero-card h1,
.vote-panel h1 {
    margin: 18px 0 14px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero-card h3,
.vote-panel h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.news-lead,
.vote-lead {
    margin: 0;
    color: #5e6474;
    font-size: 16px;
    line-height: 1.85;
}

.hero-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.meta-chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: #16213E;
    font-size: 14px;
    font-weight: 700;
}

.news-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
    gap: 20px;
    margin-top: 22px;
}

.news-list {
    display: grid;
    gap: 16px;
}

.news-story {
    display: block;
    padding: 22px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(22, 33, 62, 0.06);
    color: inherit;
    transition: transform 0.24s ease, border-color 0.24s ease;
}

.news-story:hover {
    transform: translateY(-4px);
    border-color: rgba(22, 33, 62, 0.16);
}

.news-story-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.news-story time,
.news-story-meta span {
    display: inline-flex;
    color: #9197a7;
    font-size: 13px;
    font-weight: 700;
}

.news-story h2 {
    margin: 0 0 8px;
    font-size: 24px;
}

.news-story p {
    margin: 0;
    color: #636a7a;
    line-height: 1.75;
}

.news-detail-header .main-nav {
    display: none;
}

.news-detail-header-container {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 34px;
    width: 100%;
    box-sizing: border-box;
}

.news-back-link {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 33, 62, 0.06);
    color: #16213E;
    border: none;
    cursor: pointer;
}

.news-detail-brand {
    display: grid;
    justify-items: center;
    gap: 2px;
    color: #16213E;
}

.news-detail-brand strong {
    font-size: 20px;
}

.news-detail-brand span {
    color: #8c93a3;
    font-size: 13px;
    font-weight: 700;
}

.news-detail-main {
    max-width: 820px;
    margin: 0 auto;
    padding-top: 118px;
}

.news-detail-card {
    padding: 28px;
}

.news-detail-card h1 {
    margin: 0 0 18px;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.16;
}

.news-detail-card p {
    margin: 0;
    color: #4f5667;
    font-size: 18px;
    line-height: 1.9;
    white-space: pre-wrap;
}

.news-detail-image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 22px;
    margin: 0 0 22px;
    background: #f1f3f8;
}

.news-side-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.news-side-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #f7f8fb;
    color: #2a3142;
}

.news-side-item span:last-child {
    color: #9aa1b0;
    font-size: 13px;
    white-space: nowrap;
}

.vote-layout {
    align-items: start;
}

.vote-steps {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.vote-steps li {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    color: #2f3647;
    line-height: 1.7;
}

.inline-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.profile-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 20px;
}

.profile-page-main {
    padding-top: 94px;
}

.detail-profile-main {
    padding-top: 118px;
}

.profile-simple-card,
.profile-posts-section {
    background: #f4f5f9;
    border-radius: 28px;
    padding: 22px;
    box-shadow: 0 18px 40px rgba(22, 33, 62, 0.08);
}

.profile-simple-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.profile-simple-identity {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-name-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
}

.profile-name-row.no-title {
    gap: 0;
}

.profile-name-row.no-title .profile-inline-title {
    display: none !important;
}

.profile-inline-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 22px;
}

.profile-inline-stat {
    border: none;
    background: #eceff5;
    padding: 14px 8px;
    border-radius: 18px;
    cursor: pointer;
    color: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.profile-inline-stat.static {
    cursor: default;
}

.profile-inline-stat strong {
    display: block;
    font-size: 24px;
    margin-bottom: 4px;
}

.profile-inline-stat span {
    color: #7e8596;
    font-size: 14px;
}

.profile-posts-section {
    margin-top: 18px;
    box-shadow: 0 22px 52px rgba(22, 33, 62, 0.12);
    border: 1px solid rgba(22, 33, 62, 0.06);
}

.profile-main-column,
.profile-side-column {
    display: grid;
    gap: 20px;
    align-content: start;
}

.profile-hero-card {
    position: relative;
    overflow: hidden;
}

.profile-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 247, 236, 0.9), rgba(244, 247, 255, 0.96));
    pointer-events: none;
}

.profile-hero-card > * {
    position: relative;
    z-index: 1;
}

.profile-top-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.icon-circle-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    color: #16213E;
    cursor: pointer;
    position: relative;
    z-index: 3;
    pointer-events: auto;
}

.icon-circle-btn.danger {
    color: #d64d42;
}

.profile-identity {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-avatar-large {
    width: 116px;
    height: 116px;
    border: 3px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 36px rgba(22, 33, 62, 0.08);
}

.profile-inline-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(22, 33, 62, 0.09);
    color: #16213E;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.profile-inline-title[hidden] {
    display: none !important;
}

.profile-name {
    margin: 0;
    text-align: center;
}

.profile-verify-line {
    margin: 12px 0 0;
    color: #8b93a5;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.profile-follow-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.follow-stat-box,
.mini-stat {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    text-align: center;
}

.follow-stat-box strong,
.mini-stat strong {
    display: block;
    font-size: 28px;
    margin-bottom: 6px;
}

.follow-stat-box span,
.mini-stat span {
    color: #7a8293;
    font-size: 14px;
}

.profile-mini-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 14px;
}

.section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.section-head h2,
.section-head h3 {
    margin: 12px 0 0;
}

.profile-post-list {
    display: grid;
    gap: 16px;
}

.detail-follow-btn {
    margin-top: 14px;
    min-width: 108px;
}

.profile-post-card {
    border: 1px solid rgba(22, 33, 62, 0.05);
    background: #ffffff;
    box-shadow: 0 16px 32px rgba(22, 33, 62, 0.08);
    border-radius: 24px;
    padding: 16px 16px 14px;
}

.profile-post-copy {
    margin-bottom: 10px;
}

.profile-post-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #161b26;
}

.hash-link {
    color: #2563eb;
    font-weight: 600;
}

.profile-post-card .post-image {
    display: block;
    width: min(100%, 220px);
    margin-top: 0;
    aspect-ratio: 1 / 1;
    max-height: 220px;
    object-fit: cover;
    background: transparent;
    border-radius: 18px;
}

.admin-scroll-list {
    max-height: 320px;
    overflow-y: auto;
    padding-right: 4px;
}

.admin-checkbox-list {
    display: grid;
    gap: 10px;
    max-height: 220px;
    overflow-y: auto;
    padding: 10px 12px;
    border: 1px solid rgba(22, 33, 62, 0.08);
    border-radius: 18px;
    background: #fff;
}

.admin-checkbox-list.admin-scroll-list {
    max-height: 260px;
}

.admin-checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #16213E;
}

.admin-checkbox-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #16213E;
}

.profile-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(22, 33, 62, 0.08);
}

.profile-post-action-row {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
}

.profile-post-delete {
    border: 1px solid rgba(214, 77, 66, 0.18);
    background: rgba(214, 77, 66, 0.08);
    color: #d64d42;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.profile-post-time {
    color: #8d95a4;
    font-size: 13px;
}

.profile-post-stats {
    display: flex;
    align-items: center;
    gap: 14px;
}

.profile-post-stat {
    color: #5f6778;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.social-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.social-user-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 20px;
    background: #f7f8fb;
}

.social-user-main {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.social-user-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(22, 33, 62, 0.08);
    background: #fff;
}

.social-user-copy {
    display: grid;
    gap: 4px;
}

.social-user-copy strong {
    font-size: 16px;
}

.social-user-copy span,
.social-user-copy em {
    color: #788091;
    font-size: 13px;
    font-style: normal;
}

.follow-btn {
    min-width: 78px;
    border: none;
    border-radius: 999px;
    padding: 10px 14px;
    background: #16213E;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.follow-btn.is-following {
    background: rgba(22, 33, 62, 0.09);
    color: #16213E;
}

.profile-rule-list {
    margin: 18px 0 0;
    padding-left: 18px;
    color: #697182;
    line-height: 1.85;
}

.profile-rule-list li + li {
    margin-top: 10px;
}

.profile-empty-text {
    padding: 18px 2px 4px;
}

.profile-modal {
    position: fixed;
    inset: 0;
    z-index: 1600;
    display: grid;
    place-items: center;
    padding: 18px;
    box-sizing: border-box;
}

.profile-modal[hidden] {
    display: none;
}

.profile-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 15, 24, 0.28);
    backdrop-filter: blur(8px);
}

.profile-modal-panel {
    position: relative;
    z-index: 1;
    width: min(392px, calc(100vw - 40px));
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    padding: 18px;
    box-shadow: 0 24px 60px rgba(14, 18, 31, 0.18);
}

.profile-modal-panel-compact {
    width: min(340px, calc(100vw - 44px));
}

.profile-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.profile-modal-head-centered {
    justify-content: center;
    margin-bottom: 10px;
}

.modal-close-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #f1f3f8;
    cursor: pointer;
}

.profile-form {
    display: grid;
    gap: 12px;
}

.logout-copy {
    text-align: center;
    margin: 0 0 18px;
}

.logout-actions {
    display: flex;
    gap: 10px;
}

.logout-actions > * {
    flex: 1;
}

.danger-button {
    background: #16213E;
}

body.profile-modal-open {
    overflow: hidden;
}

.vote-page {
    min-height: 100vh;
    margin: 0;
}

.vote-page-boys {
    background: #F4F8FF;
}

.vote-page-girls {
    background: #FFF7FB;
}

.vote-shell {
    max-width: 860px;
    margin: 0 auto;
    padding: 36px 20px 56px;
}

.vote-header {
    position: static;
    top: auto;
    left: auto;
    width: auto;
    z-index: auto;
    display: grid;
    grid-template-columns: 54px minmax(0, 500px) 54px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 34px;
    background: transparent;
    box-shadow: none;
    transform: none;
}

.vote-back-btn {
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #16213E;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(22, 33, 62, 0.08);
}

.vote-switch {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    width: min(100%, 100%);
    min-width: 0;
    padding: 4px;
    border-radius: 999px;
    background: transparent !important;
    border: 1px solid rgba(22, 33, 62, 0.08);
    justify-self: center;
    box-shadow: none;
}

.vote-switch-btn {
    border: none;
    background: transparent;
    padding: 12px 10px;
    border-radius: 999px;
    color: #6e7586;
    font-weight: 800;
    font-size: 17px;
}

.vote-switch-btn.is-active {
    background: #16213E;
    color: #fff;
}

.vote-avatar-link {
    display: flex;
    justify-content: flex-end;
}

.vote-header-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    border: 1px solid rgba(22, 33, 62, 0.12);
}

.vote-board {
    border-radius: 34px;
    padding: 4px 0 28px;
    background: transparent;
}

.vote-board-title {
    width: min(100%, 340px);
    margin: 0 auto 24px;
}

.vote-power-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #5f6778;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 42px;
}

.vote-power-line strong {
    color: #111;
    font-size: 20px;
}

.vote-champion {
    margin-bottom: 18px;
}

.vote-champion-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(22, 33, 62, 0.08);
}

.vote-champion-avatar-wrap {
    position: relative;
}

.vote-champion-avatar {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    object-fit: cover;
}

.vote-crown {
    position: absolute;
    right: -2px;
    top: -6px;
    font-size: 24px;
}

.vote-champion-copy {
    display: grid;
    gap: 6px;
}

.vote-rank-label {
    color: #94a0b6;
    font-size: 13px;
    font-weight: 700;
}

.vote-champion-copy strong {
    font-size: 28px;
}

.vote-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.vote-member-card {
    background: #fff;
    border-radius: 24px;
    padding: 14px 12px;
    text-align: center;
    box-shadow: 0 14px 28px rgba(22, 33, 62, 0.06);
}

.vote-member-avatar-link {
    display: inline-flex;
    margin-bottom: 10px;
}

.vote-member-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
}

.vote-member-name {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}

.vote-member-rank {
    display: block;
    min-height: 18px;
    margin-bottom: 10px;
    color: #9ba4b5;
    font-size: 12px;
    font-weight: 700;
}

.vote-member-btn {
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 10px 0;
    color: #fff;
    font-weight: 800;
}

.vote-member-btn.is-voted,
.vote-member-btn:disabled {
    opacity: 0.55;
}

.vote-rules-modal {
    position: fixed;
    inset: 0;
    z-index: 1800;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgba(12, 15, 24, 0.28);
    backdrop-filter: blur(10px);
}

.vote-rules-panel {
    width: min(420px, calc(100vw - 32px));
    background: rgba(255, 255, 255, 0.98);
    border-radius: 28px;
    padding: 22px 18px 18px;
    box-shadow: 0 22px 50px rgba(14, 18, 31, 0.18);
}

.vote-rules-head {
    text-align: center;
    margin-bottom: 16px;
    font-size: 24px;
}

.vote-rules-body {
    color: #5f6778;
    font-size: 14px;
    line-height: 1.75;
}

.vote-rules-body p {
    margin: 0 0 10px;
}

.vote-ack-btn {
    width: 100%;
    margin-top: 10px;
    border: none;
    border-radius: 999px;
    padding: 14px 0;
    background: #16213E;
    color: #fff;
    font-weight: 800;
}

@media (max-width: 900px) {
    .page-main {
        padding-top: 104px;
        padding-bottom: 56px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-grid,
    .news-grid,
    .vote-layout,
    .profile-layout {
        grid-template-columns: 1fr;
    }

    .hero-card h1,
    .vote-panel h1 {
        font-size: 34px;
    }

    .profile-follow-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .profile-inline-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .vote-shell {
        padding: 12px 12px 36px;
    }

    .vote-header {
        grid-template-columns: 44px minmax(0, 1fr) 46px;
        gap: 12px;
        margin-bottom: 14px;
    }

    .vote-back-btn {
        width: 44px;
        height: 44px;
    }

    .vote-switch-btn {
        padding: 13px 0;
        font-size: 15px;
    }

    .vote-header-avatar {
        width: 46px;
        height: 46px;
    }

    .vote-board {
        border-radius: 28px;
        padding: 0 0 22px;
    }

    .vote-board-title {
        width: min(100%, 280px);
        margin-bottom: 16px;
    }

    .vote-power-line {
        margin-bottom: 34px;
    }

    .vote-champion-card {
        padding: 14px;
        border-radius: 20px;
    }

    .vote-champion-avatar {
        width: 62px;
        height: 62px;
    }

    .vote-champion-copy strong {
        font-size: 24px;
    }

    .vote-grid {
        gap: 10px;
    }

    .vote-member-card {
        border-radius: 20px;
        padding: 12px 10px;
    }

    .vote-member-avatar {
        width: 72px;
        height: 72px;
    }

    .vote-member-name {
        font-size: 14px;
    }

    .vote-member-btn {
        padding: 9px 0;
        font-size: 14px;
    }

    .vote-rules-panel {
        width: min(100%, 360px);
        border-radius: 24px;
        padding: 18px 14px 14px;
    }

    .profile-page-main {
        padding-top: 82px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .profile-card,
    .section-card,
    .profile-simple-card,
    .profile-posts-section {
        padding: 18px 16px;
    }

    .profile-simple-top {
        margin-bottom: 10px;
    }

    .profile-avatar-large {
        width: 88px;
        height: 88px;
    }

    .profile-name-row {
        gap: 6px;
        margin-top: 10px;
    }

    .profile-name-row.no-title {
        gap: 0;
    }

    .profile-inline-title,
    .profile-name {
        font-size: 24px;
    }

    .profile-inline-title {
        padding: 5px 10px;
        font-size: 14px;
    }

    .profile-follow-stats,
    .profile-mini-stats {
        grid-template-columns: 1fr;
    }

    .profile-inline-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 18px;
    }

    .profile-inline-stat {
        padding: 12px 8px;
    }

    .profile-inline-stat strong {
        font-size: 22px;
    }

    .profile-inline-stat span {
        font-size: 13px;
    }

    .profile-posts-section {
        margin-top: 14px;
    }

    .profile-post-card {
        padding: 16px;
        border-radius: 20px;
    }

    .profile-post-text {
        font-size: 15px;
        line-height: 1.65;
    }

    .profile-post-footer {
        margin-top: 10px;
        padding-top: 10px;
    }

    .profile-post-card .post-image {
        max-height: 240px;
    }

    .profile-post-stats {
        gap: 10px;
    }

    .profile-post-stat,
    .profile-post-time {
        font-size: 13px;
    }

    .social-user-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .follow-btn {
        width: 100%;
    }

    .profile-modal {
        padding: 14px;
    }

    .profile-modal-panel,
    .profile-modal-panel-compact {
        width: min(100%, 330px);
        border-radius: 22px;
        padding: 16px 14px;
    }
}

.admin-page-main {
    padding-top: 120px;
    padding-bottom: 60px;
}

.admin-shell {
    display: grid;
    gap: 22px;
}

.admin-hero {
    background: linear-gradient(135deg, #f5f8ff, #fff6ef);
}

.admin-hero h1 {
    margin: 8px 0 10px;
    font-size: 40px;
    color: #16213E;
}

.admin-hero p {
    margin: 0;
    color: #63708a;
    line-height: 1.7;
}

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

.admin-card {
    display: grid;
    gap: 18px;
}

.admin-card h2 {
    margin: 0;
    font-size: 28px;
    color: #16213E;
}

.admin-card p {
    margin: 0;
    color: #6b7487;
    line-height: 1.7;
}

.admin-form,
.admin-stack {
    display: grid;
    gap: 14px;
}

.admin-inline-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.admin-inline-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.admin-form label,
.field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #22304f;
}

.admin-form input,
.admin-form select,
.admin-form textarea,
.field input,
.field textarea,
.field select {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d9deea;
    border-radius: 18px;
    padding: 13px 15px;
    background: #fff;
    color: #111;
}

.admin-form textarea,
.field textarea {
    min-height: 116px;
    resize: vertical;
}

.admin-form input[type="checkbox"] {
    width: auto;
}

.admin-check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4e5970;
    font-weight: 600;
}

.admin-member-order {
    min-height: 148px;
}

.admin-action-row,
.logout-actions {
    display: flex;
    gap: 12px;
}

.button,
.button-secondary,
.admin-button,
.vote-ack-btn,
.danger-button {
    border: none;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 800;
    cursor: pointer;
}

.button,
.admin-button,
.danger-button {
    background: #16213E;
    color: #fff;
}

.button-secondary {
    background: #eef1f7;
    color: #16213E;
}

.danger-button {
    background: #db5648;
}

.helper-text,
.status-text {
    color: #7a8397;
    line-height: 1.6;
    font-size: 14px;
}

.status-text.is-success {
    color: #1f8c56;
}

.status-text.is-error {
    color: #c2463a;
}

.admin-user-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 20px;
    background: #f6f8fc;
}

.admin-user-preview img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.admin-user-preview strong {
    display: block;
    font-size: 18px;
}

.admin-user-preview span {
    color: #6f7890;
    font-size: 14px;
}

.admin-title-preview {
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.admin-title-preview-copy {
    display: grid;
    gap: 4px;
}

.admin-title-preview-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-title-preview-row.is-empty {
    opacity: .72;
}

.admin-title-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.admin-title-name {
    font-size: 18px;
    font-weight: 800;
    color: #141922;
}

.admin-news-list,
.admin-post-list {
    display: grid;
    gap: 12px;
}

.admin-mini-card {
    border-radius: 20px;
    padding: 14px 16px;
    background: #f7f8fc;
}

.admin-mini-card strong {
    display: block;
    margin-bottom: 6px;
}

@media (max-width: 900px) {
    .admin-grid {
        grid-template-columns: 1fr;
    }

    .auth-shell {
        padding: 12px;
    }

    .form-content {
        padding: 24px 18px;
    }
}

@media (max-width: 640px) {
    .auth-shell {
        padding: 6px 10px;
    }

    .form-card {
        border-radius: 0;
    }

    .form-content {
        padding: 10px 6px;
    }

    .auth-tabs {
        margin-bottom: 10px;
        padding: 6px;
        gap: 6px;
    }

    .auth-tab {
        padding: 8px 12px;
        font-size: 14px;
    }

    .form-intro h1 {
        margin: 0 0 4px;
        font-size: 24px;
    }

    .form-intro p {
        margin: 0 0 8px;
        font-size: 12px;
        line-height: 1.45;
    }

    .field {
        gap: 6px;
        margin-bottom: 8px;
    }

    .field label {
        font-size: 13px;
    }

    .field input,
    .field textarea {
        padding: 10px 12px;
        border-radius: 20px;
        font-size: 14px;
    }

    .button,
    .button-secondary,
    .ghost-button {
        padding: 10px 16px;
        font-size: 15px;
    }

    .status-text {
        font-size: 12px;
        line-height: 1.4;
        margin-top: 10px !important;
    }

    .admin-page-main {
        padding-top: 108px;
        padding-bottom: 48px;
    }

    .news-page-main {
        padding-top: 10px;
    }

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

    .admin-inline-grid,
    .admin-inline-grid-3 {
        grid-template-columns: 1fr;
    }

    .admin-title-preview {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-title-preview-row {
        justify-content: flex-start;
    }

    .about-card h1 {
        font-size: 28px;
    }

    .about-card .lead {
        font-size: 14px;
        line-height: 1.65;
    }

    .admin-action-row,
    .logout-actions {
        flex-direction: column;
    }
}
