﻿:root {
  color-scheme: light;
  --page-bg: #f4f8fc;
  --paper: #ffffff;
  --ink: #132235;
  --muted: #617086;
  --line: #dbe7f3;
  --deep: #174a7c;
  --deep-2: #256fa8;
  --gold: #5ca8e8;
  --soft: #eaf4ff;
  --sekil-bg: #f3f8fd;
  --sekil-surface: #fbfdff;
  --sekil-ink: #142235;
  --sekil-muted: #607086;
  --sekil-line: #d7e5f2;
  --sekil-brand: #23689f;
  --sekil-brand-strong: #12365d;
  --sekil-accent: #4aa3df;
  --sekil-focus: rgba(74, 163, 223, .24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--page-bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeSpeed;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header,
main,
.site-footer {
  width: min(1120px, calc(100% - 28px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--deep);
  font-size: 20px;
  font-weight: 950;
  text-decoration: none;
}

.top-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.top-nav::-webkit-scrollbar {
  display: none;
}

.top-nav a,
.cluster-box a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  color: var(--deep);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: 22px;
  align-items: end;
  padding: 28px 0 20px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--deep-2);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 64px;
  line-height: .96;
  letter-spacing: 0;
}

.hero p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero .pillar-return {
  margin-top: 12px;
  font-size: 16px;
}

.pillar-return a,
.pillar-support a {
  color: var(--deep);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.hero-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-content: end;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 42px rgba(31,44,39,.08);
}

.hero-panel span {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--deep);
  font-weight: 900;
}

.tool-shell,
.content-grid,
.faq,
.symbol-page {
  margin-top: 18px;
}

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

.section-heading h2,
.content-grid h2,
.faq h2,
.cluster-box h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: 0;
}

.section-heading p,
.content-grid p,
.faq p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 18px;
}

.content-grid.legal-layout {
  align-items: start;
}

.content-grid article,
.cluster-box,
.faq,
.symbol-page {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.symbol-page {
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(232, 244, 255, .92)),
    var(--paper);
  box-shadow: 0 18px 48px rgba(23, 74, 124, .08);
}

.symbol-page-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 2px 2px 0;
}

.symbol-page-head h2 {
  margin: 0;
  color: #0f365e;
  font-size: 28px;
  line-height: 1.15;
}

.symbol-page-head p {
  max-width: 820px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.symbol-copy-status {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(37, 111, 168, .28);
  border-radius: 999px;
  background: #ffffff;
  color: var(--deep);
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(23, 74, 124, .08);
}

.symbol-toast {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 50;
  max-width: min(360px, calc(100% - 32px));
  padding: 11px 15px;
  border: 1px solid rgba(37, 111, 168, .28);
  border-radius: 999px;
  background: #0f365e;
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 16px 42px rgba(13, 34, 58, .24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(-50% + 10px));
  transition: opacity .16s ease, transform .16s ease;
}

.symbol-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.symbol-jump {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px;
  border: 1px solid rgba(37, 111, 168, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  scrollbar-width: thin;
}

.symbol-jump a {
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid rgba(37, 111, 168, .2);
  border-radius: 8px;
  background: #eef7ff;
  color: var(--deep);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.symbol-jump a:hover,
.symbol-jump a:focus {
  border-color: rgba(37, 111, 168, .42);
  background: rgba(215, 235, 255, .95);
}

.symbol-groups {
  display: grid;
  gap: 16px;
}

.symbol-group {
  padding: 14px;
  border: 1px solid rgba(37, 111, 168, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  scroll-margin-top: 16px;
}

.symbol-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(37, 111, 168, .12);
}

.symbol-group-head h3 {
  margin: 0;
  color: #12365d;
  font-size: 19px;
  line-height: 1.2;
}

.symbol-group-head span {
  padding: 5px 9px;
  border-radius: 999px;
  background: #eaf4ff;
  color: #23689f;
  font-size: 13px;
  font-weight: 800;
}

.symbol-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(46px, 1fr));
  gap: 9px;
}

.symbol-copy {
  min-width: 0;
  min-height: 46px;
  padding: 6px;
  border: 1px solid rgba(37, 111, 168, .18);
  border-radius: 8px;
  background: #f8fcff;
  color: #0d223a;
  font: inherit;
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
  box-shadow: inset 0 -1px 0 rgba(37, 111, 168, .08);
  transition: transform .14s ease, border-color .14s ease, background .14s ease, box-shadow .14s ease;
}

.symbol-copy:hover,
.symbol-copy:focus {
  border-color: rgba(37, 111, 168, .58);
  background: #eaf4ff;
  box-shadow: 0 10px 24px rgba(23, 74, 124, .14);
  transform: translateY(-1px);
  outline: none;
}

.symbol-copy.is-copied {
  border-color: rgba(25, 135, 84, .55);
  background: #e2f8ed;
  color: #0d3f29;
}

.emoji-list {
  grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
}

.emoji-copy {
  min-height: 50px;
  font-size: 25px;
}

.article-section + .article-section {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.content-grid article p {
  margin-top: 12px;
}

.cluster-box {
  display: grid;
  gap: 8px;
  align-content: start;
}

.cluster-box h2 {
  margin-bottom: 4px;
}

.cluster-box .pillar-link {
  display: grid;
  gap: 3px;
  min-height: auto;
  padding: 12px;
  border-color: rgba(37, 111, 168, .34);
  background: linear-gradient(135deg, rgba(234, 244, 255, .98), rgba(255, 255, 255, .96));
  color: var(--deep);
  white-space: normal;
}

.cluster-box .pillar-link strong {
  font-size: 15px;
}

.cluster-box .pillar-link span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.faq {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.faq details {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  margin-top: 8px;
}

.site-footer {
  padding: 28px 0 30px;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(160px, .8fr) minmax(160px, .8fr);
  gap: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(234, 244, 255, .9));
}

.footer-brand p,
.footer-bottom p {
  margin: 0;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--deep);
  font-size: 18px;
  font-weight: 950;
  text-decoration: none;
}

.site-footer nav {
  display: grid;
  gap: 8px;
  align-content: start;
}

.site-footer h2 {
  margin: 0 0 2px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.site-footer a {
  color: var(--deep);
  font-weight: 850;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 4px 0;
}

.comments-panel {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

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

.comments-head h2 {
  margin: 0;
  font-size: 24px;
}

.comments-head p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.comments-head span,
.admin-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--deep);
  font-weight: 850;
  white-space: nowrap;
}

.comment-form,
.admin-login {
  display: grid;
  gap: 12px;
}

.comment-form label,
.admin-login label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 850;
}

.comment-form input,
.comment-form textarea,
.admin-login input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfdff;
  color: var(--ink);
  font: 400 16px/1.4 ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  outline: none;
}

.comment-form input,
.admin-login input {
  min-height: 46px;
  padding: 10px 12px;
}

.comment-form textarea {
  min-height: 118px;
  resize: vertical;
  padding: 12px;
}

.comment-form input:focus,
.comment-form textarea:focus,
.admin-login input:focus {
  border-color: var(--sekil-accent);
  box-shadow: 0 0 0 4px var(--sekil-focus);
}

.comment-form button,
.admin-login button,
.admin-logout button,
.admin-actions button {
  justify-self: start;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--sekil-brand-strong);
  border-radius: 12px;
  background: var(--sekil-brand-strong);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.comment-honey {
  position: absolute;
  left: -9999px;
}

.comment-alert {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #eaf7ef;
  color: #12613b;
  font-weight: 800;
}

.comment-alert.error {
  background: #fff1f1;
  color: #9d2222;
}

.comment-list,
.admin-comments {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.comment-item,
.admin-comment {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfdff;
}

.comment-item strong {
  display: block;
  color: var(--deep);
  font-size: 18px;
}

.comment-item p,
.admin-comment p {
  margin: 8px 0;
  color: var(--ink);
  line-height: 1.55;
}

.comment-item span,
.admin-comment small {
  color: var(--muted);
  font-weight: 750;
}

.comments-load {
  min-height: 42px;
  margin-top: 14px;
  padding: 9px 14px;
  border: 1px solid rgba(74, 163, 223, .34);
  border-radius: 12px;
  background: #edf7ff;
  color: var(--deep);
  font-weight: 900;
  cursor: pointer;
}

.comment-empty {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.comment-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.comment-pagination span {
  color: var(--muted);
  font-weight: 800;
}

.comment-page-button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(74, 163, 223, .34);
  border-radius: 10px;
  background: #edf7ff;
  color: var(--deep);
  font-weight: 900;
  cursor: pointer;
}

.comment-page-button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.admin-shell {
  width: min(980px, calc(100% - 28px));
  margin: 0 auto;
  padding: 28px 0;
}

.admin-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

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

.admin-head p {
  margin: 0 0 6px;
  color: var(--deep-2);
  font-weight: 900;
}

.admin-head h1 {
  margin: 0;
  font-size: 38px;
}

.admin-head a {
  color: var(--deep);
  font-weight: 850;
  text-decoration: none;
}

.admin-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.admin-logout {
  margin-bottom: 14px;
}

.admin-comment {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.admin-comment > div > span {
  display: inline-flex;
  margin-bottom: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #fff5df;
  color: #8a5b00;
  font-size: 13px;
  font-weight: 900;
}

.admin-comment.approved > div > span {
  background: #eaf7ef;
  color: #12613b;
}

.admin-comment h2 {
  margin: 0;
  font-size: 20px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: end;
}

.admin-actions .danger {
  border-color: #9d2222;
  background: #9d2222;
}

@media (max-width: 840px) {
  .hero h1 {
    font-size: 40px;
  }

  .site-header {
    display: block;
  }

  .top-nav {
    margin-top: 8px;
  }

  .hero,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }

  .comments-head,
  .admin-head,
  .admin-comment {
    grid-template-columns: 1fr;
    display: grid;
  }

  .admin-actions {
    justify-content: start;
  }

  .hero {
    padding-top: 18px;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 6px;
  }
}
#sekil_orta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100% !important;
  max-width: 1120px !important;
  margin: 0 auto;
  padding: 0;
  color: var(--sekil-ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.arama {
  grid-column: 1 / -1;
  position: sticky;
  top: 10px;
  z-index: 5;
  width: 100%;
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid rgba(62, 164, 142, .38);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 20%, rgba(120, 213, 190, .56), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(86, 169, 235, .48), transparent 32%),
    linear-gradient(135deg, rgba(223, 255, 247, .98), rgba(219, 239, 255, .98) 52%, rgba(202, 232, 255, .96));
  box-shadow: 0 22px 56px rgba(18, 91, 76, .17), 0 10px 30px rgba(18, 54, 93, .10);
  backdrop-filter: blur(14px);
}

.arama img {
  position: absolute;
  width: 24px !important;
  height: 24px;
  margin: 12px 0 0 14px !important;
  object-fit: contain;
}

#converting_text {
  width: 100%;
  min-height: 50px;
  margin: 0;
  padding: 10px 14px 10px 48px !important;
  border: 2px solid #17806f;
  border-radius: 16px;
  background: rgba(255, 255, 255, .92);
  color: #000000;
  font: 400 18px/1.35 ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  outline: none;
  box-shadow: 0 12px 30px rgba(18, 91, 76, .16), inset 0 1px 0 rgba(255,255,255,.9);
}

#converting_text:focus {
  border-color: #0b8c78;
  box-shadow: 0 0 0 4px rgba(62, 164, 142, .22), 0 14px 34px rgba(18, 91, 76, .20);
}


#converting_text::placeholder {
  color: #222222;
  opacity: 1;
}
.sekil-comment-link {
  grid-column: 1 / -1;
  display: block !important;
  width: 100% !important;
  min-height: 42px !important;
  height: auto !important;
  margin: 16px auto 18px !important;
  padding: 9px 14px !important;
  border: 1px solid rgba(74, 163, 223, .28) !important;
  border-radius: 14px !important;
  background: #edf7ff;
  color: var(--sekil-brand-strong) !important;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35 !important;
  text-align: center;
  text-decoration: none;
}

#sekil_orta h3 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  align-items: stretch;
  width: 100%;
  min-height: 164px;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--sekil-line);
  border-radius: 14px;
  background: linear-gradient(180deg, #fbfdff 0%, #f4faff 100%);
  box-shadow: 0 14px 34px rgba(20, 62, 101, .08);
  font: 800 14px/1.2 ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-transform: none;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

#sekil_orta h3:hover {
  border-color: rgba(74, 163, 223, .38);
  box-shadow: 0 20px 46px rgba(20, 62, 101, .13);
  transform: translateY(-2px);
}

.form-control {
  grid-column: 1 / -1;
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 44px;
  margin: 0 !important;
  padding: 8px 10px;
  overflow: hidden;
  border: 1px solid #d8e7f5;
  border-radius: 10px;
  background: #fbfdff;
  color: var(--sekil-ink);
  font-size: 20px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.form-control:focus {
  border-color: var(--sekil-brand);
  outline: 3px solid var(--sekil-focus);
}

.fontadi {
  grid-column: 1 / -1;
  order: -1;
  max-width: 100%;
  padding: 7px 9px;
  border-radius: 999px;
  background: #dcefff;
  color: #12365d;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  text-align: left;
  white-space: normal;
}

.btn,
.sekil-copy {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-width: 84px;
  min-height: 38px;
  margin: 0;
  padding: 7px 12px;
  border: 1px solid #12365d;
  border-radius: 10px;
  background: #12365d;
  color: #f4faff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease;
}

.sekil-favorite-toggle {
  grid-column: 2;
  display: inline-grid;
  place-items: center;
  justify-self: end;
  width: 38px;
  min-width: 38px;
  height: 38px;
  margin: 0;
  border: 1px solid rgba(210, 45, 68, .3);
  border-radius: 10px;
  background: #fff7f9;
  color: #d62323;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease;
}

.sekil-favorite-toggle:hover,
.sekil-favorite-toggle:focus {
  background: #ffe9ee;
  box-shadow: 0 10px 22px rgba(214, 35, 35, .14);
  outline: none;
  transform: translateY(-1px);
}

.sekil-favorite-toggle.is-active {
  border-color: rgba(210, 45, 68, .48);
  background: #d62323;
  color: #ffffff;
}

.sekil-favorites {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  margin: -6px 0 8px;
  padding: 14px;
  border: 1px solid rgba(74, 163, 223, .25);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(234, 244, 255, .9));
  box-shadow: 0 16px 38px rgba(18, 54, 93, .08);
}

.sekil-favorites-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sekil-favorites h2 {
  margin: 0;
  color: #12365d;
  font-size: 17px;
  line-height: 1.2;
}

.sekil-favorites-clear {
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(37, 111, 168, .22);
  border-radius: 999px;
  background: #ffffff;
  color: #23689f;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.sekil-favorites.is-empty .sekil-favorites-clear {
  display: none;
}

.sekil-favorites-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.sekil-favorites-empty {
  margin: 0;
  color: var(--sekil-muted);
  font-size: 14px;
  line-height: 1.45;
}

.sekil-favorite-item {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(74, 163, 223, .2);
  border-radius: 12px;
  background: #ffffff;
}

.sekil-favorite-item strong {
  color: #12365d;
  font-size: 13px;
  line-height: 1.2;
}

.sekil-favorite-item p {
  min-width: 0;
  margin: 0;
  padding: 8px 9px;
  overflow: hidden;
  border-radius: 9px;
  background: #f4faff;
  color: #142235;
  font-size: 18px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sekil-favorite-item div {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sekil-favorite-copy,
.sekil-favorite-remove {
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid #12365d;
  border-radius: 9px;
  background: #12365d;
  color: #ffffff;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.sekil-favorite-remove {
  border-color: rgba(210, 45, 68, .28);
  background: #fff7f9;
  color: #d62323;
}

.sekil-more-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding: 8px 0 2px;
}

.sekil-more-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  min-height: 54px;
  padding: 12px 22px;
  border: 1px solid rgba(74, 163, 223, .34);
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #edf7ff 100%);
  color: #d62323;
  box-shadow: 0 14px 34px rgba(18, 54, 93, .12);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.sekil-more-button span {
  color: #d62323;
}

.sekil-more-button::after {
  content: "↓";
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #12365d;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
}

.sekil-more-button small {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(74, 163, 223, .14);
  color: #23689f;
  font-size: 12px;
  font-weight: 900;
}

.sekil-more-button:hover,
.sekil-more-button:focus {
  border-color: rgba(74, 163, 223, .44);
  outline: none;
  box-shadow: 0 18px 42px rgba(18, 54, 93, .16);
  transform: translateY(-1px);
}

.sekil-copy:hover,
.sekil-copy:focus {
  background: #09223f;
  box-shadow: 0 10px 22px rgba(18, 54, 93, .26);
  outline: none;
  transform: translateY(-1px);
}

.copy_text {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.iframe_bottom {
  float: left;
  width: 100%;
}

.iframe_box,
.iframe_code {
  float: left;
  width: 49%;
  margin: 0 .5%;
}

.iframe_box iframe {
  float: left;
  width: 100%;
  margin-top: 30px;
}

.iframe_title {
  float: left;
  width: 100%;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
}

textarea#iframde_code {
  font-size: 16px !important;
}

@media (max-width: 1040px) {
  #sekil_orta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .symbol-page-head,
  .symbol-group-head {
    align-items: stretch;
    flex-direction: column;
  }

  .symbol-copy-status {
    width: fit-content;
  }

  .symbol-list {
    grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
  }

  #sekil_orta {
    grid-template-columns: 1fr;
    max-width: 100% !important;
  }

  .arama {
    border-radius: 14px;
    padding: 12px;
  }

  #sekil_orta h3 {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) 40px;
    gap: 8px;
    padding: 10px;
  }

  .fontadi {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-self: stretch;
    max-width: 100%;
    text-align: left;
  }

  .sekil-favorites-list {
    grid-template-columns: 1fr;
  }

  .sekil-copy {
    min-width: 78px;
    padding-inline: 8px;
  }

  .form-control {
    font-size: 17px;
  }

  .iframe_box,
  .iframe_code {
    width: 100%;
  }
}













