:root {
  --ink: #15201b;
  --muted: #65726d;
  --paper: #ffffff;
  --line: #dce5df;
  --field: #0f3d2e;
  --field-dark: #09241d;
  --grass: #20b15a;
  --grass-bright: #8bd648;
  --gold: #f1b82d;
  --coral: #e66b4f;
  --mist: #eef5f1;
  --sky: #dff3ff;
  --shadow: 0 18px 45px rgba(13, 36, 28, 0.12);
  --shadow-soft: 0 10px 24px rgba(13, 36, 28, 0.09);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(223, 243, 255, 0.75) 0, rgba(238, 245, 241, 0) 360px),
    var(--mist);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

body:has(> .article-sidebar),
body:has(> .about-sidebar) {
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(280px, 340px);
  column-gap: 32px;
  justify-content: center;
  align-items: start;
}

body:has(> .article-sidebar) > header,
body:has(> .article-sidebar) > footer,
body:has(> .about-sidebar) > header,
body:has(> .about-sidebar) > footer {
  grid-column: 1 / -1;
  width: 100%;
}

body:has(> .article-sidebar) > .article-page-main,
body:has(> .about-sidebar) > .about-page-main {
  width: 100%;
  margin-right: 0;
}

body:has(> .article-sidebar) > .article-sidebar,
body:has(> .about-sidebar) > .about-sidebar {
  width: 100%;
  margin-left: 0;
}

img,
svg,
iframe {
  max-width: 100%;
}

img {
  height: auto;
  display: block;
}

a {
  color: #137f48;
  text-decoration: none;
}

a:hover {
  color: #0d5e36;
}

p {
  margin: 0 0 1.2rem;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: 0;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 4.6rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.55rem);
  margin-top: 2.4rem;
}

h3 {
  font-size: clamp(1.22rem, 1.7vw, 1.55rem);
  margin-top: 1.75rem;
}

h4 {
  font-size: 1.05rem;
}

ul,
ol {
  padding-left: 1.25rem;
  margin: 0 0 1.35rem;
}

li + li {
  margin-top: 0.4rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 229, 223, 0.9);
  backdrop-filter: blur(18px);
}

.header-container {
  width: min(var(--container), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: center;
}

.logo a,
.footer-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
}

.logo img,
.footer-logo img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(32, 177, 90, 0.18);
}

.site-name,
.footer-logo span {
  max-width: 210px;
  overflow-wrap: anywhere;
  font-size: 0.98rem;
}

.search-box {
  display: flex;
  align-items: center;
  flex: 1 1 320px;
  max-width: 420px;
  min-width: 190px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fbf9;
  padding: 4px;
}

.search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  padding: 10px 8px 10px 14px;
  font: inherit;
  font-size: 0.95rem;
}

.search-box button,
.mobile-menu-toggle,
.pagination-btn,
.pagination-number,
.submit-btn,
.modal-close-btn,
.comments-toggle,
.toggle-btn {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.search-box button {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  color: white;
  background: var(--field);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.search-box button:hover {
  transform: translateY(-1px);
  background: #137f48;
}

.main-nav ul,
.footer-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
  white-space: nowrap;
}

.main-nav li,
.footer-nav li {
  margin-top: 0;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--field);
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--field);
  padding: 10px;
}

.mobile-menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
  position: relative;
  min-height: clamp(430px, 74vh, 720px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--field-dark);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(9, 36, 29, 0), rgba(9, 36, 29, 0.92));
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  opacity: 0.86;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 clamp(42px, 8vh, 80px);
  color: white;
}

.hero-overlay h1 {
  color: white;
  text-shadow: 0 5px 28px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
  max-width: 660px;
  margin: 0;
  color: #e4f5eb;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 650;
}

body > main,
.blog-page-wrapper,
body > aside {
  width: min(var(--container), calc(100% - 40px));
  margin: 46px auto;
}

body > main:not(.blog-main):not(.about-page-main):not(.article-page-main):not(.contact-page-main):not(.policy-page-main) {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(24px, 4vw, 54px);
}

body > main > main,
.article-page-main > main {
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}

main > img,
article img,
section > img,
.policy-content img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  margin: 1.75rem 0 2.25rem;
  object-fit: cover;
}

main > p:first-of-type,
.intro-text {
  color: #3d4a45;
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
}

main section {
  scroll-margin-top: 110px;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  margin: 1.6rem 0 2.1rem;
}

th,
td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: white;
  background: var(--field);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

tr:nth-child(even) td {
  background: #f8fbf9;
}

blockquote {
  margin: 1.8rem 0;
  padding: 22px 24px;
  color: #21342c;
  background: linear-gradient(90deg, rgba(241, 184, 45, 0.22), rgba(32, 177, 90, 0.12));
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  font-weight: 700;
}

.blog-page-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}

.blog-main,
.about-page-main,
.article-page-main,
.contact-page-main,
.policy-page-main {
  width: min(var(--container), calc(100% - 40px));
  margin: 46px auto;
}

.blog-page-wrapper .blog-main {
  width: 100%;
  margin: 0;
}

.blog-header,
.about-header,
.contact-header,
.policy-content,
.author-hero,
.author-topics,
.author-featured,
.author-approach,
.author-currently,
.comments-section,
.contact-form-section,
.contact-map-section,
.about-section,
.article-page-main article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.blog-header,
.about-header,
.contact-header {
  padding: clamp(26px, 4vw, 46px);
  margin-bottom: 26px;
  background:
    linear-gradient(135deg, rgba(32, 177, 90, 0.12), rgba(223, 243, 255, 0.85)),
    var(--paper);
}

.article-page-main article,
.policy-content {
  padding: clamp(24px, 4vw, 52px);
}

.articles-container,
.featured-articles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.blog-post,
.featured-article-card,
.popular-post-item,
.team-member {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.team-member {
  padding: 22px;
}

.team-member h4,
.team-member p:last-child {
  margin-bottom: 0;
}

.blog-post:hover,
.featured-article-card:hover,
.popular-post-item:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 177, 90, 0.42);
  box-shadow: var(--shadow);
}

.blog-post.featured {
  grid-column: 1 / -1;
}

.post-link,
.featured-article-card a {
  display: grid;
  height: 100%;
  color: inherit;
}

.blog-post.featured .post-link {
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
}

.post-image-wrapper,
.featured-article-card a > img {
  min-height: 230px;
  background: linear-gradient(135deg, var(--field), var(--grass));
}

.post-image,
.featured-article-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.post-details,
.featured-article-card a {
  padding: 22px;
}

.featured-article-card a {
  grid-template-rows: auto auto auto 1fr auto;
}

.featured-article-card img {
  margin: -22px -22px 18px;
  width: calc(100% + 44px);
}

.featured-badge,
.article-category,
.topic-tag,
.post-meta span,
.policy-meta,
.update-date {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.featured-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  color: var(--field-dark);
  background: var(--gold);
  padding: 6px 11px;
}

.article-category,
.topic-tag {
  color: #0e5d36;
  background: rgba(32, 177, 90, 0.14);
  padding: 6px 10px;
  margin-bottom: 12px;
}

.post-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  margin: 12px 0;
}

.post-meta span {
  color: #51625b;
  background: #edf5f1;
  padding: 4px 9px;
}

.post-excerpt,
.team-member-bio,
.comments-intro,
.contact-description {
  color: var(--muted);
}

.read-more {
  color: #0d7a43;
  font-weight: 900;
}

.blog-sidebar,
.article-sidebar,
.about-sidebar,
.author-sidebar,
.contact-sidebar {
  display: grid;
  gap: 18px;
}

.sidebar-widget,
.contact-info-box,
.author-aside,
.popular-posts-aside,
.recent-posts-aside,
.social-share-aside,
.comments-aside {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.sidebar-widget h3,
.contact-info-box h3 {
  margin-top: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.article-sidebar .author-widget {
  padding: 26px;
}

.article-sidebar .author-widget .author-bio {
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
  text-align: left;
}

.article-sidebar .author-widget .author-photo {
  width: 116px;
  height: 116px;
  margin: 2px 0 4px;
  border-width: 4px;
}

.article-sidebar .author-widget .author-details {
  min-width: 0;
}

.article-sidebar .author-widget .author-details h4 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.article-sidebar .author-widget .author-details p {
  color: #4f6059;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.article-sidebar .author-widget .author-links {
  gap: 8px;
}

.article-sidebar .author-widget .social-link {
  min-height: 38px;
  padding: 8px 11px;
  font-size: 0.94rem;
}

.sidebar-list,
.sidebar-updates,
.author-facts,
.browser-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-list li,
.sidebar-updates li,
.author-facts li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.sidebar-list li:last-child,
.sidebar-updates li:last-child,
.author-facts li:last-child {
  border-bottom: 0;
}

.pagination {
  margin-top: 28px;
}

.pagination-container,
.pagination-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pagination-btn,
.pagination-number,
.submit-btn,
.modal-close-btn,
.comments-toggle,
.toggle-btn,
.contact-button,
.social-link,
.share-btn,
.modal-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  font-weight: 850;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pagination-btn,
.pagination-number {
  padding: 8px 13px;
  color: var(--field);
  background: #fff;
  border: 1px solid var(--line);
}

.pagination-number.active,
.pagination-btn:not(:disabled):hover,
.pagination-number:hover {
  color: #fff;
  background: var(--field);
  border-color: var(--field);
}

.pagination-btn:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.about-content-wrapper,
.contact-content-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  align-items: start;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
}

.about-section,
.contact-form-section,
.contact-map-section {
  padding: clamp(22px, 3vw, 34px);
  margin-bottom: 22px;
}

.author-bio,
.author-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}

.author-photo,
.author-hero-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid white;
  box-shadow: var(--shadow-soft);
  margin: 0;
}

.author-hero {
  grid-template-columns: 220px 1fr;
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(15, 61, 46, 0.93), rgba(19, 127, 72, 0.84)),
    var(--field);
  color: #fff;
}

.author-hero h1,
.author-hero p {
  color: #fff;
}

.author-hero-photo {
  width: 210px;
  height: 210px;
}

.author-topics,
.author-featured,
.author-approach,
.author-currently,
.comments-section {
  padding: clamp(24px, 4vw, 42px);
  margin-top: 24px;
}

.topic-tags,
.author-social-links,
.author-links,
.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.social-link,
.share-btn,
.contact-button,
.modal-link {
  padding: 9px 13px;
  color: var(--field);
  background: #f4faf6;
  border: 1px solid rgba(32, 177, 90, 0.22);
}

.social-link:hover,
.share-btn:hover,
.contact-button:hover,
.modal-link:hover {
  color: white;
  background: var(--field);
  transform: translateY(-1px);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

label {
  display: block;
  margin-bottom: 7px;
  color: #263a31;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfc;
  color: var(--ink);
  padding: 12px 14px;
  font: inherit;
  outline: 0;
}

textarea {
  resize: vertical;
  min-height: 130px;
}

input:focus,
textarea:focus {
  border-color: var(--grass);
  box-shadow: 0 0 0 4px rgba(32, 177, 90, 0.15);
}

.submit-btn,
.modal-close-btn,
.comments-toggle,
.toggle-btn {
  color: white;
  background: var(--field);
  padding: 11px 18px;
}

.submit-btn:hover,
.modal-close-btn:hover,
.comments-toggle:hover,
.toggle-btn:hover {
  background: #137f48;
  transform: translateY(-1px);
}

.contact-detail-item,
.contact-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail-item:last-child,
.contact-item:last-child {
  border-bottom: 0;
}

.contact-detail-item svg {
  flex: 0 0 auto;
  color: var(--grass);
  margin-top: 4px;
}

.map-container {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.policy-page-main {
  max-width: 900px;
}

.policy-meta {
  display: block;
  width: auto;
  padding: 16px 18px;
  margin: 0 0 24px;
  background: #f3f9f5;
  color: #35473f;
}

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

.search-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(9, 36, 29, 0.72);
  backdrop-filter: blur(8px);
}

.search-modal {
  width: min(480px, 100%);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
  padding: 30px;
  text-align: center;
}

.search-modal-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sky);
  font-size: 1.6rem;
}

.search-modal-links {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

footer {
  margin-top: 64px;
  color: #d9eee4;
  background:
    linear-gradient(135deg, rgba(9, 36, 29, 0.98), rgba(15, 61, 46, 0.96)),
    var(--field-dark);
}

.footer-container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  gap: 26px;
  align-items: center;
}

.footer-nav {
  justify-self: end;
}

.footer-nav ul {
  justify-content: flex-end;
  gap: 10px;
}

.footer-logo,
.footer-info p,
.footer-nav a {
  color: #e9fff5;
}

.footer-info {
  color: #c8e3d7;
  font-size: 0.94rem;
}

.footer-info p {
  margin: 0.2rem 0;
}

.footer-datetime {
  color: var(--grass-bright);
  font-weight: 800;
}

.footer-nav a {
  display: inline-flex;
  padding: 7px 9px;
  border-radius: var(--radius);
  font-weight: 750;
}

.footer-nav a:hover {
  color: var(--field-dark);
  background: var(--grass-bright);
}

@media (max-width: 1100px) {
  body:has(> .article-sidebar),
  body:has(> .about-sidebar) {
    display: block;
  }

  .header-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
  }

  .search-box {
    grid-column: 1 / -1;
    order: 3;
    max-width: none;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    align-items: stretch;
    flex-direction: column;
  }

  .main-nav a {
    width: 100%;
    justify-content: center;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .blog-page-wrapper,
  .contact-content-wrapper {
    grid-template-columns: 1fr;
  }

  .blog-post.featured .post-link,
  .author-hero {
    grid-template-columns: 1fr;
  }

  .author-hero-photo {
    width: 170px;
    height: 170px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo,
  .footer-nav ul {
    justify-content: center;
  }

  .footer-nav {
    justify-self: center;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .header-container,
  body > main,
  .blog-page-wrapper,
  body > aside,
  .blog-main,
  .about-page-main,
  .article-page-main,
  .contact-page-main,
  .policy-page-main,
  .footer-container,
  .hero-overlay {
    width: min(100% - 28px, var(--container));
  }

  .header-container {
    gap: 12px;
    min-height: 70px;
  }

  .site-name {
    max-width: 145px;
    font-size: 0.9rem;
  }

  .hero-section {
    min-height: 480px;
  }

  .articles-container,
  .featured-articles-grid,
  .form-row,
  .author-bio {
    grid-template-columns: 1fr;
  }

  .blog-header,
  .about-header,
  .contact-header,
  .article-page-main article,
  .policy-content,
  body > main:not(.blog-main):not(.about-page-main):not(.article-page-main):not(.contact-page-main):not(.policy-page-main) {
    padding: 22px;
  }

  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .post-image,
  .featured-article-card img,
  .post-image-wrapper {
    min-height: 190px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2rem;
  }

  .logo img,
  .footer-logo img {
    width: 36px;
    height: 36px;
  }

  .search-box input {
    font-size: 16px;
  }

  .pagination-btn,
  .pagination-number {
    flex: 1 1 auto;
  }
}
