/* =============================================================================
   m-components.css — کامپوننت‌های پایه مدرن
   ========================================================================== */

/* ─── Button ──────────────────────────────────────────── */
.m-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--m-s-2);
    min-height: var(--m-tap-target);
    padding: var(--m-s-3) var(--m-s-5);
    border-radius: var(--m-r-md);
    border: 1px solid transparent;
    font-family: var(--m-font);
    font-size: var(--m-fs-base);
    font-weight: var(--m-fw-semibold);
    line-height: var(--m-lh-tight);
    cursor: pointer;
    text-decoration: none;
    transition: var(--m-transition-fast);
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.m-btn:disabled,
.m-btn[aria-disabled="true"] {
    opacity: .5;
    cursor: not-allowed;
}
.m-btn:active:not(:disabled) {
    transform: scale(.98);
}

/* primary — gradient brand */
.m-btn-primary {
    background: var(--m-gradient-button);
    color: var(--m-text-on-brand);
    box-shadow: var(--m-shadow-md), var(--m-shadow-inset);
}
.m-btn-primary:hover:not(:disabled) {
    background: var(--m-gradient-button-hover);
    box-shadow: var(--m-shadow-glow);
}
.m-btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.18), transparent 40%);
    opacity: 0;
    transition: opacity var(--m-dur-normal);
    pointer-events: none;
}
.m-btn-primary:hover::after { opacity: 1; }

/* secondary — surface */
.m-btn-secondary {
    background: var(--m-surface-2);
    color: var(--m-text);
    border-color: var(--m-border-2);
}
.m-btn-secondary:hover:not(:disabled) {
    background: var(--m-surface-3);
    border-color: var(--m-border-strong);
}

/* ghost — minimal */
.m-btn-ghost {
    background: transparent;
    color: var(--m-text-2);
}
.m-btn-ghost:hover:not(:disabled) {
    background: var(--m-surface-hover);
    color: var(--m-text);
}

/* danger */
.m-btn-danger {
    background: var(--m-danger);
    color: var(--m-text-on-brand);
}
.m-btn-danger:hover:not(:disabled) {
    background: #dc2626;
}

/* outline */
.m-btn-outline {
    background: transparent;
    color: var(--m-text);
    border-color: var(--m-border-strong);
}
.m-btn-outline:hover:not(:disabled) {
    background: var(--m-surface);
    border-color: var(--m-border-brand);
}

/* sizes */
.m-btn-sm {
    min-height: 36px;
    padding: var(--m-s-2) var(--m-s-3);
    font-size: var(--m-fs-sm);
    border-radius: var(--m-r-sm);
}
.m-btn-lg {
    min-height: 52px;
    padding: var(--m-s-4) var(--m-s-6);
    font-size: var(--m-fs-lg);
    border-radius: var(--m-r-lg);
}
.m-btn-xl {
    min-height: 60px;
    padding: var(--m-s-5) var(--m-s-7);
    font-size: var(--m-fs-lg);
    border-radius: var(--m-r-xl);
}

/* icon-only button */
.m-btn-icon {
    width: var(--m-tap-target);
    height: var(--m-tap-target);
    padding: 0;
    min-height: auto;
    flex-shrink: 0;
}
.m-btn-icon-sm {
    width: 36px;
    height: 36px;
}

/* block button */
.m-btn-block { width: 100%; }

/* ─── Form Controls ───────────────────────────────────── */
.m-input,
.m-textarea,
.m-select {
    display: block;
    width: 100%;
    min-height: var(--m-tap-target);
    padding: var(--m-s-3) var(--m-s-4);
    background: var(--m-surface);
    color: var(--m-text);
    font-family: var(--m-font);
    font-size: var(--m-fs-md);    /* 16px جلوگیری از iOS zoom */
    line-height: var(--m-lh-normal);
    border: 1px solid var(--m-border-2);
    border-radius: var(--m-r-md);
    transition: var(--m-transition-fast);
    -webkit-appearance: none;
    appearance: none;
}
.m-input::placeholder,
.m-textarea::placeholder {
    color: var(--m-text-faint);
}
.m-input:hover,
.m-textarea:hover,
.m-select:hover {
    border-color: var(--m-border-strong);
}
.m-input:focus,
.m-textarea:focus,
.m-select:focus {
    outline: none;
    border-color: var(--m-brand-500);
    box-shadow: 0 0 0 3px rgba(99,102,241,.2);
}
.m-input:disabled,
.m-textarea:disabled,
.m-select:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.m-textarea {
    min-height: 120px;
    resize: vertical;
    font-family: var(--m-font);
}

.m-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left var(--m-s-4) center;
    padding-left: var(--m-s-9);
}

/* label */
.m-label {
    display: block;
    margin-bottom: var(--m-s-2);
    color: var(--m-text);
    font-size: var(--m-fs-sm);
    font-weight: var(--m-fw-medium);
}
.m-label-helper {
    display: block;
    margin-top: var(--m-s-1);
    color: var(--m-text-muted);
    font-size: var(--m-fs-xs);
}

/* ─── Card ────────────────────────────────────────────── */
.m-card {
    background: var(--m-surface);
    border: 1px solid var(--m-border);
    border-radius: var(--m-r-lg);
    padding: var(--m-s-4);
    transition: var(--m-transition-fast);
    position: relative;
    overflow: hidden;
}
.m-card-elevated {
    box-shadow: var(--m-shadow-md);
}
.m-card-interactive {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.m-card-interactive:hover {
    border-color: var(--m-border-strong);
    transform: translateY(-2px);
    box-shadow: var(--m-shadow-lg);
}
.m-card-interactive:active {
    transform: translateY(0);
}

.m-card-gradient {
    background: var(--m-surface);
    background-image: var(--m-gradient-glow);
    border: 1px solid var(--m-border-2);
}

.m-card-glow {
    background: var(--m-surface);
    border: 1px solid var(--m-border-brand);
    box-shadow: var(--m-shadow-glow);
}

.m-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--m-s-3);
    margin-bottom: var(--m-s-3);
}
.m-card-title {
    margin: 0;
    font-size: var(--m-fs-lg);
    font-weight: var(--m-fw-semibold);
    color: var(--m-text);
}

/* ─── Chip / Tag / Badge ──────────────────────────────── */
.m-chip {
    display: inline-flex;
    align-items: center;
    gap: var(--m-s-1);
    padding: 4px var(--m-s-3);
    background: var(--m-surface-2);
    color: var(--m-text-2);
    font-size: var(--m-fs-xs);
    font-weight: var(--m-fw-medium);
    border-radius: var(--m-r-full);
    border: 1px solid var(--m-border-2);
    white-space: nowrap;
}
.m-chip-brand {
    background: var(--m-gradient-brand-soft);
    color: var(--m-brand-300);
    border-color: var(--m-border-brand);
}
.m-chip-success { background: var(--m-success-bg); color: var(--m-success); border-color: rgba(16,185,129,.3); }
.m-chip-warning { background: var(--m-warning-bg); color: var(--m-warning); border-color: rgba(245,158,11,.3); }
.m-chip-danger  { background: var(--m-danger-bg);  color: var(--m-danger);  border-color: rgba(239,68,68,.3); }
.m-chip-info    { background: var(--m-info-bg);    color: var(--m-info);    border-color: rgba(6,182,212,.3); }

/* ─── List ────────────────────────────────────────────── */
.m-list {
    list-style: none;
    margin: 0;
    padding: 0;
    background: var(--m-surface);
    border: 1px solid var(--m-border);
    border-radius: var(--m-r-lg);
    overflow: hidden;
}
.m-list-item {
    display: flex;
    align-items: center;
    gap: var(--m-s-3);
    padding: var(--m-s-3) var(--m-s-4);
    min-height: 56px;
    border-bottom: 1px solid var(--m-border);
    text-decoration: none;
    color: var(--m-text);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: var(--m-transition-fast);
    position: relative;
}
.m-list-item:last-child { border-bottom: 0; }
.m-list-item:hover, .m-list-item:active {
    background: var(--m-surface-hover);
}
.m-list-item-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--m-surface-2);
    border-radius: var(--m-r-md);
    color: var(--m-text-2);
}
.m-list-item-body {
    flex: 1;
    min-width: 0;
}
.m-list-item-title {
    display: block;
    font-size: var(--m-fs-base);
    font-weight: var(--m-fw-medium);
    color: var(--m-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.m-list-item-subtitle {
    display: block;
    margin-top: 2px;
    font-size: var(--m-fs-xs);
    color: var(--m-text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.m-list-item-trailing {
    flex-shrink: 0;
    color: var(--m-text-faint);
}

/* ─── App Bar (top header) ────────────────────────────── */
.m-app-bar {
    position: sticky;
    top: 0;
    z-index: var(--m-z-app-bar);
    display: flex;
    align-items: center;
    gap: var(--m-s-2);
    height: calc(var(--m-app-bar-h) + var(--m-safe-top));
    padding: var(--m-safe-top) var(--m-s-3) 0;
    background: rgba(14,14,21,.85);
    backdrop-filter: saturate(160%) blur(18px);
    -webkit-backdrop-filter: saturate(160%) blur(18px);
    border-bottom: 1px solid var(--m-border);
}
.m-app-bar-title {
    flex: 1;
    margin: 0;
    font-size: var(--m-fs-lg);
    font-weight: var(--m-fw-semibold);
    color: var(--m-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.m-app-bar-action {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--m-text);
    border: 0;
    border-radius: var(--m-r-md);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
    transition: var(--m-transition-fast);
}
.m-app-bar-action:hover { background: var(--m-surface-hover); }
.m-app-bar-action svg { width: 22px; height: 22px; stroke-width: 2; }

.m-app-bar-brand {
    display: flex;
    align-items: center;
    gap: var(--m-s-2);
    text-decoration: none;
    color: var(--m-text);
}
.m-app-bar-brand img { height: 26px; width: auto; }
.m-app-bar-brand-text {
    font-size: var(--m-fs-md);
    font-weight: var(--m-fw-bold);
    background: var(--m-gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* wallet pill in app bar */
.m-app-bar-wallet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--m-s-2);
    padding: 6px var(--m-s-3);
    background: var(--m-gradient-brand-soft);
    border: 1px solid var(--m-border-brand);
    border-radius: var(--m-r-full);
    color: var(--m-text);
    font-size: var(--m-fs-sm);
    font-weight: var(--m-fw-semibold);
    line-height: 1;
    text-decoration: none;
    transition: var(--m-transition-fast);
}
.m-app-bar-wallet:hover {
    background: var(--m-surface-2);
    box-shadow: var(--m-shadow-glow);
}
.m-app-bar-wallet svg {
    display: block;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}
.m-app-bar-wallet > span {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

/* ─── Support icon button (header) ─────────────────────── */
.m-app-bar-support {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-inline-start: var(--m-s-2);
    background: var(--m-surface);
    border: 1px solid var(--m-border);
    border-radius: 50%;
    color: var(--m-text-muted);
    text-decoration: none;
    transition: var(--m-transition-fast);
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}
.m-app-bar-support:hover,
.m-app-bar-support:active {
    color: var(--m-text);
    border-color: rgba(99,102,241,.45);
    background: rgba(99,102,241,.08);
}
.m-app-bar-support svg {
    width: 18px;
    height: 18px;
}

/* ─── Tab Bar (bottom navigation — floating pill) ─────── */
.m-tab-bar {
    position: fixed;
    bottom: calc(12px + var(--m-safe-bottom));
    left: 12px;
    right: 12px;
    z-index: var(--m-z-tab-bar);
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    height: var(--m-tab-h);
    padding: 6px;
    background: rgba(20,20,28,.85);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    box-shadow:
        0 10px 32px rgba(0,0,0,.55),
        0 2px 8px rgba(0,0,0,.35),
        0 1px 0 rgba(255,255,255,.06) inset;
}
.m-tab-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 4px 6px;
    background: transparent;
    border: 0;
    border-radius: 16px;
    color: var(--m-text-faint);
    text-decoration: none;
    cursor: pointer;
    font: inherit;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    transition: color var(--m-dur-fast) var(--m-ease-out),
                background var(--m-dur-fast) var(--m-ease-out),
                transform .12s ease;
    position: relative;
}
.m-tab-bar-item:active {
    transform: scale(.94);
}
.m-tab-bar-item svg {
    display: block;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    stroke: currentColor;
    color: inherit;
    stroke-width: 2;
    transition: transform var(--m-dur-normal) var(--m-ease-spring);
}
.m-tab-bar-item-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: var(--m-fw-medium);
    line-height: 1;
    white-space: nowrap;
    letter-spacing: .01em;
}
.m-tab-bar-item.is-active,
.m-tab-bar-item.is-active .m-tab-bar-item-label {
    color: var(--m-brand-300, #a5b4fc);
}
.m-tab-bar-item.is-active {
    background: linear-gradient(180deg, rgba(99,102,241,.22), rgba(139,92,246,.16));
    box-shadow: 0 2px 10px rgba(99,102,241,.25), 0 0 0 1px rgba(99,102,241,.25) inset;
}
.m-tab-bar-item.is-active svg {
    stroke: currentColor;
    transform: scale(1.08);
}
/* indicator dot زیر آیتم فعال */
.m-tab-bar-item.is-active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--m-brand-400, #818cf8);
    box-shadow: 0 0 8px rgba(129,140,248,.8);
}
.m-tab-bar-item:hover:not(.is-active) {
    color: var(--m-text-2);
    background: rgba(255,255,255,.04);
}

/* فقط در موبایل دیده شود */
@media (min-width: 1200px) {
    .m-tab-bar { display: none !important; }
}

/* ─── Bottom Sheet ────────────────────────────────────── */
.m-sheet-backdrop {
    position: fixed;
    inset: 0;
    z-index: var(--m-z-overlay);
    background: var(--m-overlay-strong);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--m-dur-normal) var(--m-ease-out);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.m-sheet-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.m-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: var(--m-z-sheet);
    max-height: 90vh;
    max-height: 90dvh;
    background: var(--m-surface);
    border-top-left-radius: var(--m-r-2xl);
    border-top-right-radius: var(--m-r-2xl);
    border-top: 1px solid var(--m-border-2);
    box-shadow: 0 -16px 64px rgba(0,0,0,.6);
    transform: translateY(100%);
    transition: transform var(--m-dur-normal) var(--m-ease-out);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-bottom: var(--m-safe-bottom);
}
.m-sheet.is-open {
    transform: translateY(0);
}
.m-sheet-handle {
    flex-shrink: 0;
    width: 40px;
    height: 4px;
    background: var(--m-border-strong);
    border-radius: var(--m-r-full);
    margin: var(--m-s-3) auto var(--m-s-2);
}
.m-sheet-header {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--m-s-3);
    padding: var(--m-s-2) var(--m-s-5) var(--m-s-4);
}
.m-sheet-title {
    margin: 0;
    font-size: var(--m-fs-lg);
    font-weight: var(--m-fw-semibold);
    color: var(--m-text);
}
.m-sheet-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 var(--m-s-5) var(--m-s-6);
}

/* ─── Service grid (used inside bottom sheet «کارخانه تولید محتوا») ─── */
.m-service-grid {
    display: flex;
    flex-direction: column;
    gap: var(--m-s-2);
}
.m-service-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--m-s-3);
    padding: var(--m-s-3) var(--m-s-4);
    background: var(--m-surface-2);
    border: 1px solid var(--m-border);
    border-radius: var(--m-r-lg);
    text-decoration: none;
    color: var(--m-text);
    transition: var(--m-transition-fast);
    -webkit-tap-highlight-color: transparent;
    overflow: hidden;
}
.m-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(var(--m-svc-c),.20), transparent 70%);
    pointer-events: none;
}
.m-service-card:hover,
.m-service-card:active {
    background: var(--m-surface-3);
    border-color: rgba(var(--m-svc-c),.4);
    transform: translateX(-4px);
    color: var(--m-text);
}
.m-service-card-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--m-r-md);
    background: rgba(var(--m-svc-c),.15);
    color: rgb(var(--m-svc-c));
    position: relative;
    z-index: 1;
}
.m-service-card-icon svg { width: 22px; height: 22px; }
.m-service-card-icon--apple {
    background: transparent !important;
    color: inherit;
    overflow: hidden;
    border-radius: 22%;
    padding: 0;
}
.m-service-card-icon--apple img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.m-service-card-body {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}
.m-service-card-title {
    display: block;
    font-size: var(--m-fs-base);
    font-weight: var(--m-fw-semibold);
    color: var(--m-text);
    margin-bottom: 2px;
}
.m-service-card-desc {
    display: block;
    font-size: var(--m-fs-xs);
    color: var(--m-text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.m-service-card-chevron {
    flex-shrink: 0;
    color: var(--m-text-faint);
    opacity: .6;
}
.m-service-card-chevron svg { width: 18px; height: 18px; }
.m-service-card-locked .m-service-card-title { opacity: .85; }

/* ─── Section header ──────────────────────────────────── */
.m-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--m-s-3);
    margin: var(--m-s-6) 0 var(--m-s-3);
    padding: 0 var(--m-s-1);
}
    .m-section-title {
        display: flex;
        align-items: center;
        gap: var(--m-s-2);
        margin: 0;
        font-size: var(--m-fs-base);
        font-weight: var(--m-fw-semibold);
        color: var(--m-text);
        line-height: 1;
    }
.m-section-title-icon {
    color: var(--m-brand-400);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.m-section-title-icon svg {
    display: block;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}
.m-section-link {
    color: var(--m-brand-400);
    font-size: var(--m-fs-sm);
    font-weight: var(--m-fw-medium);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--m-s-1);
}
.m-section-link:hover { color: var(--m-brand-300); }

/* ─── Toast ──────────────────────────────────────────── */
.m-toast-container {
    position: fixed;
    top: calc(var(--m-safe-top) + var(--m-s-4));
    left: var(--m-s-4);
    right: var(--m-s-4);
    z-index: var(--m-z-toast);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: var(--m-s-2);
}
.m-toast {
    pointer-events: auto;
    background: var(--m-surface-2);
    border: 1px solid var(--m-border-2);
    border-radius: var(--m-r-md);
    padding: var(--m-s-3) var(--m-s-4);
    box-shadow: var(--m-shadow-lg);
    color: var(--m-text);
    font-size: var(--m-fs-sm);
    animation: m-slide-down var(--m-dur-normal) var(--m-ease-out);
}

/* ─── Empty state ─────────────────────────────────────── */
.m-empty {
    text-align: center;
    padding: var(--m-s-8) var(--m-s-4);
    color: var(--m-text-muted);
}
.m-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--m-r-xl);
    background: var(--m-surface-2);
    color: var(--m-text-faint);
    margin-bottom: var(--m-s-3);
}
.m-empty-icon svg { width: 32px; height: 32px; }
.m-empty-title {
    margin: 0 0 var(--m-s-2);
    font-size: var(--m-fs-base);
    font-weight: var(--m-fw-semibold);
    color: var(--m-text-2);
}
.m-empty-desc {
    margin: 0;
    font-size: var(--m-fs-sm);
    line-height: var(--m-lh-relaxed);
}

/* ─── Icon + text rows (global mobile patterns) ─────────── */
.m-btn svg,
.m-list-item-leading svg,
.m-list-item-leading img {
    display: block;
    flex-shrink: 0;
}

.m-app-bar-wallet,
.m-wux-pill-left,
.m-account-wallet-label,
.m-account-charge-btn,
.m-dashboard-hero-label,
.m-dashboard-hero-btn,
.panel-account-chip__support,
.chat-ai-header-wallet {
    line-height: 1;
}

.m-wux-pill-left svg,
.m-account-wallet-label svg,
.m-account-charge-btn svg,
.m-dashboard-hero-label svg,
.m-dashboard-hero-btn svg,
.panel-account-chip__support-icon,
.chat-ai-header-wallet svg {
    display: block;
    flex-shrink: 0;
}

.m-app-bar-wallet > span,
.m-dashboard-hero-label > span,
.panel-account-chip__support-label {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

