.back-link {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #111;
    text-decoration: none;
    font-weight: 600;
}

.back-link .material-symbols-outlined {
    font-size: 22px;
}

.back-link--white {
    color: #fff;
    opacity: 0.95;
}

.more-icon {
    font-size: 18px;
    line-height: 1;
}

/* =========================
   Post
========================= */
.post-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.post-empty {
    padding: 60px 0;
    text-align: center;
    font-size: 15px;
    color: #999;
}

.post-item {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    transition:
        transform 0.12s ease,
        box-shadow 0.12s ease,
        opacity 0.12s ease;
}

.post-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.post-left {
    min-width: 0;
    flex: 1;
}

.post-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
    margin: 0 0 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.post-desc {
    font-size: 16px;
    line-height: 1.55;
    color: #667085;
    margin: 0 0 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.post-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #98a2b3;
    font-size: 14px;
    flex-wrap: wrap;
    color: #111;
}

.post-right {
    width: 160px;
    flex: 0 0 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.consultant-page .consultant-avatar,
.consultant-page .consult-hero-avatar,
.consultant-edit-page .consultant-avatar,
.consultant-edit-page .consult-hero-avatar {
    border: 2px solid #fff;
}

.consultant-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #bff1df, #2bb8a4);
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 500;
    font-size: 24px;
}

.consultant-avatar img {
    background: #fff;
}

.avatar--green {
    background: radial-gradient(circle at 30% 30%, #bff1df, #2bb8a4);
    color: #fff;
}

.avatar--white {
    background: #fff;
    color: #22b573;
    border: 1px solid #e5e7eb;
}

.consultant-name {
    font-size: 15px;
    color: #475467;
    white-space: nowrap;
}

/* ÀÐÀº ±Û */
.post-item.is-read {
    background: #f1f3f6;
}

.post-item.is-read .post-title {
    color: #667085;
}
.post-item.is-read .post-meta {
    color: #98a2b3;
}

/* =========================
   Button
========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 44px;
    padding: 0 20px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.btn-outline {
    background: #fff;
    color: #06b7aa;
    border-color: #06b7aa;
}

.btn-outline:hover {
    background: rgba(6, 183, 170, 0.05);
}

.btn-light {
    background: #fff;
    color: #06b7aa;
    border-color: rgba(255, 255, 255, 0.65);
    padding: 0 30px;
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.92);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.8);
    padding: 0 30px;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.35);
}

.btn-primary {
    background: #06b7aa;
    color: #fff;
    border-color: #06b7aa;
}

.btn-primary:hover {
    background: #059f94;
    border-color: #059f94;
}

.btn-gray {
    background: #f2f4f7;
    color: #344054;
    border-color: #eaecf0;
    min-width: 112px;
    padding: 0 24px;
}

.btn-gray:hover {
    background: #e9edf2;
    border-color: #d8dee6;
}

.btn.wide {
    min-width: 140px;
}

.btn-sm {
    height: 38px;
    padding: 0 14px;
    font-size: 14px;
    border-radius: 8px;
}

.btn-lg {
    height: 48px;
    padding: 0 28px;
    font-size: 16px;
}

.btn-action {
    min-width: 120px;
}

.btn-edit,
.btn-delete,
.btn-save {
    height: 30px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid #e5e7eb;
    background: #fff;
    transition: all 0.2s ease;
}

.btn-edit:hover {
    background: #f3f4f6;
}

.btn-delete {
    color: #dc2626;
    border-color: #fecaca;
    flex-shrink: 0;
    white-space: nowrap;
}

.btn-delete:hover {
    background: #fef2f2;
}
.btn-save {
    background: #06b7aa;
    color: #fff;
    border-color: #06b7aa;
}

.btn-save:hover {
    background: #059f94;
    border-color: #059f94;
}

.form-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-list-item {
    display: flex;
    gap: 8px;
}

.btn-add {
    height: 30px;
    border: 1px dashed #cbd5e1;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
}

.btn-add:hover {
    background: #f1f5f9;
}

.btn-danger-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 38px;
    padding: 0 14px;

    font-size: 14px;
    font-weight: 500;

    color: #dc2626; /* »¡°­ ÅØ½ºÆ® */
    background: #fff; /* ¹è°æ ¾øÀ½ */
    border: 1px solid #fecaca; /* ¿¬ÇÑ »¡°­ Å×µÎ¸® */

    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-danger-line:hover {
    background: #fef2f2; /* hover »ìÂ¦ »¡°­ ¹è°æ */
}

/* =========================
   Badge / Pill
========================= */

.badge {
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
}

.badge-free {
    background: #12b7a6;
    color: #fff;
}

.badge-price {
    background: #0c88a8;
    color: #fff;
}

.badge-category {
    background: #f3f4f6;
    color: #334155;
}

.pill {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 12px;
}

.pill-teal {
    background: rgba(6, 183, 170, 0.12);
    color: #06b7aa;
}

.pill-orange {
    background: rgba(245, 158, 11, 0.16);
    color: #b45309;
}

/* =========================
   Tabs
========================= */

.tabs-wrap {
    position: relative;
    margin-bottom: 24px;
}

.tabs {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    border-bottom: 1px solid #e6e8eb;
}

.tab {
    border: 1px solid #e6e8eb;
    background: #fff;
    color: #111;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
}

.tab.is-active {
    background: #06b7aa;
    border-color: #06b7aa;
    color: #fff;
}

.tab-muted {
    color: #999;
}

/* =========================
   Meta
========================= */

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
}

.meta-item svg {
    width: 16px;
}

.meta-num {
    color: #98a2b3;
}

/* =========================
   Pagination
========================= */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.page-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    text-decoration: none;
    color: #555;
    border-radius: 50%;
    font-size: 16px;
    transition: 0.2s;
    font-weight: 600;
    cursor: pointer;
}

.page-number:hover {
    background: #ededed;
}

.page-number.active {
    background: #16b3a3;
    color: #fff;
    font-weight: 600;
}

.page-btn:hover {
    background: #ededed;
}

.page-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    transition: 0.2s;
}

.page-btn .material-symbols-rounded {
    font-size: 22px;
    line-height: 1;
}

/* ºñÈ°¼º »óÅÂ */
.page-btn.disabled {
    cursor: default;
    /* opacity: 0.45; */
    pointer-events: none;
    color: #999;
}

.ellipsis {
    padding: 0 6px;
    color: #999;
}


/* =========================
   Empty Box
========================= */
.empty-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 80px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    background: #fff;
    text-align: center;
}

.empty-box .material-symbols-outlined {
    font-size: 42px;
    color: #9ca3af;
}

.empty-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.empty-desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

/* =========================
   Toast
========================= */

.toast {
    position: fixed;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    background: rgba(17, 24, 39, 0.92);
    color: #fff;
    padding: 8px 15px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 13px;
    opacity: 0;
    visibility: hidden;
    transition: 0.18s ease;
    z-index: 3000;
    max-width: calc(100% - 32px);
    text-align: center;
}

.toast.is-show {
    opacity: 1;
    visibility: visible;
}

/* =========================
   Quick Card Badge
========================= */
.quick-title {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.quick-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

.quick-title:not(.has-new) .quick-badge {
    display: none;
}

/* =========================
   Post Admin Actions
========================= */

.post-actions-admin {
    margin-left: auto;
    display: flex;
    gap: 8px;
}

/* =========================
   Topbar 
========================= */

.topbar {
    background: #fff;
    border-bottom: 1px solid #eef0f3;
    padding: 10px 0;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* ÀÌ°Å Áß¿ä */
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    display: block;
    height: 32px;
    width: auto;
}

.topbar--sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* ¼öÁ¤ ¸ðµå »óÅÂ Ç¥½Ã */
.topbar-status {
    font-size: 13px;
    font-weight: 600;
    color: #0f766e;
    background: rgba(15, 118, 110, 0.1);
    padding: 4px 10px;
    border-radius: 999px;
}

/* =========================
   Form Controls
========================= */

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.form-input,
.form-textarea {
    width: 100%;
    border: 1px solid #dbe2ea;
    border-radius: 12px;
    background: #fff;
    padding: 12px 14px;
    font-size: 14px;
    color: #111827;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #0f766e;
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.08);
}

.form-textarea {
    resize: vertical;
    min-height: 88px;
    line-height: 1.6;
}

.form-help {
    margin-top: 8px;
    font-size: 12px;
    color: #64748b;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0, 0, 0, 0);
}

/* =========================
   Badge / Icon
========================= */

.badge-price {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.icon-wing {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.badge-price svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: block;
}

/* =========================
   Action Bar
========================= */
.edit-action-bar {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

/* =========================
   Avatar Actions
========================= */
.avatar-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.avatar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #d7dbe2;
    background: #fff;
}

.avatar-btn:hover {
    background: #f8f9fb;
}

.avatar-btn--danger {
    color: #dc2626;
    border-color: #fecaca;
}

.avatar-btn--danger:hover {
    background: #fef2f2;
}

.avatar-edit-btn,
.avatar-delete-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #d7dbe2;
    background: #fff;
}

.avatar-edit-btn:hover,
.avatar-delete-btn:hover {
    background: #f8f9fb;
}

.avatar-delete-btn {
    color: #dc2626;
    border-color: #fecaca;
    background: #fff;
}

.avatar-delete-btn:hover {
    background: #fef2f2;
}

/* =========================
   Modal
========================= */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.24s ease,
        visibility 0.24s ease;
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.45);
}

.modal-dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 32px);
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid #eef0f3;
}

.modal-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.modal-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #111827;
}

.modal-close .material-symbols-outlined {
    font-size: 20px;
    line-height: 1;
}

.modal-body {
    padding: 20px 18px 22px;
    text-align: center;
}

.modal-desc {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280;
}

/* =========================
   Modal Scroll Lock
========================= */
body.modal-open {
    overflow: hidden;
}

/* =========================
   Avatar (°øÅë)
========================= */
.avatar {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
}

/* ÀÌ¹ÌÁö ¾÷·Îµå »óÅÂ */
.avatar.has-image {
    background: #fff;
}

/* =========================
   Paid Post Purchase Modal
========================= */
.pay-modal-card {
    position: relative;
    width: 100%;
    max-width: 460px;
    padding: 20px 20px 24px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.pay-modal-head {
    text-align: center;
    margin-bottom: 20px;
}

.pay-modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: #ecfdf5;
    color: #12b7a6;
    font-size: 28px;
}

.pay-modal-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.pay-modal-desc {
    margin: 3px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}

.pay-product-card {
    padding: 18px;
    border: 1px solid #222;
    border-radius: 18px;
}

.pay-product-card .badge {
    height: 20px;
    padding: 0px 8px;
    font-size: 11px;
}

.pay-product-card .badge-price svg {
    width: 14px;
    height: 14px;
}

.pay-product-title {
    display: block;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 700;
    color: #111827;
}

.pay-product-meta {
    margin: 8px 0 0;
    font-size: 13px;
    color: #6b7280;
}

.pay-price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding: 16px 10px 4px;
}

.pay-price-label {
    font-size: 14px;
    color: #6b7280;
}

.pay-price {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 20px;
    font-weight: 800;
    color: #12b7a6;
    line-height: 1;
}

.pay-price-row {
    padding: 20px 10px 0px;
}

.pay-price-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pay-price-label {
    font-size: 15px;
    color: #374151;
}

.pay-price {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 700;
    color: #12b7a6;
}

.pay-price-sub {
    font-size: 12px;
    color: #9ca3af;
}

.wing-ico {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex: 0 0 auto;
}

.pay-wing-box {
    margin-top: 10px;
    padding: 13px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #f8fafc;
}

.pay-wing-row-block + .pay-wing-row-block {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.pay-wing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pay-wing-label {
    font-size: 14px;
    color: #6b7280;
}

.pay-wing-value {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
}

.pay-wing-sub {
    display: flex;
    gap: 8px;
    margin: 3px 0 0;
    font-size: 13px;
    color: #8a94a6;
}

.pay-wing-sub span + span::before {
    content: '/';
    margin: 0 8px 0 0;
    color: #c0c7d1;
}

.pay-wing-row-block.is-result .pay-wing-label {
    color: #111827;
    font-weight: 600;
}

.pay-wing-row-block.is-result .pay-wing-value {
    color: #12b7a6;
}

.pay-notice-list {
    margin: 15px 0 0;
    padding: 12px 16px;
    border-radius: 16px;
    background: #f8fafc;
}

.pay-notice-list li {
    position: relative;
    padding-left: 10px;
    font-size: 13px;
    line-height: 1.6;
    color: #6b7280;
}

.pay-notice-list li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    top: 0;
}

.pay-modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.pay-modal-actions .btn {
    flex: 1;
}

.modal-close {
    position: absolute;
    /* top: 16px; */
    right: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #666;
    cursor: pointer;
}

/* =========================
   Status Chip
========================= */
.status-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

/* ´ë±âÁß ¹× Á¢¼ö */
.status-chip.is-pending {
    background: #fff7ed;
    color: #c2410c;
}

/* ¼ö¶ô */
.status-chip.is-approved {
    background: #ecfdf3;
    color: #047857;
}

/* °ÅÀý */
.status-chip.is-rejected {
    background: #f3f4f6;
    color: #6b7280;
}

/* Ãë¼Ò */
.status-chip.is-cancelled {
    background: #fef2f2;
    color: #dc2626;
}

/* Àü¼Û ¿Ï·á */
.status-chip.is-sent {
    background: #ecfdf3;
    color: #047857;
}

/* Àü¼Û ½ÇÆÐ */
.status-chip.is-failed {
    background: #fef2f2;
    color: #dc2626;
}

/* ==========================================================
   Chip
========================================================== */
.meta-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.meta-chip.is-school {
    background: #f3f4f6;
    color: #4b5563;
}

.meta-chip.is-score {
    background: #f1f5f9;
    color: #334155;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1024px) {
    .btn-light {
        font-size: 15px;
    }
}

@media (max-width: 860px) {
    /* =========================
   Posts
========================= */
    .post-right {
        position: absolute;
        top: 10px;
        right: 10px;
        width: auto;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: flex-start;
        gap: 6px;
        border-radius: 10px;
        padding: 10px;
    }
    .consultant-avatar {
        width: 25px;
        height: 25px;
        border-radius: 50%;
        background: radial-gradient(circle at 30% 30%, #bff1df, #2bb8a4);
        display: grid;
        place-items: center;
        color: #fff;
        font-weight: 500;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 28px;
    }

    /* =========================
   Posts
========================= */
    .post-title {
        font-size: 17px;
        font-weight: 700;
        line-height: 1.35;
        margin: 0 0 8px;
        overflow: hidden;
    }
    .post-desc {
        font-size: 14px;
    }
    .consultant-avatar {
        width: 22px;
        height: 22px;
        color: #fff;
        font-weight: 500;
        font-size: 9px;
    }
    .consultant-name {
        font-weight: 500;
    }
    .post-meta {
        font-size: 12px;
    }
    .consultant-name {
        font-weight: 500;
        font-size: 14px;
    }

    /* =========================
   Button
========================= */
    .btn-light,
    .btn-outline-light {
        font-size: 14px;
    }
    .btn-primary {
        font-size: 14px;
    }
    .btn-outline {
        font-size: 14px;
    }
    .btn-gray {
        width: 25%;
        min-width: 120px;
        font-size: 14px;
    }
    .btn-action {
        min-width: auto;
    }
    .btn-sm {
        flex: 1;
    }
    .tabs {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        font-size: 14px;
    }
    .tabs::-webkit-scrollbar {
        display: none;
    }
    .tab {
        flex: 0 0 auto;
    }

    .tabs-wrap::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 36px;
        height: 100%;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.2s ease;
        background: linear-gradient(to left, #f7f8fa 20%, rgba(247, 248, 250, 0) 100%);
    }
    .tabs-wrap.has-right-fade::after {
        opacity: 1;
    }

    .pagination {
        margin-top: 30px;
    }
    .page-number {
        font-size: 14px;
    }
    .page-list {
        gap: 0;
    }

    .edit-action-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1000;

        margin-top: 0;
        padding: 12px 16px;
        background: #fff;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
    }

    .consultant-edit-page {
        padding-bottom: 72px;
    }

    /* =========================
   Modal - Bottom Sheet
========================= */
    .modal-backdrop {
        opacity: 0;
        transition: opacity 0.24s ease;
    }

    .modal.is-open .modal-backdrop {
        opacity: 1;
    }

    .modal-dialog {
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        transform: translateY(24px);
        width: 100%;
        max-width: none;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -12px 32px rgba(15, 23, 42, 0.16);
        opacity: 0;
        transition:
            transform 0.24s ease,
            opacity 0.24s ease;
    }

    .modal.is-open .modal-dialog {
        transform: translateY(0);
        opacity: 1;
    }

    .modal-header {
        position: relative;
        justify-content: center;
        padding: 18px 20px 14px;
    }

    .modal-title {
        font-size: 15px;
    }

    .modal-close {
        position: absolute;
        right: 14px;
        /* top: 12px; */
    }

    .modal-body {
        padding: 18px 20px 28px;
        text-align: center;
    }

    /* Mobile: Bottom Sheet */
    .share-sheet {
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        width: 100%;
        transform: translateY(12px);
        border-radius: 18px 18px 0 0;
        padding: 10px 14px 16px;
    }

    .share-sheet__handle {
        display: block;
    }

    .is-share-open .share-sheet {
        transform: translateY(0);
    }
    .btn-profile-edit {
        height: 25px;
        padding: 0 12px;
        font-size: 11px;
    }
    .btn-profile-edit .material-symbols-outlined {
        font-size: 16px;
    }

    /* =========================
   Badge / Pill
========================= */

    .badge {
        height: 22px;
        padding: 0 8px;
        font-size: 11px;
        font-weight: 500;
    }

    .badge-price svg {
        width: 16px;
        height: 16px;
    }

    /* =========================
   Paid Post Purchase Modal
========================= */
    .pay-modal-card {
        max-width: 100%;
        padding: 18px 20px 25px;
        border-radius: 20px 20px 0 0;
    }

    .pay-modal-head {
        margin-bottom: 15px;
    }

    .pay-modal-title {
        font-size: 18px;
    }

    .pay-product-title {
        font-size: 16px;
    }

    .pay-price {
        font-size: 20px;
    }

    .pay-wing-value {
        font-size: 17px;
    }

    .pay-modal-actions {
        gap: 8px;
    }

    .pay-wing-row-block + .pay-wing-row-block {
        margin-top: 10px;
        padding-top: 10px;
    }

    .pay-wing-sub {
        margin: 3px 0 0;
    }

    /* =========================
   Status Chip
========================= */
    .status-chip {
        height: 22px;
        font-size: 11px;
    }

    /* =========================
   Chip
========================= */
    .meta-chip {
        height: 22px;
        font-size: 11px;
    }

    /* =========================
   Empty Box
========================= */
    .empty-box {
        padding: 50px 16px;
        border-radius: 16px;
    }

    .empty-box .material-symbols-outlined {
        font-size: 28px;
    }

    .empty-title {
        font-size: 14px;
    }

    .empty-desc {
        font-size: 13px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .pagination {
        gap: 0;
    }
    .page-number {
        font-size: 13px;
    }
}

@media (max-width: 470px) {
    .tab {
        padding: 6px 17px;
    }

    .post-title {
        font-size: 16px;
    }
}
