/* /public_html/components/css/tools/karakter-sayaci.css */

.qt-tool-character-counter{
  --qc-ink:#101526;
  --qc-ink2:#1d2250;
  --qc-muted:#64708a;
  --qc-muted2:#7b86a0;
  --qc-lav:#6a7eff;
  --qc-lav2:#8ea2ff;
  --qc-cyan:#61f2ff;
  --qc-line:rgba(106,126,255,.15);
  --qc-line2:rgba(106,126,255,.24);
  --qc-soft:rgba(106,126,255,.065);
  --qc-soft2:rgba(97,242,255,.06);
  --qc-card:rgba(255,255,255,.94);
  --qc-shadow:0 14px 38px rgba(24,32,64,.08);
  --qc-shadow2:0 22px 58px rgba(24,32,64,.12);
  background:
    radial-gradient(760px 260px at 7% -5%, rgba(106,126,255,.10), transparent 62%),
    radial-gradient(760px 260px at 96% 0%, rgba(97,242,255,.07), transparent 62%),
    linear-gradient(180deg,#fbfcff,#f6f8ff 48%,#fff);
}

.qt-char,
.qt-char *{
  box-sizing:border-box;
}

.qt-char{
  color:var(--qc-ink);
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

.qt-char a{
  color:inherit;
  text-decoration:none;
}

.qt-char-shell{
  width:min(1280px,calc(100% - 32px));
  margin:0 auto;
  padding:22px 0 42px;
}

.qt-char-breadcrumb{
  display:flex;
  align-items:center;
  gap:8px;
  margin:0 0 14px;
  color:var(--qc-muted);
  font-size:12px;
  line-height:1.2;
  font-weight:800;
}

.qt-char-breadcrumb a{
  color:var(--qc-muted);
}

.qt-char-breadcrumb a:hover{
  color:var(--qc-lav);
}

.qt-char-breadcrumb strong{
  color:var(--qc-ink2);
  font-weight:900;
}

.qt-char-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 286px;
  gap:18px;
  align-items:start;
}

.qt-char-main{
  min-width:0;
  display:grid;
  gap:14px;
}

.qt-char-hero{
  min-height:132px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:19px 22px;
  border:1px solid var(--qc-line);
  border-radius:22px;
  background:
    radial-gradient(420px 150px at 0 0,rgba(106,126,255,.10),transparent 66%),
    linear-gradient(180deg,rgba(255,255,255,.96),rgba(248,250,255,.96));
  box-shadow:var(--qc-shadow);
  overflow:hidden;
}

.qt-char-kicker{
  margin:0 0 8px;
  color:var(--qc-lav);
  font-size:11px;
  line-height:1;
  font-weight:950;
  letter-spacing:.10em;
  text-transform:uppercase;
}

.qt-char-hero h1{
  margin:0;
  color:var(--qc-ink2);
  font-size:clamp(28px,3.1vw,42px);
  line-height:1.02;
  font-weight:950;
  letter-spacing:-.045em;
}

.qt-char-hero p:not(.qt-char-kicker){
  max-width:660px;
  margin:10px 0 0;
  color:var(--qc-muted);
  font-size:14.5px;
  line-height:1.58;
  font-weight:650;
}

.qt-char-heroBadge{
  width:74px;
  height:74px;
  flex:0 0 74px;
  display:grid;
  place-items:center;
  border-radius:23px;
  color:#fff;
  background:
    radial-gradient(70px 50px at 35% 20%,rgba(255,255,255,.32),transparent 58%),
    linear-gradient(135deg,var(--qc-lav),var(--qc-lav2));
  box-shadow:0 18px 38px rgba(106,126,255,.24);
}

.qt-char-heroBadge span{
  font-size:26px;
  line-height:1;
  font-weight:950;
  letter-spacing:-.06em;
}

.qt-char-tool{
  padding:15px;
  border:1px solid var(--qc-line);
  border-radius:22px;
  background:var(--qc-card);
  box-shadow:var(--qc-shadow);
}

.qt-char-inputHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin:0 0 10px;
}

.qt-char-inputHead label{
  color:var(--qc-ink2);
  font-size:13px;
  line-height:1.2;
  font-weight:950;
}

.qt-char-inputHead button{
  min-height:32px;
  padding:0 12px;
  border:1px solid var(--qc-line2);
  border-radius:999px;
  background:#fff;
  color:var(--qc-lav);
  font-size:12px;
  font-weight:900;
  cursor:pointer;
  transition:transform .15s ease,box-shadow .15s ease,border-color .15s ease;
}

.qt-char-inputHead button:hover{
  transform:translateY(-1px);
  border-color:rgba(106,126,255,.38);
  box-shadow:0 8px 18px rgba(106,126,255,.10);
}

.qt-char-textarea{
  display:block;
  width:100%;
  min-height:205px;
  resize:vertical;
  padding:15px 16px;
  border:1px solid var(--qc-line2);
  border-radius:18px;
  background:
    radial-gradient(360px 130px at 0 0,rgba(106,126,255,.045),transparent 70%),
    #fff;
  color:var(--qc-ink);
  font-size:15px;
  line-height:1.6;
  font-weight:600;
  outline:none;
  transition:border-color .15s ease,box-shadow .15s ease,background .15s ease;
}

.qt-char-textarea::placeholder{
  color:rgba(100,112,138,.62);
}

.qt-char-textarea:focus{
  border-color:rgba(106,126,255,.44);
  box-shadow:0 0 0 4px rgba(106,126,255,.09);
  background:#fff;
}

.qt-char-stats{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:8px;
  margin-top:10px;
}

.qt-char-stat{
  min-height:76px;
  padding:12px;
  border:1px solid var(--qc-line);
  border-radius:16px;
  background:linear-gradient(180deg,#fff,#f9faff);
  overflow:hidden;
}

.qt-char-stat span{
  display:block;
  color:var(--qc-ink2);
  font-size:26px;
  line-height:1;
  font-weight:950;
  letter-spacing:-.045em;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.qt-char-stat b{
  display:block;
  margin-top:8px;
  color:var(--qc-muted);
  font-size:11.5px;
  line-height:1.2;
  font-weight:850;
}

.qt-char-miniGuide{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:8px;
}

.qt-char-miniGuide div{
  min-height:86px;
  padding:13px 14px;
  border:1px solid var(--qc-line);
  border-radius:18px;
  background:rgba(255,255,255,.86);
  box-shadow:0 8px 20px rgba(24,32,64,.045);
}

.qt-char-miniGuide b{
  display:block;
  color:var(--qc-ink2);
  font-size:14px;
  line-height:1.25;
  font-weight:950;
}

.qt-char-miniGuide span{
  display:block;
  margin-top:8px;
  color:var(--qc-muted);
  font-size:12.5px;
  line-height:1.45;
  font-weight:700;
}

.qt-char-related,
.qt-char-common{
  border:1px solid var(--qc-line);
  border-radius:22px;
  background:var(--qc-card);
  box-shadow:var(--qc-shadow);
}

.qt-char-related{
  padding:18px;
}

.qt-char-sectionHead{
  margin-bottom:14px;
}

.qt-char-sectionHead p{
  margin:0 0 6px;
  color:var(--qc-lav);
  font-size:11px;
  line-height:1;
  font-weight:950;
  letter-spacing:.10em;
  text-transform:uppercase;
}

.qt-char-sectionHead h2{
  margin:0;
  color:var(--qc-ink2);
  font-size:23px;
  line-height:1.1;
  font-weight:950;
  letter-spacing:-.035em;
}

.qt-char-relatedGrid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:9px;
}

.qt-char-relatedItem{
  min-height:118px;
  padding:14px;
  border:1px solid var(--qc-line);
  border-radius:17px;
  background:
    radial-gradient(240px 90px at 0 0,rgba(106,126,255,.055),transparent 70%),
    linear-gradient(180deg,#fff,#f9faff);
  transition:transform .15s ease,border-color .15s ease,box-shadow .15s ease;
}

.qt-char-relatedItem:hover{
  transform:translateY(-2px);
  border-color:rgba(106,126,255,.32);
  box-shadow:0 16px 30px rgba(24,32,64,.09);
}

.qt-char-relatedItem span{
  display:inline-flex;
  align-items:center;
  min-height:22px;
  padding:0 9px;
  border-radius:999px;
  color:var(--qc-lav);
  background:rgba(106,126,255,.09);
  font-size:10px;
  line-height:1;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.qt-char-relatedItem b{
  display:block;
  margin-top:12px;
  color:var(--qc-ink2);
  font-size:16px;
  line-height:1.22;
  font-weight:950;
}

.qt-char-relatedItem em{
  display:block;
  margin-top:8px;
  color:var(--qc-muted);
  font-size:12.5px;
  line-height:1.45;
  font-style:normal;
  font-weight:700;
}

.qt-char-common{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:17px 18px;
  background:
    radial-gradient(420px 130px at 0 0,rgba(106,126,255,.07),transparent 70%),
    rgba(255,255,255,.92);
}

.qt-char-common p{
  margin:0 0 5px;
  color:var(--qc-muted);
  font-size:12px;
  line-height:1.2;
  font-weight:850;
}

.qt-char-common h2{
  margin:0;
  color:var(--qc-ink2);
  font-size:21px;
  line-height:1.15;
  font-weight:950;
  letter-spacing:-.035em;
}

.qt-char-common span{
  display:block;
  max-width:780px;
  margin-top:9px;
  color:var(--qc-muted);
  font-size:13.5px;
  line-height:1.55;
  font-weight:650;
}

.qt-char-common a{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 15px;
  border-radius:999px;
  color:#fff;
  background:linear-gradient(135deg,var(--qc-lav),var(--qc-lav2));
  font-size:12px;
  font-weight:950;
  box-shadow:0 10px 22px rgba(106,126,255,.18);
}

.qt-char-side{
  position:sticky;
  top:96px;
  display:grid;
  gap:12px;
  min-width:0;
}

.qt-char-sideCard,
.qt-char-suggest{
  border:1px solid var(--qc-line);
  border-radius:22px;
  background:rgba(255,255,255,.94);
  box-shadow:var(--qc-shadow);
  overflow:hidden;
}

.qt-char-sideTitle{
  padding:15px 16px;
  border-bottom:1px solid var(--qc-line);
  color:var(--qc-ink2);
  font-size:16px;
  line-height:1.2;
  font-weight:950;
  background:linear-gradient(180deg,#fff,#f8faff);
}

.qt-char-sideNav{
  display:grid;
  gap:5px;
  padding:9px;
}

.qt-char-sideNav a{
  display:flex;
  align-items:center;
  min-height:39px;
  padding:0 11px;
  border-radius:13px;
  color:var(--qc-ink);
  font-size:12.8px;
  line-height:1.2;
  font-weight:850;
  transition:background .15s ease,color .15s ease,transform .15s ease;
}

.qt-char-sideNav a:hover{
  color:var(--qc-lav);
  background:var(--qc-soft);
  transform:translateX(1px);
}

.qt-char-sideNav a.is-active{
  color:#fff;
  background:linear-gradient(135deg,var(--qc-lav),var(--qc-lav2));
  box-shadow:0 10px 22px rgba(106,126,255,.18);
}

.qt-char-suggest{
  padding:15px;
  background:
    radial-gradient(260px 100px at 0 0,rgba(106,126,255,.08),transparent 70%),
    rgba(255,255,255,.93);
}

.qt-char-suggest b{
  display:block;
  color:var(--qc-ink2);
  font-size:16px;
  line-height:1.2;
  font-weight:950;
}

.qt-char-suggest p{
  margin:8px 0 12px;
  color:var(--qc-muted);
  font-size:13px;
  line-height:1.5;
  font-weight:650;
}

.qt-char-suggest a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:0 13px;
  border:1px solid var(--qc-line2);
  border-radius:999px;
  color:var(--qc-lav);
  background:#fff;
  font-size:12px;
  line-height:1;
  font-weight:950;
}

.qt-char-suggest a:hover{
  color:#fff;
  border-color:transparent;
  background:linear-gradient(135deg,var(--qc-lav),var(--qc-lav2));
}

@media (max-width:1120px){
  .qt-char-layout{
    grid-template-columns:1fr;
  }

  .qt-char-side{
    position:static;
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:860px){
  .qt-char-shell{
    width:min(100% - 22px,720px);
    padding-top:16px;
  }

  .qt-char-breadcrumb{
    overflow:auto;
    white-space:nowrap;
    padding-bottom:2px;
  }

  .qt-char-hero{
    min-height:auto;
    padding:17px;
    border-radius:20px;
  }

  .qt-char-heroBadge{
    display:none;
  }

  .qt-char-hero h1{
    font-size:30px;
  }

  .qt-char-hero p:not(.qt-char-kicker){
    font-size:14px;
  }

  .qt-char-tool{
    padding:13px;
    border-radius:20px;
  }

  .qt-char-textarea{
    min-height:185px;
    font-size:14px;
  }

  .qt-char-stats{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
  }

  .qt-char-stat{
    min-height:72px;
    padding:11px 12px;
    border-radius:15px;
  }

  .qt-char-stat span{
    font-size:24px;
  }

  .qt-char-stat b{
    margin-top:6px;
    font-size:11px;
  }

  .qt-char-stat:last-child{
    grid-column:1 / -1;
  }

  .qt-char-miniGuide{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .qt-char-relatedGrid{
    grid-template-columns:1fr;
  }

  .qt-char-relatedItem{
    min-height:auto;
  }

  .qt-char-common{
    display:grid;
    gap:13px;
  }

  .qt-char-common a{
    width:max-content;
  }

  .qt-char-side{
    grid-template-columns:1fr;
  }
}

@media (max-width:460px){
  .qt-char-shell{
    width:min(100% - 18px,420px);
  }

  .qt-char-main{
    gap:11px;
  }

  .qt-char-hero{
    padding:16px;
    border-radius:18px;
  }

  .qt-char-hero h1{
    font-size:28px;
  }

  .qt-char-tool,
  .qt-char-related,
  .qt-char-common,
  .qt-char-sideCard,
  .qt-char-suggest{
    border-radius:18px;
  }

  .qt-char-inputHead{
    align-items:flex-start;
  }

  .qt-char-stats{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:7px;
  }

  .qt-char-stat{
    min-height:66px;
    padding:10px 11px;
  }

  .qt-char-stat span{
    font-size:22px;
  }

  .qt-char-stat b{
    font-size:10.5px;
  }

  .qt-char-stat:last-child{
    grid-column:1 / -1;
  }

  .qt-char-miniGuide{
    grid-template-columns:1fr;
  }

  .qt-char-miniGuide div{
    min-height:auto;
  }

  .qt-char-sectionHead h2{
    font-size:21px;
  }

  .qt-char-common h2{
    font-size:20px;
  }
}