/* =========================
   GLOBAL RESET & FONT
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-weight: 300; /* Thin */
  line-height: 1.6;
  background-color: #fff;
}

/* =========================
   HEADER STYLING
========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #000;
  padding: 8px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.desktop-header-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 40px;
}

.site-logo {
  font-size: 35px;
  font-family: "playwrite gb j", cursive;
  color: black;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

/*
.site-logo::after {
  content: "";
  display: inline-block;
  width: 59px;
  height: 59px;
  color: inherit;
  margin-left: 8px;
  transform: translateY(0);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M60 60 H140 V140 H80 V80 H120 V120 H100 V100' fill='none' stroke='white' stroke-width='11'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.9));
}
*/


/* =========================
   DESKTOP NAV
========================= */

.main-nav-desktop {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 32px;
  flex: 1;
}


/* Hide scrollbar but keep horizontal scroll functionality */
.main-nav-desktop::-webkit-scrollbar {
  display: none;
}
.main-nav-desktop {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.nav-sections {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
  justify-self: center;
}

.nav-sections a {
  font-family: "cascade mono", monospace;
  display: inline-block; /* Add this */
  color: black;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.nav-sections a:hover {
  transform: translateY(-2px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
  justify-self: end;
}

.nav-sections a,
.nav-actions a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 300;
  border: none;
  cursor: pointer;
}

/* Subscribe Button */
.subscribe-btn {
  background: black;
  color: white !important;
  padding: 14px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-family: "cascade mono", monospace;
  font-size: 16px !important;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.subscribe-btn:hover {
  background-color: #404040; /* Slightly lighter black */
  transition: background-color 0.2s ease;
}

/* Search Icon */
.search-icon {
  margin-right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: white;
  padding: 8px;
  border-radius: 4px;
}

.search-icon:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* =========================
   MOBILE + MEGA-MENU OVERLAY NAV
========================= */

/* Hamburger button */
.desktop-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: black;
  padding: 4px 10px;
  border-radius: 4px;
}

.desktop-menu-toggle:hover {  /* Moved hover to button instead of SVG */
  background-color: rgba(255, 255, 255, 0.1);
}

.desktop-menu-toggle svg {
  stroke: black;
  width: 38px;
  height: 38px;
}

/* 
   WIDE OVERLAY ON DESKTOP:
   - Hidden by default (display: none).
   - When .active is added, display: flex and appear below header.
*/
/* Update the main-nav to connect better with header */
.main-nav {
  position: fixed;
  top: 72px; /* Increased from 65px so the dropdown sits a bit lower below the header */
  left: 0;
  right: 0;
  background-color: #fff;
  background-image: url('../images/Byron5.jpeg');
  background-repeat: no-repeat;
  background-position: 125px 80px;
  background-size: 200px;
  padding: 40px 60px 40px 500px;
  display: none;
  z-index: 99; /* Changed from 100 to be below header */
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 0; /* No more slight overlap with header */
  border-top: 1px solid rgba(218, 165, 32, 0.4); /* Subtle gold border matching header */
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}


.menu-illustration-link {
  position: absolute;
  left: 125px;  /* Match background image position */
  top: 50px;    /* Match background image position */
  width: 250px; /* Match background image size */
  height: 250px;
  z-index: 2;
}

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

/* Each column in the mega-menu */
.menu-section {
  width: 200px;
  margin-right: 40px;
  margin-bottom: 20px;
}
.menu-section:last-child {
  margin-right: 0;
}

/* Headings within each column */
.menu-category {
  font-family: "cascade mono", monospace;
  font-size: 16px;
  color: red;
  text-transform: uppercase;
  padding-bottom: 3px; /* Adds space between text and border */
  margin-bottom: 10px;
  font-weight: 500;
}

.menu-category::after {
  content: " ◿"; /* Add space before symbol for proper spacing */
  font-size: 16px;
  margin-left: 10px; /* Add some spacing from the text */
  display: inline-block; /* Keep it in line with the text */
  vertical-align: 0; /* Adjust vertical alignment */
}

/* Links in each column */
.nav-item {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: black;
  text-decoration: none;
  margin-bottom: 8px;
}
.nav-item:hover {
  text-decoration: underline;
}

/* =========================
   FIXED SUBSCRIBE BUTTON (MOBILE)
========================= */
.fixed-subscribe-btn {
  display: block;
  position: fixed;
  bottom: 30px;
  right: 20px;
  background-color: #2E8B57;
  color: #fff;
  padding: 20px 20px;
  text-decoration: none;
  font-family: "cascade mono", monospace;
  font-weight: 500;
  font-size: 18px;
  z-index: 1000;
  border-radius: 40px;
  box-shadow: 0 4px 4px rgba(0,0,0,0.3);
}

/* =========================
   HOME TOP RAIL
========================= */
.home-top-rail {
  padding: 190px 0 12px;
}

.home-top-rail__inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) minmax(420px, 2fr) minmax(260px, 1.3fr);
  gap: 60px;
  align-items: stretch;
}

.home-top-rail__label {
  font-family: "cascade mono", monospace;
  font-size: 22px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: red;
  font-weight: 500;
  line-height: 1;
  padding: 0;
  display: inline-block;
  margin-bottom: 20px;
}
.home-top-rail__today,
.home-top-rail__recent {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.home-top-rail__recent .home-top-rail__label {
  align-self: flex-end;
  text-align: right;
}

.home-top-rail__feature {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 74px;
}

.rail-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-top-rail .rail-card {
  gap: 8px;
}
.home-top-rail .home-top-rail__today .rail-card__title {
  margin-bottom: 2px;
}

.home-top-rail .home-top-rail__today .rail-card__excerpt--small {
  margin-top: 0;
}

.home-top-rail__today .rail-card__category,
.home-top-rail__recent .rail-card__category {
  font-family: "open sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
  margin-top: 0;
}

.rail-card__media {
  margin: 0;
}

.rail-card__media a,
.rail-card__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.rail-card__media img {
  object-fit: cover;
  border-radius: 4px;
}

.rail-card__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 6px;
}

.home-top-rail .rail-card__meta {
  margin-bottom: 2px;
}

.rail-card__category {
  display: inline-block;
}

.rail-card__title {
  font-family: "Fjalla One", sans-serif;
  font-size: 26px;
  line-height: 1.2;
  margin: 0;
}

.rail-card__title a {
  text-decoration: none;
  color: black;
  transition: color 0.2s ease;
}

.rail-card__title a:hover {
  color: #2E8B57;
}

.rail-card__title--feature {
  font-size: 40px;
}

.rail-card__title--list {
  font-size: 20px;
  line-height: 1.4;
}

.rail-card__excerpt {
  font-family: "open sans", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
  color: #777777;
}

.rail-card__excerpt--small {
  font-size: 17px;
  line-height: 1.5;
  color: #5c5c5c;
}

.rail-card__excerpt--list {
  font-size: 15px;
  line-height: 1.5;
  color: #666666;
  margin-top: 4px;
}

.rail-card__byline {
  font-family: "open sans", sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a7a7a;
}

.rail-card__byline--feature,
.home-top-rail .rail-card__byline {
  font-family: "instrument serif", serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: #3a3a3a;
}

.rail-card--small {
  padding-bottom: 28px;
}

.rail-card--small .rail-card__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 4px;
}

.rail-card--feature {
  background: white;
  padding-bottom: 32px;
}

.rail-card--feature .rail-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
}

.rail-card--feature .rail-card__content {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-top-rail .rail-card--feature .rail-card__content {
  padding-top: 6px;
  gap: 8px;
}

.rail-card--list {
  display: flex;
  flex-direction: row;
  gap: 24px;
  padding-bottom: 24px;
  align-items: flex-start;
}

.home-top-rail__recent .rail-card--list {
  gap: 26px;
}

.rail-card__list-thumb {
  display: block;
  position: relative;
  flex: 0 0 130px;
  width: 130px;
  overflow: hidden;
  border-radius: 4px;
}

.rail-card__list-thumb::before {
  content: "";
  display: block;
  padding-top: 75%;
}

.rail-card__list-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.rail-card__list-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

@media (min-width: 769px) {
  .home-top-rail + .latest-section {
    padding-top: 20px;
  }
}

@media (max-width: 1080px) {
  .home-top-rail__inner {
    grid-template-columns: minmax(0, 1fr);
    padding: 0 24px;
    gap: 40px;
  }

  .home-top-rail__feature {
    order: -1;
  }
}

@media (max-width: 768px) {
  .home-top-rail {
    display: none;
  }

  .latest-section--desktop {
    display: none;
  }

  .latest-section--mobile {
    display: block;
  }
}

@media (min-width: 769px) {
  .latest-section--mobile {
    display: none;
  }
}

/* =========================
   FEATURED ARTICLES & POST STYLING
========================= */
.main-articles {
  padding-top: 60px;
}

.main-article {
  margin-bottom: 60px;
}

.main-article:last-child {
  margin-bottom: 0;
}

.main-article-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: #ddd;
  margin-bottom: 8px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .main-article-image {
    margin-bottom: 8px;
  }
  .article-excerpt {
    font-size: 18px !important;
  }
}

.main-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-title {
  font-family: "Fjalla One", sans-serif;
  font-weight: 400;
  margin-bottom: 10px;
  margin-top: 0;
  line-height: 1.3;
  opacity: 0.9;
}

.article-excerpt {
  font-family: "open sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #777777;
  margin-top: 0px;
}

/* Article Links */

.article-title a,
.main-article-image a {
  text-decoration: none;
  color: black;
  transition: opacity 0.3s ease;
}

.article-title a {
  font-size: 40px;
  font-weight: 500;
}

@media (hover: hover) and (pointer: fine) {
  .article-title a:hover,
  .main-article-image:hover + .article-title a {  /* Added this line */
    color: #2E8B57;
  }
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 5px;
  font-size: 16px;
}

.article-category {
  color: #2E8B57;
  text-decoration: none;
  text-transform: uppercase;
  transition: text-decoration 0.3s ease;
  position: relative;
  font-family: "open sans", sans-serif;
  font-weight: 500;
}

 /* If you want a slash between meta 
.article-meta .article-category::after {
  content: "/";
  margin: 0 10px;
  color: black;
}
*/

.article-category:hover {
  text-decoration: underline;
}

.article-date {
  color: #935635;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  margin-left: 0;
  font-family: "Open Sans", sans-serif;
}

/* =========================
   GRID LAYOUT
========================= */
.featured-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
  column-gap: 100px;
  max-width: 1520px;
  margin: 0 auto;
}

.latest-section .featured-posts-grid,
.editors-picks-section .featured-posts-grid {
  max-width: 1520px;
  column-gap: 60px;
}

@media (min-width: 769px) {
  .latest-section .featured-posts-grid {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 60px;
    row-gap: 20px;
  }

  .latest-section .main-article-image {
    aspect-ratio: 4 / 3;
  }

  .latest-section .article-title a {
    font-size: 26px;
    line-height: 1.3;
  }

  .latest-section .article-excerpt {
    font-size: 17px;
    line-height: 1.5;
    color: #5f5f5f;
  }

  .latest-section .article-category {
    font-size: 14px;
  }

.latest-section--desktop,
.editors-picks-section {
  max-width: 1520px;
  margin: 40px auto 0;
}

.latest-section--desktop {
  padding-top: 10px;
}

  .latest-section--desktop .latest-header,
  .editors-picks-section .featured-header {
    max-width: 1520px;
    margin: 0 auto 40px;
    padding: 0;
  }

}

/* =========================
   SECTION HEADERS
========================= */
.featured-header .section-title,
.latest-header .section-title {
  display: block;
  font-size: 40px;
  font-family: "cascade mono", monospace;
  font-weight: 500;
  color: red;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 44px;
  position: relative;
  letter-spacing: 0.14em;
}



.latest-section {
  padding-top: 16px; /* Tighter spacing beneath top rail */
}

@media (max-width: 768px) {
  .latest-section {
    padding-top: 90px; /* Same as .main-articles had */
  }

  .featured-header .section-title,
  .latest-header .section-title {
    text-align: center;
    margin: 0 0 24px;
  }

  .section-title .decorative-icon {
    width: 48px !important;
    height: 2px !important;
    margin: 0 12px !important;
    transform: translateY(-2px) !important;
    background: rgba(255, 0, 0, 0.4);
  }
}

.section-title .decorative-icon {
  display: inline-block;
  width: 100px;
  height: 2px;
  background: rgba(255, 0, 0, 0.4);
  vertical-align: middle;
  margin: 0 16px;
  transform: translateY(-4px);
}

.editors-picks-section {
  margin-top: 0 !important;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background-color: black;
  text-align: center;
  padding-top: 90px;
  padding-bottom: 250px;
  margin-top: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Re‑order footer elements: nav first, logo second */
.footer-nav { 
  order: 1;          /* nav comes first */
  margin-bottom: 24px; 
}

.footer-logo { 
  order: 2;          /* logo comes second */
  margin-bottom: 0;  /* no extra space below logo */
}

.footer-logo {
  display: inline-block;
  font-family: "cascade mono", monospace;
  font-size: 20px;
  margin-bottom: 40px;
  pointer-events: none;   /* logo is no longer a link */
  cursor: default;
  color: #D4AF37;
  text-decoration: none;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "cascade mono", monospace;
  font-weight: 300 !important;
  font-size: 18px;
  margin: 0 19px;
}
 


@media (hover: hover) and (pointer: fine) {
  .footer-nav a:hover {
    text-decoration: underline;
  }
}

/* =========================
   MEDIA QUERIES
========================= */

/* 
   Mobile (<= 768px):
   - Hide desktop wrapper
   - Use a full-screen slide-in overlay
*/
@media (max-width: 768px) {

  .subscribe-btn {
    display: none;
  }

  .featured-posts-grid {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
  .main-article {
    margin-bottom: 40px;
  }
  .site-header {
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .main-articles {
    padding-top: 55px;
  }
  .featured-header {
    margin-top: 60px;
  }
  .featured-header .section-title,
  .latest-header .section-title {
    font-family: 'cascade mono', monospace;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
  }

  .article-title a {
    font-size: 30px;
  }
  .article-meta {
    margin-bottom: 3px;
  }

  .featured-header,
  .latest-header{
    padding: 0 0px;
  }

  .article-meta,
  .article-title,
  .article-excerpt {
    padding: 0 10px;
  }

  .latest-section {
    margin-top: 40px; /* match whatever Editors Picks uses */
  }

  .editors-picks-section {
    margin-top: -50px !important;
  }

  /* New mobile styling I guess */
  
  .mobile-header-new {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #000;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo {
    font-family: "playwrite gb j", cursive;
    color: black;
    font-size: 30px;
    font-weight: 300;
    text-decoration: none;
    display: flex;          /* Turn it into a flex container */
    align-items: center;    /* Vertically center items */
}

/*
.mobile-logo::after {
  content: "";
  display: inline-block;
  width: 54px;
  height: 54px;
  color: inherit;
  margin-left: 8px;
  transform: translateY(0);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M60 60 H140 V140 H80 V80 H120 V120 H100 V100' fill='none' stroke='white' stroke-width='11'/%3E%3C/svg%3E"); background-repeat: no-repeat;
  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.9));
}
*/

.mobile-menu-toggle {
  display: flex;          /* Turn it into a flex container */
  align-items: center;    /* Vertically center items */
}

.mobile-menu-toggle svg {
  width: 43px;
  height: 43px;
  stroke: black;
}

.mobile-search-toggle svg {
  width: 30px;
  height: 30px;
  transform: translateY(3px);
}

.mobile-menu-toggle,
.mobile-search-toggle {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
    cursor: pointer;
}

.mobile-search-toggle {
    margin-left: auto;
    margin-right: 25px;
}


.article-category {
    font-size: 15px;
}

.article-date {
    font-size: 14px;
}
}

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

/* =========================
   KOENIG EDITOR
========================= */
.kg-width-wide {
  position: relative;
  width: 85vw;
  margin-left: calc(50% - 42.5vw);
}

.kg-width-full {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

/* =========================
   Mobile Menu
========================= */

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 999;
  padding-top: 70px;  /* Increased to account for header */
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-category {
  font-family: "cascade mono", monospace;
  font-weight: bold;
  font-size: 19px;
  text-transform: uppercase;
  color: red;
  opacity: 0.9;
  padding: 20px 50px 0;
  padding-bottom: 0;
  font-weight: 500;
  position: relative;
  transform: translateY(15px);
}

.mobile-menu a {
  display: block;
  padding: 10px 50px;
  color: black;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
}


.mobile-menu .mobile-menu-section .donation-link {
  margin-bottom: 0 !important;
}


  /* Dashes and symbol */



  .CATEGORIES,
  .MENU,
  .ACCOUNT,
  .mobile-menu-category {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 15px;
    
    /* Remove flex layout to keep text and symbol inline */
    display: block;
  }
  
  /* Add the symbol directly after the text */
  .CATEGORIES::after,
  .MENU::after,
  .ACCOUNT::after,
  .mobile-menu-category::after {
    content: " ◿"; /* Add space before symbol for proper spacing */
    font-size: 20px;
    margin-left: 10px; /* Add some spacing from the text */
    display: inline-block; /* Keep it in line with the text */
    vertical-align: 0; /* Adjust vertical alignment */
  }


/* Hands link stuff //////////////////////////////////////*/

.donation-link img,
.support-image {
    width: 250px;  /* Or whatever base size you want */
    max-width: 65%;  /* This makes it responsive */
    height: auto;
    display: block;
    margin: 0 auto;
    margin-bottom: 120px;
}

/* Above is the main mobile menu stuff */


@media (max-width: 768px) {
  .site-logo {
    display: none;
  }
  .footer-logo {
    font-size: 18px;
    font-weight: 400;
  }
  .footer-nav a {
    font-size: 18px;
    font-weight: 400;
    margin: 0 14px;
  }
  .site-header {
      display: none;
  }
  .site-footer {
    background-size: 270%;
    background-position: 11% 1%;
    padding-bottom: 250px;
    padding-top: 80px;
  }

  /* Tap feedback for mobile links */
  .footer-nav a:active,
  .mobile-menu a:active {
    opacity: 0.6;           /* brief fade when pressed */
    transform: scale(0.97); /* optional slight shrink */
  }
}

@media (min-width: 769px) {
  
  .site-footer {
    padding-bottom: 180px;   /* shorter than the default 250px */
  }

  .fixed-subscribe-btn {
    bottom: 70px;
    right: 30px;
    box-shadow: 4px 4px 8px rgba(0,0,0,0.6);
  }

  .fixed-subscribe-btn:hover {
    background-color: #329D60; /* Just a slight lightening */
    transition: background-color 0.3s ease;
  }

  .mobile-logo {
    display: none;
  }
}

/* =========================
   Page Loading
========================= */

.page-transition {
  transition: opacity 0.9s ease-in-out;
}
