/* ==========================================================
   HIGH-END EDITORIAL DESIGN SYSTEM & VARIABLE TOKENS
   ========================================================== */
:root {
  --bg-white: #ffffff;
  --bg-neutral: #fcfcfc;
  --bg-dark: #111111;
  --text-dark: #000000;
  --text-muted: #666666;
  --text-light: #ffffff;
  --border-color: #e5e5e5;

  /* Typography Scales */
  --font-serif: "PPEiko-Regular", serif;
  --font-sans:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;

  --fs-display: 3.8rem;
  --fs-h1: 2.2rem;
  --fs-h2: 1.3rem;
  --fs-body: 0.9rem;
  --fs-meta: 0.75rem;

  /* Layout Rhythm */
  --space-grid: 40px;
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 1024px) {
  :root {
    --fs-display: 2.5rem;
    --fs-h1: 1.8rem;
    --fs-h2: 1.25rem;
    --space-grid: 20px;
  }
}

/* --- STRUCTURAL RESET BASE --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-white);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- GLOBAL ARCHITECTURE LAYOUTS --- */
.editorial-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--space-grid);
}

.editorial-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}

@media (min-width: 1025px) {
  .editorial-section {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* --- TYPOGRAPHY & HEADER UTILITIES --- */
.serif-title {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  font-size: var(--fs-display);
  text-align: center;
}

.section-header-flex > .serif-title {
  font-style: italic;
}

.section-label {
  font-size: var(--fs-meta);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: block;
  font-weight: 600;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  border-bottom: 1px solid #000000;
  padding-bottom: 12px;
}

/* ==========================================================
   0. ANNOUNCEMENT RUNNING TICKER
   ========================================================== */
.top-ticker {
  background-color: #f3f3f3;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  padding: 12px 0;
  display: flex;
}

.ticker-stream {
  display: flex;
  white-space: nowrap;
  animation: streaming 35s linear infinite;
}

.ticker-phrase {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 30px;
  font-size: var(--fs-meta);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ticker-icon {
  font-size: 10px;
  opacity: 0.6;
}

@keyframes streaming {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ==========================================================
   GLOBAL STICKY NAVIGATION SYSTEM
   ========================================================== */
.editorial-nav {
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-white);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.nav-menu-links {
  display: flex;
  gap: 30px;
  text-transform: uppercase;
  font-size: var(--fs-meta);
  letter-spacing: 0.05em;
  font-weight: 600;
}

.nav-menu-links a:hover {
  color: var(--text-muted);
}

.nav-search-bar {
  background: #f5f5f5;
  padding: 8px 16px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 320px;
}

.nav-search-bar input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: var(--fs-body);
}

/* ==========================================================
   SECTION 1: HIGH-IMPACT DYNAMIC HERO MATRIX
   ========================================================== */
.premium-hero-matrix {
  padding: 10px 0 80px 0;
  background-color: var(--bg-white);
}

.hero-cinematic-viewport {
  width: 100%;
  height: 85vh;
  background-color: #111111;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--text-dark);
}

.hero-slideshow-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-media-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.hero-media-slide.active-slide {
  opacity: 0.85;
  transform: scale(1);
  z-index: 2;
}

.hero-editorial-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  padding: 40px 20px;
  pointer-events: none;
}

.meta-left-strip,
.meta-right-strip {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: var(--fs-meta);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-light);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  opacity: 0.7;
}

.meta-right-strip {
  transform: rotate(180deg);
  align-items: flex-end;
}

.hero-masthead-title-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 40px;
  text-align: center;
}

.masthead-pre-tag {
  font-size: var(--fs-meta);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-monolith-title {
  color: var(--text-light) !important;
  font-size: var(--fs-display) !important;
  line-height: 1.05 !important;
  max-width: 900px;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: none;
}

.hero-carousel-timeline-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  z-index: 20;
}

.timeline-bar-segment {
  height: 4px;
  background-color: rgba(255, 255, 255, 0.15);
  position: relative;
}

.internal-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: var(--text-light);
}

/* ==========================================================
   SECTION 2: AUTOMATED SCROLLING TRENDING CAROUSEL
   ========================================================== */
.trending-banner-title {
  text-align: center;
  font-size: var(--fs-display);
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
}

.trending-ticker-container {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
  position: relative;
}

.trending-autoscroll-track {
  display: flex;
  gap: 30px;
  animation: trackScroll 40s linear infinite;
  width: max-content;
}

.trending-autoscroll-track:hover {
  animation-play-state: paused;
}

.trending-editorial-card {
  width: 260px;
  flex-shrink: 0;
  cursor: pointer;
}

.trending-img-box {
  aspect-ratio: 3/4;
  background-color: #eee;
  margin-bottom: 15px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.trending-editorial-card:hover .trending-img-box {
  transform: translateY(-5px);
}

.trending-meta-title {
  font-weight: 700;
  font-size: var(--fs-body);
  margin-bottom: 4px;
}

.trending-meta-sub {
  font-size: var(--fs-meta);
  color: var(--text-muted);
  text-transform: uppercase;
}

@keyframes trackScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ==========================================================
   SECTION 3: POLAROID STYLE ARCHITECTURAL GRID
   ========================================================== */
.polaroid-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.polaroid-item {
  background-color: var(--bg-white);
  padding: 16px 16px 35px 16px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.polaroid-item:hover {
  transform: rotate(1deg) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.polaroid-photo-space {
  aspect-ratio: 1/1;
  background-color: #f7f7f7;
  margin-bottom: 20px;
}

.polaroid-caption {
  font-family: var(--font-serif);
  font-size: var(--fs-h2);
  text-align: center;
  color: #222;
}

/* ==========================================================
   SECTION 4: MAGAZINE LAYOUT & NEWS TRACK
   ========================================================== */
.magazine-layout {
  display: grid;
  grid-template-columns: 4fr 5fr 3fr;
  gap: var(--space-grid);
}

.mag-feature-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mag-feature-img {
  aspect-ratio: 16/10;
  background: #eee;
}

.mag-headline {
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 10px;
}

.mag-split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.mag-split-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.newfaces-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 15px;
}

.newfaces-thumb {
  aspect-ratio: 3/4;
  background: #eee;
}

/* ==========================================================
   SECTION 5: DISCOVER AGENCIES AUTO-SLIDESHOW
   ========================================================== */
.agency-discovery-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-grid);
}

.agency-deck-card {
  background-color: var(--bg-neutral);
  border: 1px solid var(--border-color);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  width: 100%; /* Maximizes layout container stability over fixed window scales */
}

.agency-logo-viewport {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: rgba(0, 0, 0, 0.06);
  padding: 20px;
  overflow: hidden;
}

.sliding-logo-node {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  position: absolute;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  text-align: center;
}

.sliding-logo-node.active-logo {
  opacity: 1;
  transform: translateY(0);
}

.deck-view-all-btn {
  align-self: flex-start;
  border: 1px solid var(--text-dark);
  padding: 10px 24px;
  font-size: var(--fs-meta);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 30px;
  transition: var(--transition-smooth);
}

.deck-view-all-btn:hover {
  background-color: var(--text-dark);
  color: var(--bg-white);
}

/* ==========================================================
   SECTION 6: DIRECTORY DISCOVERY & SPOTLIGHT MATRIX
   ========================================================== */
.directory-advert-split {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: var(--space-grid);
}

.advert-cta-panel {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.talent-identity-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.talent-profile-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.talent-strip-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
  flex-shrink: 0;
}

.talent-strip-name {
  font-weight: 700;
  font-size: var(--fs-h2);
}

.talent-strip-role {
  font-size: var(--fs-meta);
  color: var(--text-muted);
}

/* ==========================================================
   SECTION 7: DISCOVER LATEST WORK & FILTERS
   ========================================================== */
.matrix-filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
}

.filter-pill {
  padding: 10px 22px;
  background: #f5f5f5;
  border-radius: 30px;
  font-size: var(--fs-meta);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-pill.active-pill,
.filter-pill:hover {
  background: var(--bg-dark);
  color: var(--text-light);
}

.latest-works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px var(--space-grid);
}

.work-card-node {
  display: flex;
  flex-direction: column;
  background: transparent;
}

.work-image-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: #f7f7f7;
}

.work-display-asset {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.work-card-node:hover .work-display-asset {
  transform: scale(1.02);
}

.work-meta-baseline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 8px;
}

.work-brand-label {
  font-size: var(--fs-meta);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--text-dark);
}

.work-temporal-tag {
  font-size: var(--fs-body);
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-muted);
}

.work-editorial-title {
  font-family: var(--font-serif);
  font-size: var(--fs-h1);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 6px 0;
  color: var(--text-dark);
}

.work-spec-category {
  font-size: var(--fs-meta);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ==========================================================
   SECTION 8: PRESTIGE SYSTEM FOOTER
   ========================================================== */
.editorial-footer {
  background-color: #111111;
  color: #999999;
  padding: 100px 0 6px 0;
  font-size: var(--fs-body);
}

.footer-grid-tree {
  display: grid;
  grid-template-columns: 4fr repeat(4, 2fr);
  gap: var(--space-grid);
  margin-bottom: 80px;
}

.footer-corporate-brand {
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-heading-node {
  color: var(--text-light);
  font-size: var(--fs-meta);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
  font-weight: 700;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: var(--fs-body);
}

.footer-links-list a {
  transition: color 0.3s ease;
}

.footer-links-list a:hover {
  color: var(--text-light);
}

.footer-baseline-strip {
  border-top: 1px solid #222222;
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-meta);
}

/* ==========================================================
   CASCADING DYNAMIC MEDIA QUERY BREAKPOINTS MATRIX
   ========================================================== */
@media (max-width: 1024px) {
  .hero-cinematic-viewport {
    height: 65vh;
  }

  .hero-editorial-grid-overlay {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .meta-left-strip,
  .meta-right-strip {
    display: none;
  }

  .hero-masthead-title-block {
    grid-column: 1 / -1;
    justify-content: center;
    padding-bottom: 0;
  }

  .hero-monolith-title {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
  }

  .magazine-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .directory-advert-split {
    grid-template-columns: 1fr;
  }

  .footer-grid-tree {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .nav-menu-links,
  .nav-search-bar {
    display: none;
  }

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

  .latest-works-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .matrix-filter-row {
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .agency-discovery-box {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .agency-deck-card {
    padding: 40px 20px;
    min-height: auto;
  }

  .footer-baseline-strip {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero-cinematic-viewport {
    height: 55vh;
  }

  .polaroid-grid {
    grid-template-columns: 1fr;
  }

  .mag-split-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .talent-identity-row {
    grid-template-columns: 1fr;
  }

  .footer-grid-tree {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================
   MOBILE DRAWER ARCHITECTURE & TRIGGER SYSTEMS
   ========================================================== */

/* Hidden by default on desktop context to guarantee zero layout shifting */
.menu-hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  padding: 0;
  z-index: 1001;
}

.menu-hamburger-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* Base Fullscreen Panel Architecture */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-white);
  z-index: 2000;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.mobile-nav-drawer.drawer-active {
  transform: translate3d(0, 0, 0);
}

/* Global viewport scrolling context locks */
body.drawer-lock {
  overflow: hidden !important;
}

/* Header Grid Structure Matrix matching the screenshot exactly */
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 var(--space-grid);
  border-bottom: 1px solid var(--border-color);
  flex-shrink: 0;
}

.drawer-close-btn {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-dark);
  width: 30px;
  text-align: left;
}

.drawer-logo-brand {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-align: left;
  flex-grow: 1;
  margin-left: 10px;
}

.drawer-header-login-btn {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-size: var(--fs-meta);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 10px 24px;
  border-radius: 4px;
}

/* Content Frame & Scroll Configurations */
.drawer-scroll-viewport {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px var(--space-grid) 60px var(--space-grid);
  -webkit-overflow-scrolling: touch;
}

/* Micro Accordion Component Engine Rules */
.drawer-accordion-node {
  border-bottom: 1px solid var(--border-color);
}

.drawer-accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 12px 0;
  font-size: var(--fs-h2);
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
}

.accordion-caret {
  width: 10px;
  height: 10px;
  border-left: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
  margin-right: 4px;
}

.drawer-accordion-node.expanded .drawer-accordion-trigger {
  color: var(--text-dark);
}

.drawer-accordion-node.expanded .accordion-caret {
  transform: rotate(135deg);
}

.drawer-accordion-content {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 8px 0 24px 0;
}

.drawer-accordion-node.expanded .drawer-accordion-content {
  display: flex;
}

.drawer-accordion-content a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color 0.2s ease;
}

/* Dual Primary Actions Block configuration */
.drawer-action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 40px 0 35px 0;
}

.drawer-btn-solid {
  background-color: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
  padding: 14px 0;
  font-weight: 700;
  font-size: var(--fs-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--bg-dark);
}

.drawer-btn-outline {
  background-color: transparent;
  color: var(--text-dark);
  text-align: center;
  padding: 14px 0;
  font-weight: 700;
  font-size: var(--fs-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--border-color);
}

/* Social & Meta Subfooter Matrices */
.drawer-social-row {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.drawer-social-row a {
  transition: opacity 0.2s ease;
}

.drawer-social-row a:hover {
  opacity: 0.6;
}

.drawer-subfooter-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-top: 1px solid var(--border-color);
  padding-top: 35px;
}

.subfooter-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.subfooter-col a {
  font-size: var(--fs-body);
  color: var(--text-dark);
}

/* --- DYNAMIC VISIBILITY OVERRIDES --- */
@media (max-width: 900px) {
  .menu-hamburger-btn {
    display: flex; /* Makes trigger responsive exactly when nav-links drop out */
  }

  .nav-inner {
    justify-content: flex-start;
    gap: 25px;
  }

  .nav-logo {
    font-size: 1.6rem;
  }
}
