/* bugungunbatimi.com tema — gun batimi turuncusu */

:root {
  --ink: #34261a;
  --ink-soft: #6d5a49;
  --orange: #ea6a12;
  --orange-dark: #c2540a;
  --orange-deep: #7c3408;
  --peach: #ffe8d4;
  --peach-soft: #fff8f1;
  --sky: #fff1dc;
  --line: #f0dfcd;
  --amber: #f4b942;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(234, 106, 18, 0.12);
  --font: 'Poppins', -apple-system, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 22px;
}

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); text-decoration: underline; }

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

/* ---------- Ust menu ---------- */

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 60;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }

.brand-text {
  font-size: 1.14rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-text strong { color: var(--orange); font-weight: 700; }

.nav-list {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-list a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.93rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.nav-list a:hover {
  color: var(--orange-dark);
  text-decoration: none;
  border-bottom-color: var(--orange);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ---------- Ekmek kirintisi ---------- */

.breadcrumbs {
  background: var(--peach-soft);
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  padding: 10px 0;
}
.breadcrumbs li + li::before {
  content: "\203A";
  margin: 0 8px 0 4px;
  color: var(--ink-soft);
}
.breadcrumbs span[aria-current] { color: var(--ink-soft); }

/* ---------- Hero + gunes paneli ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(720px 420px at 85% -80px, #ffd9ae 0%, rgba(255, 217, 174, 0) 70%),
    radial-gradient(620px 380px at -100px 115%, var(--peach) 0%, rgba(255, 232, 212, 0) 70%),
    linear-gradient(180deg, #fff3e4 0%, var(--white) 55%);
  padding: 52px 0 64px;
}

.hero h1 {
  font-size: clamp(1.9rem, 4.2vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 720px;
}

.hero h1 .accent { color: var(--orange); }

.hero-lead {
  margin-top: 16px;
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.sun-panel {
  margin-top: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 28px 24px;
}

.sun-controls {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1fr auto;
  gap: 14px;
  align-items: end;
}

@media (max-width: 1020px) and (min-width: 861px) {
  .sun-controls { grid-template-columns: 1fr 1fr; }
}

.sun-loc-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 10px;
  min-height: 1.2em;
}

.sun-headline {
  text-align: center;
  padding: 22px 0 6px;
}
.sun-headline-label {
  font-size: 1.02rem;
  color: var(--ink-soft);
}
.sun-headline-label strong { color: var(--ink); }

.sun-big {
  font-size: clamp(3rem, 9vw, 4.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--orange);
  background: linear-gradient(180deg, #f59e0b, var(--orange) 60%, var(--orange-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sun-countdown {
  font-size: 0.95rem;
  color: var(--ink-soft);
  min-height: 1.4em;
}
.sun-countdown strong { color: var(--orange-dark); font-variant-numeric: tabular-nums; }

/* Alan etiketleri ve girdiler */

.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--ink);
}

.field input,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
/* iOS Safari tarih girdisine kendi dogal genisligini dayatip kutuyu tasiriyor */
.field input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  min-width: 0;
  max-width: 100%;
  min-height: 48px;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(234, 106, 18, 0.15);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  border: 0;
  border-radius: 10px;
  padding: 13px 24px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: var(--orange-dark); }
.btn:active { transform: translateY(1px); }

.field-hint {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* Sonuc kartlari */

.result-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.result-card {
  background: var(--peach-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
}
.result-card .rc-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}
.result-card .rc-value {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 3px;
  font-variant-numeric: tabular-nums;
}
.result-card .rc-sub {
  display: block;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.result-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ---------- Gunes cizelgesi ---------- */

.sun-table-wrap {
  margin-top: 22px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.sun-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
  min-width: 420px;
}
.sun-table th, .sun-table td {
  padding: 11px 16px;
  text-align: left;
}
.sun-table th:nth-child(n+2), .sun-table td:nth-child(n+2) {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.sun-table thead th {
  background: var(--peach);
  color: var(--orange-deep);
  font-weight: 600;
  font-size: 0.86rem;
}
.sun-table tbody tr:nth-child(even) { background: var(--peach-soft); }
.sun-table tbody tr + tr { border-top: 1px solid var(--line); }
.sun-table .sun-td-center { text-align: center !important; }
.sun-row-hl td {
  background: var(--sky);
  font-weight: 600;
  color: var(--orange-deep);
}

.days-table { min-width: 560px; }

.today-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 1px 8px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: 1px;
}

/* ---------- Genel bolumler ---------- */

.section { padding: 54px 0; }
.section.tinted { background: var(--peach-soft); }

.section h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}
.section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  bottom: 0.3em;
  width: 5px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--amber), var(--orange));
}

.section .section-lead {
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 26px;
}

.section h3 {
  font-size: 1.12rem;
  font-weight: 600;
  margin: 26px 0 8px;
}

.section p + p { margin-top: 14px; }

.prose { max-width: 760px; }
.prose p { margin-bottom: 14px; }
.prose ul, .prose ol { margin: 0 0 14px 22px; }
.prose li { margin-bottom: 6px; }

/* ---------- Alacakaranlik kartlari ---------- */

.tw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.tw-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: 0 4px 14px rgba(234, 106, 18, 0.05);
}
.tw-card .tw-deg {
  display: inline-block;
  background: var(--peach);
  color: var(--orange-deep);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.tw-card h3 { margin: 0 0 8px; font-size: 1.08rem; }
.tw-card p:last-child {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ---------- Il baglantilari ---------- */

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.city-grid a {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.city-grid a:hover {
  border-color: var(--orange);
  background: var(--peach-soft);
  color: var(--orange-dark);
  text-decoration: none;
}

/* ---------- Icindekiler ---------- */

.toc {
  background: var(--peach-soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 24px 0;
  max-width: 560px;
}
.toc-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.toc ol {
  list-style: none;
  counter-reset: tocnum;
}
.toc > ol > li {
  counter-increment: tocnum;
  margin-bottom: 5px;
  font-size: 0.92rem;
}
.toc > ol > li::before {
  content: counter(tocnum) ".";
  color: var(--orange);
  font-weight: 600;
  margin-right: 8px;
}
.toc ol ol {
  margin: 4px 0 4px 24px;
}
.toc ol ol li {
  font-size: 0.88rem;
  margin-bottom: 3px;
}
.toc ol ol li::before { content: "-"; color: var(--orange); margin-right: 6px; }

/* ---------- SSS ---------- */

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 17px 4px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}
.faq-q:hover { color: var(--orange-dark); }
.faq-q .week-chevron { flex-shrink: 0; }
.faq-a {
  display: none;
  padding: 0 4px 18px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 760px;
}
.faq-item.open .faq-a { display: block; animation: fadeUp 0.3s ease both; }
.faq-item.open .week-chevron { transform: rotate(180deg); }

.week-chevron {
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--ink-soft);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Blog kartlari ---------- */

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

.post-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.post-card-img {
  aspect-ratio: 16 / 9;
  background: var(--peach-soft);
  display: block;
}
.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-card-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }

.post-card h3 {
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 8px;
}
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--orange-dark); text-decoration: none; }

.post-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  flex: 1;
}

.post-meta {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--ink-soft);
  display: flex;
  gap: 12px;
}

/* ---------- Yazi sayfasi ---------- */

.article-head { padding: 44px 0 8px; }
.article-head h1 {
  font-size: clamp(1.6rem, 3.6vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  max-width: 820px;
}
.article-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: 0.86rem;
  margin-top: 12px;
}

.article-featured {
  margin: 26px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.article-featured img { display: block; width: 100%; }

.article-body {
  max-width: 780px;
  font-size: 1.01rem;
}
.article-body h2 {
  font-size: 1.45rem;
  font-weight: 700;
  margin: 34px 0 12px;
  padding-left: 14px;
  position: relative;
}
.article-body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  bottom: 0.3em;
  width: 4px;
  border-radius: 4px;
  background: var(--orange);
}
.article-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 26px 0 10px;
}
.article-body p { margin-bottom: 15px; }
.article-body ul, .article-body ol { margin: 0 0 15px 24px; }
.article-body li { margin-bottom: 7px; }
.article-body img {
  border-radius: 10px;
  margin: 10px 0;
}
.article-body a { font-weight: 500; }
.article-body blockquote {
  border-left: 4px solid var(--orange);
  background: var(--peach-soft);
  padding: 14px 20px;
  border-radius: 0 10px 10px 0;
  margin: 0 0 15px;
  color: var(--ink-soft);
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  font-size: 0.93rem;
}
.article-body th, .article-body td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
}
.article-body th { background: var(--peach-soft); font-weight: 600; }

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 8px;
}
.tag-list a {
  background: var(--peach);
  color: var(--orange-deep);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: 30px;
}
.tag-list a:hover { background: var(--orange); color: var(--white); text-decoration: none; }

.medical-note {
  margin: 30px 0;
  background: #fdf6e7;
  border: 1px solid #f0dfb6;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.86rem;
  color: #7a6733;
  max-width: 780px;
}

.related-title { color: var(--ink); }

/* ---------- Reklam alanlari ---------- */

.ad-slot {
  margin: 30px auto;
  text-align: center;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ad-slot:empty { display: none; }

/* ---------- Sayfalama ---------- */

.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
}
.pagination a, .pagination span {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0 12px;
}
.pagination span.current {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.pagination a:hover { border-color: var(--orange); text-decoration: none; }

/* ---------- Form ---------- */

.contact-form { max-width: 620px; }
.contact-form .field { margin-bottom: 18px; }
.contact-form textarea {
  width: 100%;
  min-height: 160px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.98rem;
  resize: vertical;
}
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(234, 106, 18, 0.15);
}

.alert {
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 0.93rem;
}
.alert.ok { background: var(--peach); color: var(--orange-deep); border: 1px solid #f3d1ac; }
.alert.err { background: #fdecec; color: #99332f; border: 1px solid #f3c6c4; }

/* ---------- Footer ---------- */

.site-footer {
  margin-top: 60px;
  background: #571f04;
  color: #f3d5bd;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 46px 22px;
}

.footer-brand {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-brand strong { color: #fdae63; }

.footer-about p:last-child { font-size: 0.87rem; line-height: 1.7; }

.footer-title {
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #f3d5bd; font-size: 0.88rem; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0;
  font-size: 0.8rem;
}

/* ---------- Cerez bildirimi ---------- */

.cookie-bar {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  justify-content: center;
  animation: cookieUp 0.45s ease both;
}
.cookie-bar[hidden] { display: none; }

@keyframes cookieUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-inner {
  width: 100%;
  max-width: 720px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(87, 31, 4, 0.2);
  padding: 20px 24px;
}

.cookie-title {
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
}

.cookie-text {
  font-size: 0.87rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.cookie-text a { font-weight: 600; }

.cookie-prefs {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.cookie-prefs[hidden] { display: none; }

.cookie-pref {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--peach-soft);
  cursor: pointer;
}
.cookie-pref-info { display: flex; flex-direction: column; gap: 2px; }
.cookie-pref-name { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.cookie-pref-desc { font-size: 0.78rem; color: var(--ink-soft); line-height: 1.45; }
.cookie-pref input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--orange);
  cursor: pointer;
}
.cookie-pref input:disabled { cursor: not-allowed; opacity: 0.6; }

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cookie-btn {
  border-radius: 9px;
  padding: 11px 20px;
  font-family: var(--font);
  font-size: 0.87rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.cookie-btn[hidden] { display: none; }
.cookie-btn.accept {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.cookie-btn.accept:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.cookie-btn.reject {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.cookie-btn.reject:hover { background: #241a11; border-color: #241a11; }
.cookie-btn.manage,
.cookie-btn.save {
  background: var(--peach-soft);
  color: var(--ink-soft);
  border-color: var(--line);
}
.cookie-btn.manage:hover,
.cookie-btn.save:hover { color: var(--ink); border-color: var(--ink-soft); }

/* ---------- Mobil ---------- */

@media (max-width: 860px) {
  .sun-controls { grid-template-columns: 1fr; }
  .sun-panel { padding: 20px 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }

  .nav-toggle { display: flex; }
  .nav-list {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 10px 22px 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  }
  .nav-list.open { display: flex; }
  .nav-list a { display: block; padding: 11px 0; border-bottom: 0; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}
