/* ===========================
   KRİPTO DASHBOARD - PARITE.CSS ÜZERİNE EK (OPTIMIZED & UPDATED)
   =========================== */
/* Consolidated :root - Tüm renkler burada */
:root {
    --bg-page: #1e1e1e;
    --bg-section: #242424;
    --bg-section-alt: #2f2f2f;
    --bg-header-block: #2a2a2a;
    --line-soft: rgba(255,255,255,0.07);
    --line-softer: rgba(255,255,255,0.04);
    --text-primary: #E0E0E0;
    --text-secondary: #9ca3af;
    --text-dim: #6b6b6b;
    --accent-positive-bg: rgba(34,197,94,0.18);
    --accent-positive-text: #38d26f;
    --accent-negative-bg: rgba(239,68,68,0.18);
    --accent-negative-text: #ef5f5f;
    --accent-brand-start: #e67e22;
    --accent-brand-end: #d35400;

    /* yorum özel - PARİTE İLE AYNI */
    --comment-card-bg: #202124;
    --comment-alt-bg: #252525;
    --comment-border: rgba(15,118,255,0.05);

    /* Kripto'ya özel */
    --crypto-bg-gradient: linear-gradient(to bottom right, #1e3a8a, #1e40af, #1e1b4b);
    --hero-gradient: linear-gradient(to right, #2563eb, #7c3aed);
}

/* Global Reset */
* { box-sizing: border-box; }

/* Sayfa Kabuğu */
.main-wrapper {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--text-primary);
    min-height: 100vh;
    margin-top: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
@media (max-width: 768px) { .main-wrapper { margin-top: 24px; } }
.main-inner { padding: 0 0 40px 0; }
/* Masaüstünde parite sayfası gibi tam genişlik, yan boşlukları kaldır */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
    color: var(--text-primary);
}

/* Sadece mobilde biraz iç boşluk kalsın */
@media (max-width: 768px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Breadcrumb */
.breadcrumb-bar {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 6px;
    line-height: 1.4;
}
.breadcrumb-bar a { color: var(--text-secondary); text-decoration: none; }
.breadcrumb-bar a:hover { color: var(--accent-brand-start); }
.breadcrumb-sep { margin: 0 8px; color: var(--text-secondary); }
.breadcrumb-current { color: var(--text-primary); font-weight: 600; }

/* Disclaimer */
.disclaimer-box {
    background: var(--bg-section-alt);
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-secondary);
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    margin-bottom: 20px;
}
.disclaimer-head {
    font-size: 12px;
    color: var(--accent-brand-start);
    font-weight: 600;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 1px 4px rgba(230,126,34,0.3);
}
.disclaimer-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent-brand-start);
    box-shadow: 0 0 8px rgba(230,126,34,0.7);
}
.disclaimer-box b { color: var(--text-primary); font-weight: 600; }
.disclaimer-compact {
    background: var(--bg-section);
    border: 1px solid var(--line-softer);
    border-radius: 10px;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 20px;
    margin-bottom: 24px;
}
.disclaimer-compact .disclaimer-head { color: var(--accent-brand-start); }
.disclaimer-compact .disclaimer-text {
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Grid Layout */
.row {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    margin: 0 -15px;
}
.span8, .span4 { min-width: 0; padding: 0 15px; }
.span8 { flex: 0 0 66.6667%; max-width: 66.6667%; }
.span4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
@media (max-width: 1200px) {
    .row { flex-wrap: wrap; margin: 0 -10px; }
    .span8, .span4 { flex: 0 0 100%; max-width: 100%; padding: 0 10px; }
}

/* Widget Genel */
.widget {
    background: var(--bg-section);
    border-radius: 16px;
    border: 1px solid var(--line-soft);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    margin-bottom: 22px;
    transition: all .2s ease;
}
.widget:hover { box-shadow: 0 12px 45px rgba(0,0,0,0.8); }
.widget-header {
    background: linear-gradient(90deg, #1f1f1f 0%, #141414 100%);
    border-bottom: 2px solid var(--accent-brand-start);
    padding: 16px 20px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
}
.widget-header-left { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; min-width: 0; }
.widget-header-right {
    margin-left: auto;
    font-size: 12px; font-weight: 600; color: #fff; white-space: nowrap;
    text-transform: uppercase; letter-spacing: .4px;
}
.widget-header h1, .widget-header h2, .widget-header h3 {
    margin: 0; font-size: 18px; font-weight: 700; color: var(--text-primary);
}
.widget-content { background: var(--bg-section-alt); color: var(--text-primary); padding: 20px; }
.widget-content--tv { background: var(--bg-section); padding: 0; }
.crypto-dashboard-widget .widget-content { background: var(--crypto-bg-gradient); padding: 0; }
@media (max-width: 768px) { .widget-content { padding: 16px; } }

/* HEADER */
.header {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-left: 4px solid #ff8c42;
    padding: 20px 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.header h1 { color: #ff8c42; font-size: 28px; font-weight: 600; margin-bottom: 5px; }
.header p { color: #999; font-size: 14px; }

/* Main Price Section */
.main-price-section {
    background: linear-gradient(150deg, #1b1b1b 0%, #171818 45%, #101010 100%);
    border-radius: 20px; padding: 30px; margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative; overflow: visible;
}
.main-price-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 165, 0, 0.3), transparent);
}
.price-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.05);
    gap: 12px;
}
.crypto-info { display: flex; align-items: center; gap: 12px; }
.crypto-icon {
    width: 50px; height: 50px; background: var(--accent-brand-start);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 24px; font-weight: bold; color: #000;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}
.crypto-name h2 { font-size: 20px; color: #fff; margin: 0; font-weight: 600; }
.crypto-name span { color: #888; font-size: 12px; display: block; }
.price-change {
    display: flex; align-items: center; gap: 6px;
    padding: 6px 12px; background: var(--accent-negative-bg); border-radius: 20px;
    border: 1px solid var(--accent-negative-text); font-size: 12px; font-weight: 600; white-space: nowrap;
}
.price-change.positive { background: var(--accent-positive-bg); border-color: var(--accent-positive-text); }
.price-change span { color: var(--accent-negative-text); }
.price-change.positive span { color: var(--accent-positive-text); }
.current-price { text-align: center; margin: 20px 0 25px 0; position: relative; padding-top: 6px; }
.current-price #last-price {
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-brand-start) 0%, var(--accent-brand-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -2px;
    display: block;
    line-height: 1.05;
    max-width: 100%;
    word-break: break-word;
}

.current-price .btc-amount { color: #888; font-size: 14px; margin: 5px 0; font-family: 'Courier New', monospace; letter-spacing: 0.5px; }
.current-price .today-label { color: var(--accent-brand-start); font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* Details Section */
.details-section { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px; }
.detail-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 16px; padding: 30px; border: 1px solid #3a3a3a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); text-align: center;
}
.detail-card h3 {
    color: var(--accent-brand-start); font-size: 20px; margin-bottom: 25px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.detail-row { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 1px solid #3a3a3a; }
.detail-row:last-child { border-bottom: none; }
.detail-label { color: #999; font-size: 15px; }
.detail-value { font-size: 18px; font-weight: 600; color: #fff; }
.detail-value.green { color: var(--accent-positive-text); }
.detail-value.red { color: var(--accent-negative-text); }

/* Alış/Satış Kartları */
.buy-sell-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px; }
.buy-card {
    background: var(--accent-positive-bg); border: 1px solid var(--accent-positive-text);
    border-radius: 12px; padding: 25px; text-align: center; transition: all 0.3s ease;
}
.buy-card:hover { background: rgba(34, 197, 94, 0.15); }
.buy-card h3 { color: var(--accent-positive-text); font-size: 13px; font-weight: 500; margin-bottom: 15px; text-transform: uppercase; }
.buy-card .value { font-size: 30px; font-weight: 700; color: var(--accent-positive-text); margin-bottom: 10px; }
.buy-card .tl-value { color: rgba(34, 197, 94, 0.7); font-size: 16px; }
.sell-card {
    background: var(--accent-negative-bg); border: 1px solid var(--accent-negative-text);
    border-radius: 12px; padding: 25px; text-align: center; transition: all 0.3s ease;
}
.sell-card:hover { background: rgba(239, 68, 68, 0.15); }
.sell-card h3 { color: var(--accent-negative-text); font-size: 13px; font-weight: 500; margin-bottom: 15px; text-transform: uppercase; }
.sell-card .value { font-size: 30px; font-weight: 700; color: var(--accent-negative-text); margin-bottom: 10px; }
.sell-card .tl-value { color: rgba(239, 68, 68, 0.7); font-size: 16px; }

/* Update Time */
.update-time {
    text-align: center; margin-top: 30px; padding: 20px; background: #1a1a1a;
    border-radius: 12px; color: #999; font-size: 14px; border: 1px solid #3a3a3a;
}

/* İçerik Bloğu */
.post-content {
    background: var(--bg-section-alt);
    border-top: 1px solid var(--line-soft);
    border-radius: 16px;
    color: var(--text-primary);
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.post-content > div { padding: 20px; font-size: 15px; line-height: 1.6; color: var(--text-primary); }
.post-content a { color: var(--accent-brand-start); text-decoration: none; font-weight: 600; }
.post-content a:hover { color: var(--accent-brand-end); text-decoration: underline; }

/* TradingView */
.widget--tv .widget-content { background: var(--bg-section); padding: 0; }
.tv-holder {
    position: relative; width: 100%; height: 68vh; min-height: 520px;
    background: var(--bg-section-alt); border-top: 1px solid var(--line-soft);
}
@media (max-width: 768px) { .tv-holder { height: 62vh; min-height: 420px; } }
.tradingview-widget-container, .tradingview-widget-container > div, #tradingview_chart_widget, .tradingview-widget-container iframe {
    position: absolute; inset: 0; width: 100% !important; height: 100% !important; border: none;
}

/* ===========================
   YORUMLAR — PARİTE-DETAY İLE BİREBİR (GÖRÜNÜM)
   =========================== */
.comment-widget-content { background: var(--bg-section-alt); padding: 0; }
#thereisnewcomment {
  background: linear-gradient(135deg, rgba(230,126,34,0.15) 0%, rgba(211,84,0,0.08) 100%);
  border: 1px solid var(--accent-brand-start);
  color: var(--accent-brand-start);
  padding: 12px 16px; border-radius: 10px; margin: 16px 16px 0;
  display: none; font-size: 13px; font-weight: 600;
}

/* form */
.comment-form {
  background: var(--bg-section);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 16px;
  margin: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.comment-form textarea {
  width: 100%; min-height: 100px; padding: 12px; border-radius: 8px;
  border: 1px solid var(--line-soft); background: var(--bg-section-alt);
  color: var(--text-primary); font-size: 14px; line-height: 1.6; resize: vertical;
}
.comment-form button {
  background: linear-gradient(135deg, var(--accent-brand-start) 0%, var(--accent-brand-end) 100%);
  border: none; padding: 10px 24px; border-radius: 8px; color: #fff; font-size: 14px; font-weight: 700; cursor: pointer;
}

/* liste */
#commentsBox { padding: 0 16px 16px; }
#commentsBoxContent { display: flex; flex-direction: column; gap: 16px; }

/* ana yorum kartı */
.comment {
  background: radial-gradient(circle at top, rgba(15,23,42,0.25) 0%, rgba(15,23,42,0.08) 60%), var(--comment-card-bg);
  border: 1px solid var(--comment-border);
  border-radius: 18px;
  padding: 16px 18px 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  transition: all .2s ease;
}
.comment:hover { border-color: rgba(59,130,246,0.4); box-shadow: 0 18px 50px rgba(15,23,42,0.25); }

/* içerik iskeleti */
.comment .c-body { display: flex; flex-direction: column; gap: 14px; }
.comment .c-head { display: flex; align-items: flex-start; gap: 14px; }
.comment .c-user { display: flex; align-items: center; gap: 12px; }

/* avatarlar */
.c-avatar-img {
  width: 44px; height: 44px; border-radius: 9999px; object-fit: cover;
  border: 2px solid rgba(255,255,255,0.02);
}
.c-avatar-circle {
  width: 44px; height: 44px; border-radius: 9999px; display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff;
}
.c-avatar-user { background: linear-gradient(135deg,#0ea5e9,#38bdf8); }
.c-avatar-admin, .c-avatar-mod { background: linear-gradient(135deg,#f97316,#f59e0b); }

/* kullanıcı meta */
.comment .c-user-meta { display: flex; flex-direction: column; gap: 4px; }
.c-name { color: #fff; font-weight: 700; font-size: 15px; }
.c-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(15,23,42,.15);
  border: 1px solid rgba(148,163,184,.07);
  color: #e2e8f0; font-size: 11px; padding: 3px 12px 4px; border-radius: 8px;
}

/* tarih kutusu */
.c-datebox {
  margin-left: auto; background: rgba(15,23,42,.65);
  border: 1px solid rgba(148,163,184,.14);
  border-radius: 13px; padding: 6px 18px 5px; display: flex; flex-direction: column; gap: 2px;
  min-width: 120px; text-align: center;
}
.c-date { color: #e2e8f0; font-weight: 600; font-size: 13px; }
.c-time { color: #38bdf8; font-size: 12px; font-weight: 600; }

/* içerik paragrafı ve görsel */
.c-content { color: #e2e8f0; line-height: 1.6; font-size: 14px; }
.cmt-img { max-width: 100%; max-height: 260px; border-radius: 8px; margin-top: 6px; }

/* alt bar */
.c-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.c-foot-left { display: flex; gap: 12px; }
.c-btn {
  display: flex; align-items: center; gap: 7px;
  background: rgba(15,23,42,.3); border: 1px solid rgba(15,23,42,.3);
  border-radius: 12px; padding: 7px 16px 6px; color: #fff; font-weight: 600; font-size: 13px; cursor: pointer;
}
.c-btn-secondary { background: rgba(248,113,113,.03); border: 1px solid rgba(248,113,113,.1); }
.c-foot-right { display: flex; gap: 12px; }
.c-vote {
  background: rgba(15,23,42,.1); border: 1px solid rgba(148,163,184,.12);
  border-radius: 12px; padding: 7px 18px 6px; display: flex; align-items: center; gap: 8px;
  color: #e2e8f0; font-weight: 700; min-width: 70px; justify-content: center;
}

/* alt yorumlar */
.c-replies {
  margin-top: 10px; padding-left: 32px; border-left: 1px solid rgba(148,163,184,.05);
  display: flex; flex-direction: column; gap: 10px;
}
.comment--reply { background: rgba(15,23,42,.1); border-radius: 14px; }

/* alt yanıt formu */
.add-subcomment { display: none !important; padding: 0 16px 16px; }
.add-subcomment.active { display: block !important; }

/* load more */
.comment-more { margin: 14px 0 0 0; text-align: center; padding-bottom: 18px; }
.comment-more button {
  background: linear-gradient(135deg, rgba(243,156,18,0.08), rgba(243,156,18,0.35));
  border: 1px solid rgba(243,156,18,0.25);
  padding: 10px 20px; border-radius: 999px; color: #fff; cursor: pointer; font-weight: 600;
}

/* Sidebar */
.sidebar-widget {
    background: var(--bg-section);
    border-radius: 16px;
    border: 1px solid var(--line-soft);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    margin-bottom: 22px;
}
.sidebar-widget-header {
    background: linear-gradient(90deg, #1f1f1f 0%, #141414 100%);
    border-bottom: 2px solid var(--accent-brand-start);
    padding: 16px 20px;
    color: var(--accent-brand-start);
    font-size: 16px;
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(230,126,34,0.3);
}
.sidebar-widget-content { background: var(--bg-section); padding: 20px; }
.sidebar-article {
    margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line-soft);
    color: var(--text-primary);
}
.sidebar-article:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.sidebar-article-thumb { text-align: center; margin-bottom: 12px; }
.sidebar-article-thumb img {
    width: 100%; height: 150px; object-fit: cover; border-radius: 8px; box-shadow: 0 6px 20px rgba(0,0,0,0.8);
}
.sidebar-article-title a { color: var(--text-primary); font-size: 16px; font-weight: 600; text-decoration: none; }
.sidebar-article-title a:hover { color: var(--accent-brand-start); }
.sidebar-article-summary { font-size: 14px; color: var(--text-secondary); line-height: 1.5; margin-top: 6px; }

/* Kripto Hesaplayıcı Form */
.form-row { margin-bottom: 16px; }
.calc-input {
    width: 100%; padding: 12px 16px; border: 1px solid var(--line-soft); border-radius: 8px;
    background: var(--bg-section-alt); color: var(--text-primary); font-size: 14px; transition: all 0.2s ease; font-family: inherit;
}
.calc-input:focus { outline: none; border-color: var(--accent-brand-start); box-shadow: 0 0 0 3px rgba(230,126,34,0.1); }
.calc-input::placeholder { color: var(--text-dim); }
.calc-button {
    width: 100%; background: linear-gradient(135deg, var(--accent-brand-start) 0%, var(--accent-brand-end) 100%);
    border: none; padding: 14px 20px; border-radius: 8px; color: #fff; font-size: 15px; font-weight: 700; cursor: pointer;
    transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(230,126,34,0.3); text-transform: uppercase; letter-spacing: 0.5px;
}
.calc-button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(230,126,34,0.4); }
.calc-button:active { transform: translateY(0); }

/* Ekonomi Takvimi */
.table {
    width: 100%; background: var(--bg-section-alt); border-radius: 12px; border: 1px solid var(--line-soft);
    box-shadow: 0 6px 18px rgba(0,0,0,0.6); color: var(--text-primary); border-collapse: separate; border-spacing: 0;
}
.table td { padding: 10px 12px; vertical-align: top; font-size: 12px; color: var(--text-primary); border-top: 1px solid var(--line-soft); }
.table tr:first-child td { border-top: none; }
.table-striped > tbody > tr:nth-of-type(odd) td { background: rgba(255,255,255,0.02); }
.economic-time { color: var(--accent-brand-start); font-weight: 700; font-size: 12px; }
.event-title {
    font-size: 12px; color: var(--accent-brand-start); font-weight: 700; line-height: 1.4;
    padding-bottom: 4px; margin-bottom: 6px; border-bottom: 1px dashed var(--line-soft);
}
.event-detail { font-size: 12px; color: var(--text-primary); line-height: 1.4; }

/* Global Links */
a { color: var(--accent-brand-start); text-decoration: none; }
a:hover { color: var(--accent-brand-end); text-decoration: underline; }

/* Mobil (yorum kartı dahil) */
@media (max-width: 768px) {
  .widget-header {
      display: flex; align-items: center; justify-content: space-between; flex-wrap: nowrap;
      min-height: 52px; padding: 12px 14px; border-bottom-width: 2px;
  }
  .widget-header-left { flex: 1 1 auto; min-width: 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
  .widget-header-left h1, .widget-header-left h2, .widget-header-left h3 {
      font-size: 15px; line-height: 1.4; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .widget-header-right {
      flex: 0 0 auto; align-self: center; font-size: 11px; line-height: 1.2; letter-spacing: .4px;
      padding: 3px 8px; border-radius: 6px; background: rgba(0,0,0,0.3);
      border: 1px solid rgba(255,255,255,0.07); color: var(--accent-brand-start);
      text-transform: uppercase; white-space: nowrap; box-shadow: 0 4px 12px rgba(0,0,0,0.6); text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  }
  .row { margin: 0 -5px; }
  .span8, .span4 { padding: 0 5px; }
  .header { padding: 16px 20px; margin-bottom: 20px; }
  .header h1 { font-size: 22px; }
  .main-price-section { padding: 24px 18px; }
  .price-header { flex-wrap: wrap; gap: 8px; }
  .current-price h1 { font-size: 48px; letter-spacing: -1px; }
  .buy-sell-grid, .details-section { grid-template-columns: 1fr; gap: 15px; }
  .buy-card, .sell-card, .detail-card { padding: 20px; }

  /* Yorum mobil */
  .comment { padding: 12px 12px 10px; }
  .comment .c-head { display: flex; align-items: flex-start; gap: 10px; flex-wrap: nowrap; }
  .comment .c-user { gap: 8px; }
  .comment .c-user-meta { flex-direction: row; align-items: center; gap: 6px; }
  .comment .c-datebox {
    margin-left: auto; min-width: 120px; padding: 4px 10px; background: rgba(15,23,42,0.35);
    border-radius: 12px; border: 1px solid rgba(148,163,184,0.15);
    display: flex; flex-direction: column; align-items: center; gap: 2px; text-align: center;
  }
  .comment .c-datebox .c-date { font-size: 11.5px; font-weight: 600; }
  .comment .c-datebox .c-time { font-size: 11px; }
  .comment .c-foot { display: flex; align-items: center; gap: 8px; }
  .comment .c-foot-left { display: flex; gap: 6px; flex: 0 0 auto; }
  .comment .c-btn {
    padding: 5px 10px; font-size: 11.5px; border-radius: 8px; white-space: nowrap;
  }
  .comment .c-foot-right { margin-left: auto; display: flex; gap: 6px; }
  .comment .c-vote {
    min-width: auto; padding: 5px 10px; font-size: 11.5px; border-radius: 10px; gap: 4px; white-space: nowrap;
  }
  .c-replies { padding-left: 16px; }
  .comment-form, #commentsBox { margin: 12px; padding: 12px; }
}
