/* ==========================================================================
   ALAUTI Theme - Custom Layout CSS
   Pixel-perfect match to _resources2 React frontend
   ========================================================================== */

/* --- Site wrapper & background --- */

.alauti-site-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 1382px;
  background-image: url('/wp-content/themes/alauti/assets/images/bg-texture.webp');
  background-size: cover;
  background-position: center top;
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
}

/* --- Desktop Header: logo + nav side by side --- */
/* React: hidden lg:flex items-start gap-8 xl:gap-[100px] pt-[40px] pl-[60px] xl:pl-[100px] pr-[40px] */

.alauti-header {
  position: relative;
  z-index: 1;
  display: none;
  padding: 40px 40px 0 60px;
}

@media (min-width: 1024px) {
  .alauti-header {
    display: grid;
    grid-template-columns: 225px 1fr;
    gap: 32px;
    padding: 40px 40px 0 60px;
    align-items: start;
  }
}

@media (min-width: 1280px) {
  .alauti-header {
    gap: 100px;
    padding-left: 100px;
  }
}

/* Header logo */
.alauti-header-logo {
  display: none;
}

@media (min-width: 1024px) {
  .alauti-header-logo {
    display: block;
    width: 225px;
    height: 225px;
    flex-shrink: 0;
  }

  .alauti-header-logo img,
  .alauti-header-logo svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

/* Header navigation area */
/* React: flex-1 pt-[5px] */
.alauti-header-nav {
  padding-top: 5px;
}

/* --- Navigation Block styling --- */
/* React: flex gap-8 xl:gap-[60px] 2xl:gap-[80px] items-center border-b border-black */
/* NOTE: WP renders the nav as:
   nav.wp-block-navigation > .responsive-container > ... > ul.wp-block-navigation__container
   The ul has BOTH classes: wp-block-navigation AND wp-block-navigation__container */

/* The ul container - this is where border-bottom goes (matches React's nav wrapper div) */
.alauti-header-nav .wp-block-navigation__container {
  border-bottom: 1px solid var(--wp--preset--color--primary) !important;
  padding-bottom: 40px !important;
  gap: 32px !important;
  justify-content: flex-start !important;
}

@media (min-width: 1280px) {
  .alauti-header-nav .wp-block-navigation__container {
    gap: 60px !important;
  }
}

@media (min-width: 1536px) {
  .alauti-header-nav .wp-block-navigation__container {
    gap: 80px !important;
  }
}

/* Remove border-bottom from the nav element itself */
.alauti-header-nav .wp-block-navigation {
  border-bottom: none;
  padding-bottom: 0;
}

/* React: text-[22px] text-black whitespace-nowrap, relative pb-[40px] shrink-0 */
/* The ul has padding-bottom: 40px (set above), each li is relative for the active indicator */
.alauti-header-nav .wp-block-navigation-item {
  position: relative;
  flex-shrink: 0;
}

.alauti-header-nav .wp-block-navigation-item a,
.alauti-header-nav .wp-block-navigation-item .wp-block-navigation-item__content {
  font-size: 22px !important;
  color: var(--wp--preset--color--primary);
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.alauti-header-nav .wp-block-navigation-item a:hover {
  opacity: 0.7;
}

/* Active nav item - thick 4px bottom border at the bottom of the ul padding area
   ul has padding-bottom: 40px, so bottom: -40px from li reaches the ul border */
.alauti-header-nav .wp-block-navigation-item.current-menu-item::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  border-bottom: 4px solid var(--wp--preset--color--primary);
}

/* --- Mobile Header --- */
/* React: lg:hidden flex items-center justify-center px-[35px] pt-[26px] pb-4 */

.alauti-mobile-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 26px 35px 16px;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .alauti-mobile-header {
    display: none;
  }
}

/* React: hamburger button: absolute left-[35px] w-[44px] h-[14px] */
.alauti-hamburger-btn {
  position: absolute;
  left: 35px;
  width: 44px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* React: mobile wordmark h-[33px] w-[158px] */
.alauti-mobile-wordmark-img {
  display: block;
  width: 158px;
  height: 33px;
}

/* React: mx-[35px] h-px bg-black */
.alauti-mobile-divider {
  height: 1px;
  background: black;
  margin: 0 35px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .alauti-mobile-divider {
    display: none;
  }
}

/* --- Mobile overlay menu --- */
/* React: fixed inset-0 z-50 bg-white flex flex-col */

.alauti-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  background: white;
  flex-direction: column;
}

.alauti-mobile-overlay.is-open {
  display: flex;
}

/* Background texture with opacity 60% */
.alauti-mobile-overlay-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url('/wp-content/themes/alauti/assets/images/bg-texture.webp');
  background-size: cover;
  background-position: center top;
  opacity: 0.6;
}

/* React: relative flex items-center px-[35px] pt-[26px] pb-4 */
.alauti-mobile-overlay-header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 26px 35px 16px;
}

/* React: close button w-[44px] h-[31px] */
.alauti-close-btn {
  width: 44px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

/* React: ml-[40px] h-[33px] w-[158px] */
.alauti-mobile-overlay-header .alauti-mobile-wordmark-img {
  margin-left: 40px;
}

/* React: relative mx-[35px] h-px bg-black */
.alauti-mobile-overlay-divider {
  position: relative;
  height: 1px;
  background: black;
  margin: 0 35px;
}

/* React: relative flex-1 flex flex-col items-center justify-center gap-4 */
.alauti-mobile-overlay-nav {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* React: text-[30px] text-black text-center leading-[36px] */
.alauti-mobile-overlay-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 30px;
  color: black;
  text-decoration: none;
  text-align: center;
  line-height: 36px;
  transition: opacity 0.2s;
}

.alauti-mobile-overlay-nav a:hover {
  opacity: 0.7;
}

/* React: relative text-center pb-8 */
.alauti-mobile-overlay-footer {
  position: relative;
  text-align: center;
  padding-bottom: 32px;
}

/* React: text-[19px] text-black */
.alauti-mobile-overlay-footer p {
  font-family: 'DM Sans', sans-serif;
  font-size: 19px;
  color: black;
  margin: 0;
}

/* --- Content area: right-offset on desktop --- */
/* React: outer max-w-[1030px] centered, lg:pl-[368px], inner max-w-[739px], lg:-mt-[40px], pb-[120px] */

.alauti-content-area {
  position: relative;
  z-index: 1;
  padding: 32px 24px 120px;
}

@media (min-width: 1024px) {
  .alauti-content-area {
    max-width: 1030px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0 120px 368px;
    margin-top: -40px;
  }
}

/* Wide content area (gallery) */
/* React: max-w-[1162px] px-6 lg:px-0 lg:pl-[100px] xl:pl-[200px], pb-[120px] */
.alauti-content-wide {
  position: relative;
  z-index: 1;
  padding: 32px 24px 120px;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .alauti-content-wide {
    max-width: 1162px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0 120px 100px;
  }
}

@media (min-width: 1280px) {
  .alauti-content-wide {
    padding-left: 200px;
  }
}

/* Front page content */
/* React: hidden lg:flex, -mt-[80px], max-w-[1162px] pl-[100px] xl:pl-[368px], centered */
.alauti-front-page-content {
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .alauti-front-page-content {
    max-width: 1162px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -80px;
    padding-left: 100px;
  }
}

@media (min-width: 1280px) {
  .alauti-front-page-content {
    padding-left: 368px;
  }
}

/* --- Front page: fun logo --- */
/* React: max-w-[765px] aspect-square mx-auto */
.alauti-fun-logo {
  max-width: 765px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.alauti-fun-logo img {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
}

/* Hide lightbox button on fun logo */
.alauti-fun-logo .lightbox-trigger {
  display: none !important;
}

/* Front page subtitle - hidden on desktop, visible on mobile */
/* React: only shows logo + subtitle on mobile (lg:hidden block) */
.alauti-front-page-subtitle {
  display: block;
}

@media (min-width: 1024px) {
  .alauti-front-page-subtitle {
    display: none;
  }
}

/* Mobile front page section: circular logo + subtitle (lg:hidden) */
.alauti-front-page-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 32px 16px;
  position: relative;
  z-index: 1;
}

.alauti-front-page-mobile .alauti-mobile-logo-image {
  width: 295px !important;
  max-width: 295px !important;
  margin: 0 auto !important;
}

.alauti-front-page-mobile .alauti-mobile-logo-image img {
  width: 295px;
  height: 295px;
  object-fit: contain;
}

.alauti-front-page-mobile p {
  margin-top: 32px;
  font-size: 19px !important;
  text-align: center;
}

@media (min-width: 1024px) {
  .alauti-front-page-mobile {
    display: none !important;
  }
}

/* Hide fun-logo desktop section on mobile */
@media (max-width: 1023px) {
  .alauti-front-page-content {
    display: none !important;
  }
}

/* Mobile wordmark in header */
.alauti-mobile-wordmark {
  display: block;
  line-height: 0;
}

.alauti-mobile-wordmark img {
  width: 158px;
  height: 33px;
  display: block;
}

/* --- Content page spacing --- */
/* React: gap-[40px] lg:gap-[68px] between h1 and content */
.alauti-content-area .wp-block-post-content > .wp-block-heading:first-child {
  margin-top: 32px !important;
  margin-bottom: 40px !important;
}

@media (min-width: 1024px) {
  .alauti-content-area .wp-block-post-content > .wp-block-heading:first-child {
    margin-top: 0 !important;
    margin-bottom: 68px !important;
  }
}

/* --- Block Styles: Support Cards --- */
/* React: border-l-4 pl-6 (24px), gap-6 (24px) between cards, mt-4 first card */

.is-style-support-card-green {
  border-left: 4px solid var(--wp--preset--color--green) !important;
  padding-left: 24px !important;
}

.is-style-support-card-blue {
  border-left: 4px solid var(--wp--preset--color--blue) !important;
  padding-left: 24px !important;
}

.is-style-support-card-coral {
  border-left: 4px solid var(--wp--preset--color--coral) !important;
  padding-left: 24px !important;
}

.is-style-support-card-yellow {
  border-left: 4px solid var(--wp--preset--color--yellow) !important;
  padding-left: 24px !important;
}

/* Support card h3: React text-[22px] lg:text-[26px] mb-2 */
[class*="is-style-support-card-"] .wp-block-heading {
  margin-bottom: 8px;
}

/* --- Block Styles: Circle Cover --- */
/* React: rounded-full w-48 h-48 db:w-[356px] db:h-[356px] hover:shadow-lg transition-shadow */

.is-style-circle {
  border-radius: 50% !important;
  overflow: hidden;
  aspect-ratio: 1 !important;
  width: 192px;
  min-height: auto !important;
  transition: box-shadow 0.3s ease;
}

@media (min-width: 1024px) {
  .is-style-circle {
    width: 356px;
  }
}

.is-style-circle:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

/* Hide the dim overlay — React has no dim */
.is-style-circle .wp-block-cover__background {
  display: none;
}

.is-style-circle .wp-block-cover__inner-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Circle link text: React text-xl db:text-[30px] font-normal */
.is-style-circle .wp-block-cover__inner-container p a,
.is-style-circle .wp-block-cover__inner-container p {
  color: var(--wp--preset--color--primary);
  font-size: 20px;
  font-weight: 400;
}

@media (min-width: 1024px) {
  .is-style-circle .wp-block-cover__inner-container p a,
  .is-style-circle .wp-block-cover__inner-container p {
    font-size: 30px;
  }
}

/* --- Gallery grid --- */

.alauti-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 1024px) {
  .alauti-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Photo cell: square with cover image */
.alauti-gallery-grid .alauti-gallery-cell {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}

.alauti-gallery-grid .alauti-gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s;
}

.alauti-gallery-grid .alauti-gallery-cell:hover img {
  opacity: 0.9;
}

/* Text cell: white background with centered date + title */
.alauti-gallery-grid .alauti-gallery-text-cell {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 1rem;
  background: white;
}

/* Album link cell: white bg, faded cover photo, centered text, clickable */
.alauti-gallery-album-cell {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 1rem;
  background: white;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.alauti-gallery-album-cell:hover {
  opacity: 0.9;
}

/* Faded cover image behind album title */
.alauti-gallery-album-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

/* Gallery typography */
.alauti-gallery-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  color: #030213;
  text-align: center;
  position: relative;
}

.alauti-gallery-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 28px;
  color: #030213;
  text-align: center;
  padding: 0 0.5rem;
  position: relative;
}

/* PDF cell in gallery */
.alauti-gallery-pdf-cell {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 1.5rem;
  background: white;
}

.alauti-pdf-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.alauti-pdf-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #030213;
  text-align: center;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.alauti-pdf-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.alauti-pdf-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: white;
  background: #030213;
  border: none;
  padding: 6px 14px;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.alauti-pdf-btn:hover {
  opacity: 0.75;
}

.alauti-pdf-btn--secondary {
  background: transparent;
  color: #030213;
  border: 1px solid #030213;
}

/* Back link */
.alauti-back-link {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.alauti-back-link a {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  color: #030213;
  text-decoration: none;
  display: inline-block;
  border-bottom: 2px solid #030213;
  padding-bottom: 3px;
  transition: opacity 0.2s;
}

.alauti-back-link a:hover {
  opacity: 0.7;
}

/* --- Gallery circles layout --- */
/* React: flex-col db:flex-row items-center db:items-start justify-between gap-8 py-12 db:py-24 */

.alauti-gallery-circles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 48px 0;
}

@media (min-width: 768px) {
  .alauti-gallery-circles {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 96px 0;
  }
}

/* --- Contact form styling --- */
/* React: max-w-[500px], inputs: border border-black/20 rounded-none px-4 py-3 text-[18px] bg-white/80 */

.alauti-contact-form {
  max-width: 500px;
}

.alauti-contact-form input[type="text"],
.alauti-contact-form input[type="email"],
.alauti-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  padding: 12px 16px;
  font-family: var(--wp--preset--font-family--dm-sans);
  font-size: 18px;
  background: rgba(255, 255, 255, 0.8);
  outline: none;
}

.alauti-contact-form input:focus,
.alauti-contact-form textarea:focus {
  border-color: var(--wp--preset--color--primary);
}

.alauti-contact-form textarea {
  resize: none;
  min-height: 150px;
}

/* React: bg-black text-white px-8 py-3 text-[18px] hover:bg-black/80 */
.alauti-contact-form button[type="submit"] {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  border: none;
  padding: 12px 32px;
  font-family: var(--wp--preset--font-family--dm-sans);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}

.alauti-contact-form button[type="submit"]:hover {
  background: rgba(3, 2, 19, 0.8);
}

/* --- Utility: text sizing for content pages --- */
/* React: text-[18px] lg:text-[22px] leading-[30px] lg:leading-[35px] */

.alauti-body-text {
  font-size: 18px;
  line-height: 30px;
}

@media (min-width: 1024px) {
  .alauti-body-text {
    font-size: 22px;
    line-height: 35px;
  }
}

/* --- Ensure blocks stack properly --- */

.alauti-content-area > *,
.alauti-content-wide > * {
  max-width: 100%;
}

/* --- Remove WP default block margins that interfere --- */
/* WP's is-layout-flow adds > * + * { margin-block-start } between blocks */
.alauti-content-area .wp-block-post-content > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Gap between body text paragraphs: React gap-8 = 32px */
.alauti-content-area .wp-block-post-content > .alauti-body-text + .alauti-body-text {
  margin-top: 32px !important;
}

/* Gap between support cards: React gap-6 = 24px */
.alauti-content-area .wp-block-post-content > [class*="is-style-support-card-"] {
  margin-top: 24px !important;
}

/* Gap between h2 sections on contact page: React mt-8 = 32px */
.alauti-content-area .wp-block-post-content > .wp-block-heading:not(:first-child) {
  margin-top: 32px !important;
}

/* Paragraphs after h2: React gap-4 = 16px or gap-3 = 12px */
.alauti-content-area .wp-block-post-content > .wp-block-heading + .alauti-body-text {
  margin-top: 16px !important;
}

/* Body text paragraphs after h2 with small gap: React gap-3 = 12px */
.alauti-content-area .wp-block-post-content > .wp-block-heading + .alauti-body-text ~ .alauti-body-text {
  margin-top: 12px !important;
}

/* --- Scroll-to-top behavior --- */
html {
  scroll-behavior: smooth;
}

/* --- Fix WP block default spacing --- */
.alauti-front-page-content .wp-block-image {
  margin-bottom: 0;
}

/* Override WP content width constraint for front page fun-logo */
/* wp-block-post-content uses contentSize (739px) by default - we need to override */
.alauti-front-page-content .wp-block-post-content {
  max-width: none !important;
}

.alauti-front-page-content .wp-block-post-content > * {
  max-width: none !important;
}

/* Fun logo should fill the container properly */
.alauti-front-page-content .alauti-fun-logo {
  max-width: 765px !important;
  width: 100% !important;
  margin: 0 auto !important;
}

/* Subtitle on front page (mobile only) */
.alauti-front-page-content .alauti-front-page-subtitle {
  margin-top: 32px;
  font-size: 19px;
  text-align: center;
}

/* Hide the header on mobile (it uses .alauti-mobile-header instead) */
@media (max-width: 1023px) {
  .alauti-header {
    display: none;
  }
}

/* =========================================================
   Document / Beszámolók list styles
   ========================================================= */

.alauti-section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #030213;
  margin: 0 0 2rem 0;
}

.alauti-doc-category-header {
  margin-bottom: 2rem;
}

.alauti-doc-category-header .alauti-section-title {
  margin-bottom: 0;
}

/* Category list rows (Dokumentumok / Beszámolók index) */
.alauti-doc-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}

.alauti-doc-category-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #e5e5e5;
  text-decoration: none;
  color: #030213;
  transition: opacity 0.2s;
}

.alauti-doc-category-row:first-child {
  border-top: 1px solid #e5e5e5;
}

.alauti-doc-category-row:hover {
  opacity: 0.6;
}

.alauti-doc-category-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  flex: 1;
}

.alauti-doc-category-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #666;
}

.alauti-doc-category-arrow {
  font-size: 18px;
  color: #030213;
}

/* File list rows (inside a document sub-category) */
.alauti-doc-file-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}

.alauti-doc-file-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #e5e5e5;
}

.alauti-doc-file-row:first-child {
  border-top: 1px solid #e5e5e5;
}

.alauti-doc-file-type {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #030213;
  padding: 2px 7px;
  border-radius: 3px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.alauti-doc-file-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: #030213;
  flex: 1;
}

.alauti-doc-file-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.alauti-doc-empty {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: #666;
  padding: 2rem 0;
}

@media (max-width: 600px) {
  .alauti-doc-file-row {
    flex-wrap: wrap;
  }

  .alauti-doc-file-actions {
    width: 100%;
    margin-top: 0.5rem;
  }
}
