/* Editorial experience for the Imperial Azure news hub. */

.page-news main,
.page-article main {
  overflow: clip;
}

.news-page,
.article-page {
  color: var(--ink);
}

.news-hero {
  padding: 88px 0 0;
  background:
    radial-gradient(circle at 92% 12%, rgb(244 132 95 / 0.18), transparent 28%),
    radial-gradient(circle at 8% 0%, rgb(34 184 200 / 0.15), transparent 30%),
    linear-gradient(145deg, #edf4f1 0%, #faf6ee 58%, #f4eee3 100%);
  border-bottom: 1px solid rgb(11 79 108 / 0.08);
}

.news-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: clamp(48px, 7vw, 100px);
}

.news-hero-copy {
  max-width: 730px;
  padding-bottom: 64px;
}

.news-hero-copy h1 {
  margin: 0;
  color: var(--ocean);
  font: 600 clamp(52px, 6vw, 82px) / 0.94 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.news-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: #52656d;
  font-size: 17px;
  line-height: 1.85;
  text-wrap: pretty;
}

.news-search {
  margin-bottom: 64px;
  padding: 24px;
  border: 1px solid rgb(11 79 108 / 0.1);
  border-radius: 20px;
  background: rgb(255 255 255 / 0.78);
  box-shadow: 0 20px 55px rgb(7 47 63 / 0.09);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.news-search > label {
  display: block;
  margin-bottom: 10px;
  color: var(--ocean);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.news-search > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgb(11 79 108 / 0.18);
  border-radius: 14px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.news-search > div:focus-within {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 4px rgb(34 184 200 / 0.13);
}

.news-search svg {
  width: 20px;
  height: 20px;
  margin-left: 15px;
  fill: none;
  stroke: var(--ocean);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.news-search input {
  min-width: 0;
  height: 50px;
  border: 0;
  outline: 0;
  padding: 0 13px;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
}

.news-search button {
  align-self: stretch;
  border: 0;
  padding: 0 18px;
  color: #fff;
  background: var(--ocean);
  font-size: 12px;
  font-weight: 700;
  transition: background-color 0.2s ease;
}

.news-search button:hover {
  background: var(--ocean-deep);
}

.news-search > p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.news-topic-nav {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding-bottom: 18px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline proximity;
}

.news-topic-nav::-webkit-scrollbar {
  display: none;
}

.news-topic-nav a {
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 9px 15px;
  border-radius: 999px;
  color: #53656d;
  font-size: 11px;
  font-weight: 700;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.news-topic-nav a:hover,
.news-topic-nav a[aria-current="page"] {
  color: #fff;
  background: var(--ocean);
}

.news-topic-nav a:focus-visible,
.news-search button:focus-visible,
.news-card-link:focus-visible,
.news-featured a:focus-visible,
.article-page a:focus-visible,
.article-page button:focus-visible,
.news-assistance a:focus-visible,
.news-assistance button:focus-visible {
  outline: 3px solid var(--turquoise);
  outline-offset: 3px;
}

.news-section {
  padding-top: 76px;
  padding-bottom: 92px;
}

.news-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  min-height: 500px;
  overflow: hidden;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgb(34 184 200 / 0.2), transparent 35%),
    linear-gradient(145deg, #06364a, #0b4f6c);
  box-shadow: 0 28px 70px rgb(4 36 49 / 0.16);
}

.news-featured-media {
  display: block;
  min-height: 500px;
  overflow: hidden;
}

.news-featured-media img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-featured:hover .news-featured-media img {
  transform: scale(1.025);
}

.news-featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 68px);
}

.news-kicker {
  margin: 0 0 20px;
  color: #ffb397;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 17px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.news-meta > * + *::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 10px 2px 0;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
}

.news-featured .news-meta {
  color: rgb(255 255 255 / 0.68);
}

.news-featured-copy h2 {
  margin: 20px 0 18px;
  color: #fff;
  font: 600 clamp(40px, 4vw, 58px) / 0.98 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.news-featured-copy h2 a {
  color: inherit;
}

.news-featured-copy > p:not(.news-kicker) {
  margin: 0;
  color: rgb(255 255 255 / 0.76);
  font-size: 14px;
  line-height: 1.85;
}

.news-read-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  margin-top: 25px;
  color: var(--ocean);
  font-size: 12px;
  font-weight: 700;
}

.news-read-link span {
  transition: transform 0.2s ease;
}

.news-read-link:hover span {
  transform: translateX(4px);
}

.news-featured .news-read-link {
  color: #fff;
}

.news-feed-heading,
.related-stories-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin: 72px 0 30px;
}

.news-feed-heading h2,
.related-stories-heading h2 {
  margin: 0;
  color: var(--ocean);
  font: 600 clamp(38px, 4vw, 52px) / 1 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.025em;
}

.news-feed-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 11px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.news-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgb(11 79 108 / 0.09);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 32px rgb(7 47 63 / 0.065);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: rgb(11 79 108 / 0.16);
  box-shadow: 0 22px 48px rgb(7 47 63 / 0.12);
}

.news-card-link {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: inherit;
}

.news-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #dfe9e5;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-card:hover .news-card-media img {
  transform: scale(1.035);
}

.news-card-category {
  position: absolute;
  left: 16px;
  bottom: 15px;
  padding: 7px 10px;
  border: 1px solid rgb(255 255 255 / 0.7);
  border-radius: 999px;
  color: #fff;
  background: rgb(3 42 56 / 0.7);
  box-shadow: 0 6px 18px rgb(0 0 0 / 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 9px;
  font-weight: 700;
}

.news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 23px;
}

.news-card-title {
  display: block;
  margin: 13px 0 12px;
  color: var(--ocean);
  font: 600 29px / 1.05 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.news-card-excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--ocean);
  font-size: 11px;
  font-weight: 700;
}

.news-card-cta > span {
  transition: transform 0.2s ease;
}

.news-card:hover .news-card-cta > span {
  transform: translateX(4px);
}

.news-empty {
  padding: clamp(45px, 8vw, 84px) 24px;
  border: 1px solid rgb(11 79 108 / 0.1);
  border-radius: 22px;
  text-align: center;
  background:
    radial-gradient(circle at 85% 0%, rgb(244 132 95 / 0.11), transparent 30%),
    #fff;
  box-shadow: 0 18px 48px rgb(7 47 63 / 0.07);
}

.news-empty h1,
.news-empty h2 {
  max-width: 650px;
  margin: 0 auto 14px;
  color: var(--ocean);
  font: 600 clamp(40px, 5vw, 58px) / 1 "Cormorant Garamond", Georgia, serif;
}

.news-empty > p:not(.eyebrow) {
  margin: 0 auto 24px;
  color: var(--muted);
}

.news-assistance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 92px;
  padding: 38px 42px;
  border: 1px solid rgb(11 79 108 / 0.1);
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 20%, rgb(34 184 200 / 0.13), transparent 30%),
    linear-gradient(145deg, #fff, #eef5f2);
  box-shadow: 0 18px 46px rgb(7 47 63 / 0.08);
}

.news-assistance h2 {
  max-width: 690px;
  margin: 0;
  color: var(--ocean);
  font: 600 clamp(34px, 3.5vw, 48px) / 1.03 "Cormorant Garamond", Georgia, serif;
}

.news-assistance-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

/* Article */

.article-page {
  padding: 42px 0 100px;
  background:
    radial-gradient(circle at 100% 0%, rgb(34 184 200 / 0.08), transparent 24%),
    var(--ivory);
}

.article-shell {
  max-width: 1240px;
}

.article-breadcrumb {
  margin-bottom: 58px;
}

.article-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 11px;
}

.article-breadcrumb li {
  position: relative;
}

.article-breadcrumb li + li::before {
  content: "/";
  position: absolute;
  left: -14px;
  color: rgb(97 112 119 / 0.55);
}

.article-breadcrumb a:hover {
  color: var(--ocean);
}

.article-header {
  width: min(960px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px 21px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.article-meta > * + *::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 12px 3px 0;
  border-radius: 50%;
  background: var(--coral);
}

.article-meta a {
  color: var(--ocean);
}

.article-header h1 {
  margin: 24px 0 25px;
  color: var(--ocean);
  font: 600 clamp(54px, 6.6vw, 84px) / 0.94 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.article-dek {
  max-width: 780px;
  margin: 0 auto;
  color: #50636b;
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.8;
  text-wrap: pretty;
}

.article-byline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.article-byline > span {
  display: grid;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  background: var(--ocean);
  font: 600 14px/1 "Cormorant Garamond", Georgia, serif;
  place-items: center;
}

.article-byline p,
.article-byline strong,
.article-byline small {
  display: block;
  margin: 0;
  text-align: left;
}

.article-byline strong {
  color: var(--ink);
  font-size: 11px;
}

.article-byline small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}

.article-figure {
  margin: 0;
}

.article-figure img {
  width: 100%;
  max-height: 610px;
  aspect-ratio: 2 / 1;
  border-radius: 22px;
  box-shadow: 0 24px 65px rgb(7 47 63 / 0.13);
}

.article-figure figcaption {
  max-width: 860px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
}

.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 720px);
  justify-content: center;
  gap: clamp(45px, 7vw, 92px);
  margin-top: 76px;
}

.article-aside {
  min-width: 0;
  position: sticky;
  top: 105px;
  align-self: start;
}

.article-toc,
.article-aside-note {
  padding: 20px 0;
  border-top: 1px solid rgb(11 79 108 / 0.16);
}

.article-toc {
  position: static;
}

.article-toc > p,
.article-aside-note strong {
  display: block;
  margin: 0 0 14px;
  color: var(--ocean);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.article-toc ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-toc a {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
  transition: color 0.2s ease, transform 0.2s ease;
}

.article-toc a:hover {
  color: var(--ocean);
  transform: translateX(3px);
}

.article-aside-note {
  margin-top: 26px;
}

.article-aside-note p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}

.article-prose {
  min-width: 0;
  color: #31474f;
  font-size: 17px;
  line-height: 1.9;
}

.article-prose > p:first-child {
  color: #243f4a;
  font-size: 19px;
  line-height: 1.85;
}

.article-prose p {
  margin: 0 0 1.35em;
}

.article-prose h2 {
  margin: 2.1em 0 0.65em;
  scroll-margin-top: 110px;
  color: var(--ocean);
  font: 600 clamp(34px, 4vw, 45px) / 1.04 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.article-prose h3 {
  margin: 1.75em 0 0.55em;
  scroll-margin-top: 110px;
  color: #183f50;
  font: 600 27px / 1.12 "Cormorant Garamond", Georgia, serif;
}

.article-prose ul,
.article-prose ol {
  display: grid;
  gap: 10px;
  margin: 0 0 1.5em;
  padding-left: 1.35em;
}

.article-prose li {
  padding-left: 0.25em;
}

.article-prose li::marker {
  color: var(--coral);
  font-weight: 700;
}

.article-prose strong {
  color: #183f50;
}

.article-prose blockquote {
  margin: 2em 0;
  padding: 25px 28px;
  border: 0;
  border-radius: 14px;
  color: #244b5a;
  background: linear-gradient(145deg, #eaf4f2, #f8f4eb);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.35;
}

.article-conversion {
  margin-top: 64px;
  padding: 36px;
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgb(34 184 200 / 0.24), transparent 38%),
    linear-gradient(145deg, #06364a, #0b4f6c);
  box-shadow: 0 24px 55px rgb(5 38 51 / 0.16);
}

.article-prose .article-conversion h2 {
  margin: 0 0 14px;
  color: #fff;
  scroll-margin-top: 0;
}

.article-conversion > p:not(.eyebrow) {
  margin: 0;
  color: rgb(255 255 255 / 0.76);
  font-size: 13px;
  line-height: 1.75;
}

.article-conversion > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.article-conversion .button-outline {
  border-color: rgb(255 255 255 / 0.72);
  color: #fff;
  background: transparent;
}

.related-stories {
  padding: 82px 0 96px;
  background: linear-gradient(145deg, #e9f1ee, #f7f2e9);
}

.related-stories-heading {
  margin-top: 0;
}

.related-stories-heading .news-read-link {
  margin-bottom: 6px;
}

.related-stories .news-card-excerpt {
  display: none;
}

@media (max-width: 1024px) {
  .news-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
    gap: 38px;
  }

  .news-featured {
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  }

  .news-featured-copy {
    padding: 38px;
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .related-stories-grid .news-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .article-layout {
    grid-template-columns: 190px minmax(0, 680px);
    gap: 45px;
  }
}

@media (max-width: 768px) {
  .news-hero {
    padding-top: 58px;
  }

  .news-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .news-hero-copy {
    padding-bottom: 34px;
  }

  .news-search {
    margin-bottom: 35px;
  }

  .news-featured {
    grid-template-columns: minmax(0, 1fr);
  }

  .news-featured-media,
  .news-featured-media img {
    min-height: 380px;
  }

  .news-featured-copy {
    padding: 40px;
  }

  .news-assistance {
    align-items: stretch;
    flex-direction: column;
  }

  .article-page {
    padding-top: 28px;
  }

  .article-breadcrumb {
    margin-bottom: 42px;
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 54px;
  }

  .article-aside {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(180px, 0.75fr);
    gap: 28px;
    position: static;
  }

  .article-toc {
    position: static;
  }

  .article-aside-note {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .news-hero {
    padding-top: 44px;
  }

  .news-hero-copy h1 {
    font-size: 46px;
    line-height: 0.98;
  }

  .news-hero-copy > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.75;
  }

  .news-search {
    padding: 18px;
    border-radius: 16px;
  }

  .news-search > div {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .news-search button {
    grid-column: 1 / -1;
    min-height: 46px;
  }

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

  .news-topic-nav {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .news-section {
    padding-top: 46px;
    padding-bottom: 68px;
  }

  .news-featured {
    min-height: 0;
    border-radius: 18px;
  }

  .news-featured-media,
  .news-featured-media img {
    min-height: 250px;
    aspect-ratio: 4 / 3;
  }

  .news-featured-copy {
    padding: 29px 24px 32px;
  }

  .news-featured-copy h2 {
    font-size: 39px;
  }

  .news-feed-heading,
  .related-stories-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 54px;
  }

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

  .related-stories-grid .news-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .news-card {
    border-radius: 16px;
  }

  .news-card-body {
    padding: 21px;
  }

  .news-card-title {
    font-size: 28px;
  }

  .news-assistance {
    margin-bottom: 68px;
    padding: 28px 23px;
    border-radius: 16px;
  }

  .news-assistance-actions,
  .article-conversion > div {
    align-items: stretch;
    flex-direction: column;
  }

  .news-assistance-actions .button,
  .article-conversion .button {
    width: 100%;
  }

  .article-page {
    padding-bottom: 70px;
  }

  .article-breadcrumb {
    overflow: hidden;
    margin-bottom: 34px;
  }

  .article-breadcrumb ol {
    flex-wrap: nowrap;
    overflow: hidden;
    white-space: nowrap;
  }

  .article-breadcrumb li:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .article-header {
    margin-bottom: 34px;
    text-align: left;
  }

  .article-meta {
    justify-content: flex-start;
    gap: 8px 14px;
  }

  .article-meta > * + *::before {
    margin-right: 8px;
  }

  .article-header h1 {
    margin-top: 19px;
    font-size: 44px;
    line-height: 0.99;
  }

  .article-dek {
    font-size: 16px;
    line-height: 1.75;
  }

  .article-byline {
    justify-content: flex-start;
  }

  .article-byline small {
    max-width: 240px;
  }

  .article-figure {
    width: calc(100% + 20px);
    margin-left: -10px;
  }

  .article-figure img {
    min-height: 240px;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  .article-layout {
    gap: 38px;
    margin-top: 44px;
  }

  .article-aside {
    display: block;
  }

  .article-aside-note {
    margin-top: 20px;
  }

  .article-prose {
    font-size: 16px;
    line-height: 1.82;
  }

  .article-prose > p:first-child {
    font-size: 17px;
    line-height: 1.82;
  }

  .article-prose h2 {
    font-size: 34px;
  }

  .article-prose h3 {
    font-size: 25px;
  }

  .article-prose blockquote {
    padding: 22px;
    font-size: 22px;
  }

  .article-conversion {
    margin-top: 48px;
    padding: 28px 23px;
    border-radius: 16px;
  }

  .related-stories {
    padding: 64px 0 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-featured-media img,
  .news-card,
  .news-card-media img,
  .news-card-cta > span,
  .news-read-link span,
  .article-toc a {
    transition: none;
  }

  .news-featured:hover .news-featured-media img,
  .news-card:hover,
  .news-card:hover .news-card-media img,
  .news-card:hover .news-card-cta > span,
  .news-read-link:hover span,
  .article-toc a:hover {
    transform: none;
  }
}
