/* ==========================================
   LUÁGO Journal Styles
   Reference: THE WED (thewed.com/magazine)
   Brand: luago.agency design tokens
   ========================================== */

/* ==========================================
   @font-face – Times Newer Roman
   Place .woff2 / .woff files in the theme's fonts/ directory.
   ========================================== */
   @font-face {
    font-family: 'Times Newer Roman';
    src: url('../fonts/TimesNewerRoman-Regular.woff2') format('woff2'),
      url('../fonts/TimesNewerRoman-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Times Newer Roman';
    src: url('../fonts/TimesNewerRoman-Italic.woff2') format('woff2'),
      url('../fonts/TimesNewerRoman-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Times Newer Roman';
    src: url('../fonts/TimesNewerRoman-Bold.woff2') format('woff2'),
      url('../fonts/TimesNewerRoman-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  
  /* ==========================================
         Brand Custom Properties
         ========================================== */
  :root {
    /* LUÁGO Brand Colors */
    --luago-primary: #CC3366;
    --luago-accent: #69727D;
    --luago-bg: #F1F1F1;
    --luago-text: #1A1A1A;
    --luago-link: #69727D;
  
    /* Typography */
    --luago-font-heading: 'Times Newer Roman', 'Times New Roman', Georgia, serif;
    --luago-font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
    --luago-font-paragraph: 'Times Newer Roman', 'Times New Roman', Georgia, serif;
  
    /* Type Scale */
    --luago-h1-size: 40px;
    --luago-h2-size: 40px;
    --luago-body-size: 16px;
  
    /* Spacing */
    --luago-space-unit: 4px;
    --luago-radius: 4px;
  }
  
  /* ==========================================
         Base Article Container
         ========================================== */
  .luago-journal-article {
    font-family: var(--luago-font-body);
    color: var(--luago-text);
    font-size: var(--luago-body-size);
  }
  
  /* Article Header */
  .luago-journal-article .article-header h1 {
    font-family: var(--luago-font-heading);
    font-size: var(--luago-h1-size);
    font-weight: 400;
    color: var(--luago-text);
    line-height: 1.2;
    margin-bottom: 40px;
  }
  
  /* CRITICAL: Images maintain aspect ratio — NEVER crop */
  .journal-section img,
  .journal-section video {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* ==========================================
         Custom Video Player
         ========================================== */
  .video-player {
    position: relative;
    cursor: pointer;
    height: 100%;
  }
  
  .video-player video {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .video-player .video-toggle {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
    padding: 0;
    z-index: 2;
  }
  
  .video-player .video-toggle svg {
    width: 18px;
    height: 18px;
  }
  
  /* Mute / Unmute Button — next to play/pause, hover-only */
  .video-player .video-mute {
    position: absolute;
    bottom: 16px;
    right: 68px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
    padding: 0;
    z-index: 2;
  }
  
  .video-player .video-mute svg {
    width: 18px;
    height: 18px;
  }
  
  /* Show buttons on hover or when paused */
  .video-player:hover .video-toggle,
  .video-player:hover .video-mute,
  .video-player.is-paused .video-toggle,
  .video-player.is-paused .video-mute {
    opacity: 1;
  }
  
  /* Toggle play/pause icon visibility */
  .video-player .icon-play {
    display: none;
  }
  
  .video-player .icon-pause {
    display: block;
  }
  
  .video-player.is-paused .icon-play {
    display: block;
  }
  
  .video-player.is-paused .icon-pause {
    display: none;
  }
  
  /* Toggle mute/unmute icon visibility */
  .video-player .icon-volume-on {
    display: block;
  }
  
  .video-player .icon-volume-off {
    display: none;
  }
  
  .video-player.is-muted .icon-volume-on {
    display: none;
  }
  
  .video-player.is-muted .icon-volume-off {
    display: block;
  }
  
  /* Lightbox: indicate images are clickable */
  .luago-journal-article a.glightbox {
    display: block;
    cursor: zoom-in;
    height: 100%;
  }
  
  .luago-journal-article a.glightbox img {
    transition: opacity 0.2s ease;
  }
  
  .luago-journal-article a.glightbox:hover img {
    opacity: 0.9;
  }
  
  /* Section Spacing (default) */
  .journal-section {
    margin-bottom: 60px;
  }
  
  /* Top Spacing */
  .journal-section.spacing-top-none {
    margin-top: 0;
  }
  
  .journal-section.spacing-top-small {
    margin-top: 20px;
  }
  
  .journal-section.spacing-top-big {
    margin-top: 80px;
  }
  
  /* Bottom Spacing */
  .journal-section.spacing-bottom-none {
    margin-bottom: 0;
  }
  
  .journal-section.spacing-bottom-small {
    margin-bottom: 20px;
  }
  
  .journal-section.spacing-bottom-big {
    margin-bottom: 80px;
  }
  
  /* ==========================================
         Full-Width Section
         ========================================== */
  .section-full-width figure {
    margin: 0;
  }
  
  .section-full-width figcaption {
    margin-top: 10px;
    font-family: var(--luago-font-body);
    font-size: 14px;
    color: var(--luago-accent);
    text-align: center;
  }
  
  /* Width Variants */
  .section-full-width.width-full {
    max-width: 100%;
  }
  
  .section-full-width.width-large {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .section-full-width.width-medium {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Alignment */
  .section-full-width.align-left {
    margin-left: 0;
    margin-right: auto;
  }
  
  .section-full-width.align-center {
    margin-left: auto;
    margin-right: auto;
  }
  
  .section-full-width.align-right {
    margin-left: auto;
    margin-right: 0;
  }
  
  /* ==========================================
         Two-Column Section
         ========================================== */
  .section-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  
  /* Column Ratios */
  .section-two-column.ratio-50-50 {
    grid-template-columns: 1fr 1fr;
  }
  
  .section-two-column.ratio-60-40 {
    grid-template-columns: 60fr 40fr;
  }
  
  .section-two-column.ratio-40-60 {
    grid-template-columns: 40fr 60fr;
  }
  
  .section-two-column.ratio-70-30 {
    grid-template-columns: 70fr 30fr;
  }
  
  .section-two-column.ratio-30-70 {
    grid-template-columns: 30fr 70fr;
  }
  
  /* Gap Sizes */
  .section-two-column.gap-none {
    gap: 0;
  }
  
  .section-two-column.gap-small {
    gap: 10px;
  }
  
  .section-two-column.gap-medium {
    gap: 20px;
  }
  
  .section-two-column.gap-large {
    gap: 40px;
  }
  
  /* Vertical Alignment */
  .section-two-column.valign-top {
    align-items: start;
  }
  
  .section-two-column.valign-center {
    align-items: center;
  }
  
  .section-two-column.valign-bottom {
    align-items: end;
  }
  
  .section-two-column figure {
    margin: 0;
  }
  
  .section-two-column figcaption {
    margin-top: 8px;
    font-family: var(--luago-font-body);
    font-size: 13px;
    color: var(--luago-accent);
  }
  
  /* ==========================================
         Masonry Section (Justified Flex Layout)
         ========================================== */
  .section-masonry .masonry-title {
    font-family: var(--luago-font-heading);
    font-size: var(--luago-h2-size);
    font-weight: 400;
    color: var(--luago-text);
    margin: 0 0 15px;
    line-height: 1.2;
  }

  .section-masonry .masonry-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
  }
  
  .section-masonry .gallery-item {
    overflow: hidden;
    border-radius: 0;
    box-sizing: border-box;
  }
  
  .section-masonry .gallery-item img,
  .section-masonry .gallery-item video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  
  /* ==========================================
         Text Section
         ========================================== */
  .section-text {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .section-text.width-full {
    max-width: 100%;
  }
  
  .section-text.width-narrow {
    max-width: 680px;
  }
  
  .section-text.width-medium {
    max-width: 800px;
  }
  
  /* Text Content uses editorial paragraph font (Times Newer Roman) */
  .section-text .text-content {
    font-family: var(--luago-font-paragraph);
    color: var(--luago-text);
  }
  
  .section-text .text-content p {
    color: var(--luago-text);
  }
  
  .section-text .text-content a {
    color: var(--luago-text);
    text-decoration: underline;
  }
  
  /* Text Sizes */
  .section-text.size-small .text-content {
    font-size: 14px;
    line-height: 1.7;
  }
  
  .section-text.size-normal .text-content {
    font-size: 16px;
    line-height: 1.8;
  }
  
  .section-text.size-large .text-content {
    font-size: 18px;
    line-height: 1.8;
  }
  
  .section-text.size-xlarge .text-content {
    font-size: 20px;
    line-height: 1.9;
  }
  
  /* Text Styles */
  .section-text.style-italic .text-content {
    font-style: italic;
  }
  
  .section-text.style-uppercase .text-content {
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  /* Text Alignment */
  .section-text.align-left .text-content {
    text-align: left;
  }
  
  .section-text.align-center .text-content {
    text-align: center;
  }
  
  .section-text.align-right .text-content {
    text-align: right;
  }
  
  .section-text.align-justify .text-content {
    text-align: justify;
  }
  
  /* ==========================================
         Heading Section
         ========================================== */
  .section-heading {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .section-heading.width-full {
    max-width: 100%;
  }
  
  .section-heading.width-narrow {
    max-width: 680px;
  }
  
  .section-heading.width-medium {
    max-width: 800px;
  }
  
  .section-heading .heading-text {
    font-family: var(--luago-font-heading);
    font-weight: 400;
    color: var(--luago-text);
    margin: 0;
    line-height: 1.2;
  }
  
  /* Heading sizes based on level */
  .section-heading .heading-text.heading-h2 {
    font-size: var(--luago-h2-size);
  }
  
  .section-heading .heading-text.heading-h3 {
    font-size: 28px;
  }
  
  .section-heading .heading-text.heading-h4 {
    font-size: 22px;
  }
  
  /* Heading alignment */
  .section-heading.align-left .heading-text {
    text-align: left;
  }
  
  .section-heading.align-center .heading-text {
    text-align: center;
  }
  
  .section-heading.align-right .heading-text {
    text-align: right;
  }
  
  /* ==========================================
         Separator Section
         ========================================== */
  .section-separator {
    margin-bottom: 0;
  }
  
  .section-separator hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 0 auto;
  }
  
  /* Styles */
  .section-separator.sep-style-solid hr {
    border-top-style: solid;
  }
  
  .section-separator.sep-style-dashed hr {
    border-top-style: dashed;
  }
  
  .section-separator.sep-style-dotted hr {
    border-top-style: dotted;
  }
  
  /* Widths */
  .section-separator.sep-width-narrow hr {
    max-width: 200px;
  }
  
  .section-separator.sep-width-medium hr {
    max-width: 400px;
  }
  
  .section-separator.sep-width-wide hr {
    max-width: 680px;
  }
  
  .section-separator.sep-width-full hr {
    max-width: 100%;
  }
  
  /* Spacing */
  .section-separator.sep-spacing-small {
    padding: 20px 0;
  }
  
  .section-separator.sep-spacing-medium {
    padding: 40px 0;
  }
  
  .section-separator.sep-spacing-large {
    padding: 80px 0;
  }
  
  /* ==========================================
         CTA Section
         ========================================== */
  .section-cta .cta-box {
    text-align: center;
    background: #f5f5f5;
  }
  
  /* Background Styles */
  .section-cta.bg-light-gray .cta-box {
    background: #dddddd;
  }
  
  .section-cta.bg-dark-gray .cta-box {
    background: var(--luago-text);
    color: #fff;
  }
  
  .section-cta.bg-outline .cta-box {
    background: transparent;
    border: 1px solid #ddd;
  }
  
  /* Padding Sizes */
  .section-cta.padding-small .cta-box {
    padding: 20px;
  }
  
  .section-cta.padding-medium .cta-box {
    padding: 40px;
  }
  
  .section-cta.padding-large .cta-box {
    padding: 60px;
  }
  
  .section-cta h3 {
    margin: 0 0 15px;
    font-family: var(--luago-font-heading);
    font-size: var(--luago-h2-size);
    font-weight: 400;
    color: var(--luago-text);
  }
  
  .section-cta p {
    margin: 0 0 20px;
    font-family: var(--luago-font-body);
    font-size: 16px;
  }
  
  .section-cta .cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--luago-text);
    color: #fff;
    text-decoration: none;
    font-family: var(--luago-font-body);
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 0;
    transition: opacity 0.3s ease;
  }
  
  .section-cta .cta-button:hover {
    opacity: 0.85;
  }
  
  /* Inverted button colours on dark backgrounds */
  .section-cta.bg-dark-gray .cta-button {
    background: #fff;
    color: var(--luago-text);
  }
  
  /* Inherit text colour on dark backgrounds */
  .section-cta.bg-dark-gray h3 {
    color: #fff;
  }
  
  /* ==========================================
         Featured Talent
         ========================================== */
  .journal-featured-talent {
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 30px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    text-align: center;
  }

  .journal-featured-talent .featured-talent-title {
    font-family: var(--luago-font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 10px;
    font-weight: 400;
    color: var(--luago-accent);
  }

  .journal-featured-talent .featured-talent-content {
    font-family: var(--luago-font-paragraph);
    font-size: 16px;
    line-height: 1.8;
    color: var(--luago-text);
  }

  .journal-featured-talent .featured-talent-content p {
    margin: 0;
  }

  .journal-featured-talent .featured-talent-content a {
    color: var(--luago-text);
    text-decoration: underline;
  }

  /* ==========================================
         Related Articles
         ========================================== */
  
  .journal-related .related-title {
    font-family: var(--luago-font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    font-weight: 400;
    color: var(--luago-accent);
  }
  
  .journal-related .related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .journal-related .related-card a {
    text-decoration: none;
    color: inherit;
  }
  
  .journal-related .related-card img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
  }
  
  .journal-related .related-card h3 {
    font-family: var(--luago-font-body);
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    color: var(--luago-text);
  }
  
  /* ==========================================
         Return to Journal Navigation
         ========================================== */
  .journal-back-nav {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
  }
  
  .journal-back-nav a {
    font-family: var(--luago-font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--luago-accent);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .journal-back-nav a:hover {
    color: var(--luago-text);
  }
  
  /* ==========================================
         Journal Listing (Shortcode)
         ========================================== */
  
  /* Top row: featured (left 50%) + 2×2 grid (right 50%), same height */
  .luago-journal-listing .listing-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  
  .luago-journal-listing .featured-post {
    min-height: 0;
  }
  
  .luago-journal-listing .featured-post a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
  }
  
  .luago-journal-listing .featured-post .featured-image {
    flex: 1 1 0%;
    overflow: hidden;
  }

  .luago-journal-listing .featured-post .post-info {
    flex-shrink: 0;
    padding-top: 15px;
  }

  .luago-journal-listing .featured-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .luago-journal-listing .featured-post h2 {
    margin: 0 0 5px;
    font-family: var(--luago-font-heading);
    font-size: 26px;
    font-weight: 400;
    color: var(--luago-text);
    line-height: 1.25;
  }

  /* Right side 2×2 grid — stretches to match featured height */
  .luago-journal-listing .grid-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 50px;
  }

  .luago-journal-listing .grid-right .grid-post a {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .luago-journal-listing .grid-right .post-image {
    flex: 1 1 0%;
    overflow: hidden;
  }

  .luago-journal-listing .grid-right .grid-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Safari fix — flex-basis: 0% resolves to auto in Safari,
     so use absolute-positioned images + aspect-ratio instead.
     Elementor adds .e--ua-safari to <body>. */

  .e--ua-safari .luago-journal-listing{
    display: grid;
  }
  
  .e--ua-safari .luago-journal-listing .featured-post .featured-image {
    flex: 1 1 0px;
    min-height: 0;
    position: relative;
  }

  .e--ua-safari .luago-journal-listing .featured-post img {
    position: absolute;
    top: 0;
    left: 0;
  }

  .e--ua-safari .luago-journal-listing .grid-right .post-image {
    flex: none;
  }
  
  /* Grid-right post info: fixed height for alignment */
  .luago-journal-listing .grid-right .post-info {
    /* height: 90px; */
    overflow: hidden;
  }
  
  /* Title clamped to 2 lines */
  .luago-journal-listing .post-info h2,
  .luago-journal-listing .post-info h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  /* Subtitle (excerpt) — sans-serif, sits between title and "Read More" */
  .luago-journal-listing .post-subtitle {
    margin: 4px 0 6px;
    font-family: var(--luago-font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--luago-accent);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .luago-journal-listing .featured-post .post-subtitle {
    font-size: 15px;
    -webkit-line-clamp: 3;
  }
  
  /* Below grid — 4 columns */
  .luago-journal-listing .grid-below {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-top: 50px;
  }
  
  .luago-journal-listing .grid-post a {
    display: block;
    text-decoration: none;
    color: inherit;
  }
  
  .luago-journal-listing .grid-post .post-image {
    overflow: hidden;
    aspect-ratio: 3 / 4;
  }
  
  .luago-journal-listing .grid-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .luago-journal-listing .grid-post h3 {
    margin: 10px 0 5px;
    font-family: var(--luago-font-heading);
    font-size: 16px;
    font-weight: 400;
    color: var(--luago-text);
    line-height: 1.3;
  }
  
  .luago-journal-listing .read-more {
    font-family: var(--luago-font-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--luago-accent);
  }
  
  /* ==========================================
         Infinite Scroll Loader
         ========================================== */

  .journal-load-more {
    display: flex;
    justify-content: center;
    padding: 40px 0;
  }

  .journal-load-text {
    font-family: var(--luago-font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--luago-accent);
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .journal-load-more.is-loading .journal-load-text {
    opacity: 1;
  }

  /* ==========================================
         Responsive
         ========================================== */
  
  /* Tablet */
  @media (max-width: 1024px) {
    :root {
      --luago-h1-size: 32px;
      --luago-h2-size: 32px;
      --luago-body-size: 15px;
    }
  
    .luago-journal-article {
      padding: 0 30px;
    }
  
    /* Two-column stays as 2 columns on tablet — reduce gap only */
    .section-two-column {
      gap: 15px !important;
    }
  
    .journal-related .related-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .luago-journal-listing .listing-layout {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    /* Single-column: featured image no longer matched by grid-right height,
       so revert to normal flow and let the image size naturally.
       .e--ua-safari rules repeated to match their higher specificity. */
    .luago-journal-listing .featured-post .featured-image,
    .e--ua-safari .luago-journal-listing .featured-post .featured-image {
      position: static;
      flex: none;
    }

    .luago-journal-listing .featured-post img,
    .e--ua-safari .luago-journal-listing .featured-post img {
      position: static;
      height: auto;
    }

    .luago-journal-listing .grid-right {
      gap: 30px;
    }

    .luago-journal-listing .grid-right .post-image {
      flex: none;
    }
  
    .luago-journal-listing .grid-below {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    :root {
      --luago-h1-size: 26px;
      --luago-h2-size: 26px;
      --luago-body-size: 15px;
    }
  
    .luago-journal-article {
      padding: 0;
    }
  
    .section-heading .heading-text.heading-h3 {
      font-size: 22px;
    }
  
    .section-heading .heading-text.heading-h4 {
      font-size: 18px;
    }
  
    .journal-section {
      margin-bottom: 40px;
    }
  
    /* Two-column stays as 2 columns on mobile — tighter gap */
    .section-two-column {
      gap: 8px !important;
    }
  
    /* Related articles: 2×2 on mobile */
    .journal-related .related-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
  
    /* Journal listing: full-width featured, 2-column grids */
    .luago-journal-listing .listing-layout {
      gap: 25px;
    }
  
    .luago-journal-listing .featured-post h2 {
      font-size: 22px;
    }
  
    .luago-journal-listing .grid-right {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .luago-journal-listing .grid-below {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .section-cta.padding-large .cta-box {
      padding: 30px 20px;
    }
  }
  