/* ============================================
   TORPO STAVE CHURCH
   Editorial Overrides · Hallingdal, Buskerud
   Base styles: article-base.css + article-shared.css
   Page prefix: tsc-
   ============================================ */


/* ── Theme tokens — medieval baldachin palette ──
   Scoped to .tsc-page so header/footer keep
   the global gold/aurora identity. */
.tsc-page {
  --tsc-cloister:      #2d4a6e;          /* deep monastic blue from the baldachin */
  --tsc-cloister-deep: #1d3450;
  --tsc-oxide:         #a8412f;          /* oxide red — cloak, scrollwork */
  --tsc-oxide-deep:    #7a2c1f;
  --tsc-charcoal:      #1c1612;          /* warm interior beam-black */
  --tsc-charcoal-soft: #2a2018;
  --tsc-parchment:     #f4ecd8;          /* aged paper / fresco ground */
  --tsc-gilt:          #b8915a;          /* muted gilt for cream sections */
  --tsc-gilt-soft:     rgba(184, 145, 90, 0.20);

  --art-accent:         var(--tsc-oxide);
  --art-accent-dark:    var(--tsc-oxide-deep);
  --art-accent-glow:    rgba(168, 65, 47, 0.35);
  --art-accent-subtle:  rgba(168, 65, 47, 0.06);
  --art-ornament:       var(--tsc-gilt);
  --art-hero-accent-line: var(--tsc-gilt);
  --art-subtitle-color: rgba(244, 236, 216, 0.92);
}


/* ============================================
   HERO — slow Ken Burns + warm overlay
   Sky-heavy summer photo needs a darker bottom
   so the title and meta read against the brightness.
   ============================================ */
.tsc-page .art-hero__media img {
  animation: tscHeroKB 34s ease-out forwards;
}

@keyframes tscHeroKB {
  0%   { transform: scale(1.09); }
  100% { transform: scale(1); }
}

.tsc-page .art-hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(28, 22, 18, 0.28) 0%,
    rgba(28, 22, 18, 0.10) 28%,
    rgba(28, 22, 18, 0.45) 65%,
    rgba(28, 22, 18, 0.85) 92%,
    rgba(28, 22, 18, 1) 100%
  );
}


/* ── Hero meta legibility against bright sky ── */
.tsc-page .art-hero__category {
  background: var(--tsc-oxide);
  color: var(--tsc-parchment);
  letter-spacing: 0.22em;
  text-shadow: none;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
}

.tsc-page .art-hero__region {
  color: rgba(244, 236, 216, 0.92);
  border-color: rgba(244, 236, 216, 0.55);
  background: rgba(28, 22, 18, 0.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  letter-spacing: 0.22em;
}

.tsc-page .art-hero__divider {
  background: rgba(244, 236, 216, 0.65);
  opacity: 1;
  width: 6px;
  height: 6px;
}

.tsc-page .art-hero__title {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.50);
}

.tsc-page .art-hero__subtitle {
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}


/* ── Hero composition — push title lower on
   short laptops so it doesn't land on the church. */
@media (max-height: 900px) {
  .tsc-page .art-hero__content {
    padding-bottom: var(--space-3xl, 3rem);
  }
}
@media (max-height: 760px) {
  .tsc-page .art-hero__content {
    padding-bottom: var(--space-2xl, 2rem);
  }
}
@media (max-height: 640px) {
  .tsc-page .art-hero__content {
    padding-bottom: var(--space-xl, 1.5rem);
  }
}


/* ============================================
   LEAD — let the dropcap stay, but lift the
   inline rune-line so it reads as an inscription
   carved beneath the opening paragraph.
   ============================================ */
.tsc-rune-line {
  display: inline;
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-style: italic;
  color: var(--tsc-oxide-deep);
  font-weight: 500;
  letter-spacing: 0.01em;
}


/* ============================================
   FACT STRIP — horizontal Location · Date · Style
   Sits directly under the lead; small caps labels,
   editorial display values, hair-thin separators.
   ============================================ */
.tsc-factstrip {
  background: linear-gradient(
    180deg,
    rgba(244, 236, 216, 0.55) 0%,
    rgba(244, 236, 216, 0) 100%
  );
  padding: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 4vw, 3rem) clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(184, 145, 90, 0.30);
}

.tsc-factstrip__inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}

.tsc-factstrip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}

.tsc-factstrip__label {
  font-family: var(--font-body, 'Glacial Indifference', sans-serif);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tsc-oxide);
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.tsc-factstrip__value {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-style: italic;
  color: var(--tsc-charcoal);
  line-height: 1.35;
  max-width: 22ch;
}

.tsc-factstrip__sep {
  width: 1px;
  height: 36px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--tsc-gilt) 50%,
    transparent 100%
  );
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .tsc-factstrip__inner {
    flex-direction: column;
    gap: 1.5rem;
  }
  .tsc-factstrip__sep {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--tsc-gilt), transparent);
  }
}


/* ============================================
   BLEED — full-bleed figure (baldachin opener,
   sister-churches transition). No card chrome,
   just the image speaking for itself.
   ============================================ */
.tsc-bleed {
  margin: clamp(2.5rem, 5vw, 4rem) 0;
  padding: 0;
}

.tsc-bleed__img-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--tsc-charcoal);
}

.tsc-bleed__img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: cover;
  object-position: center;
  transition: transform 1.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.tsc-bleed.is-visible .tsc-bleed__img-wrap img {
  animation: tscBleedKB 22s ease-out forwards;
}

@keyframes tscBleedKB {
  0%   { transform: scale(1.06); }
  100% { transform: scale(1); }
}

.tsc-bleed figcaption {
  max-width: 800px;
  margin: 1rem auto 0;
  padding: 0 1.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted, #5a5048);
  font-style: italic;
  text-align: center;
  line-height: 1.55;
}

.tsc-bleed figcaption a {
  color: var(--tsc-oxide);
  text-decoration: underline;
  text-decoration-color: rgba(168, 65, 47, 0.35);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.25s, color 0.25s;
}

.tsc-bleed figcaption a:hover {
  color: var(--tsc-oxide-deep);
  text-decoration-color: var(--tsc-oxide);
}


/* ============================================
   DIPTYCH — two scenes side by side with one
   shared caption. Used for the Margaretha pair.
   ============================================ */
.tsc-diptych {
  margin: clamp(2.5rem, 5vw, 4rem) 0;
  padding: 0;
}

.tsc-diptych__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.5rem, 1vw, 1rem);
  background: var(--tsc-charcoal);
  padding: clamp(0.5rem, 1vw, 1rem);
}

.tsc-diptych__panel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--tsc-charcoal);
}

.tsc-diptych__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.9s ease-out;
}

.tsc-diptych:hover .tsc-diptych__panel img {
  transform: scale(1.02);
}

.tsc-diptych figcaption {
  max-width: 900px;
  margin: 1rem auto 0;
  padding: 0 1.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted, #5a5048);
  font-style: italic;
  text-align: center;
  line-height: 1.55;
}

.tsc-diptych figcaption a {
  color: var(--tsc-oxide);
  text-decoration: underline;
  text-decoration-color: rgba(168, 65, 47, 0.35);
  text-underline-offset: 2px;
}

@media (max-width: 720px) {
  .tsc-diptych__grid {
    grid-template-columns: 1fr;
  }
  .tsc-diptych__panel {
    aspect-ratio: 16 / 10;
  }
}


/* ============================================
   SOUL QUOTE — Margaretha dove / Olybrius demon
   Dark cloister-blue wall with oxide-red ornament.
   Variant of art-pullquote--wall.
   ============================================ */
.tsc-soul-quote {
  background: radial-gradient(
      ellipse at top,
      rgba(168, 65, 47, 0.18) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, var(--tsc-cloister-deep) 0%, var(--tsc-charcoal) 100%);
  padding: clamp(4.5rem, 9vw, 7.5rem) clamp(2rem, 8vw, 8rem);
  position: relative;
}

.tsc-soul-quote::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--tsc-oxide) 30%,
    var(--tsc-oxide) 70%,
    transparent 100%
  );
  opacity: 0.85;
}

.tsc-soul-quote .art-pullquote__inner p {
  font-size: clamp(1.85rem, 3.4vw, 2.8rem);
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-style: italic;
  font-weight: 400;
  line-height: 1.30;
  color: var(--tsc-parchment);
  letter-spacing: -0.005em;
  max-width: 22ch;
  margin: 0 auto;
}

.tsc-soul-quote .art-pullquote__cite {
  display: block;
  text-align: center;
  color: rgba(184, 145, 90, 0.95);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-top: 2rem;
}


/* ============================================
   CARVING MOSAIC — asymmetric door + detail
   Opens the Dragon Style section visually.
   ============================================ */
.tsc-carving-mosaic {
  max-width: 1280px;
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.tsc-carving-mosaic__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  grid-template-rows: auto;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  align-items: stretch;
}

.tsc-carving-mosaic__main {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(28, 22, 18, 0.18);
  background: var(--tsc-charcoal);
}

.tsc-carving-mosaic__detail {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(28, 22, 18, 0.18);
  background: var(--tsc-charcoal);
  align-self: stretch;
}

.tsc-carving-mosaic__main img,
.tsc-carving-mosaic__detail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.tsc-carving-mosaic:hover .tsc-carving-mosaic__main img,
.tsc-carving-mosaic:hover .tsc-carving-mosaic__detail img {
  transform: scale(1.025);
}

.tsc-carving-mosaic__credit {
  max-width: 900px;
  margin: 1rem auto 0;
  font-size: 0.85rem;
  color: var(--color-text-muted, #5a5048);
  font-style: italic;
  text-align: center;
  line-height: 1.55;
}

@media (max-width: 820px) {
  .tsc-carving-mosaic__grid {
    grid-template-columns: 1fr;
  }
  .tsc-carving-mosaic__main img {
    aspect-ratio: 3 / 4;
  }
  .tsc-carving-mosaic__detail img {
    aspect-ratio: 16 / 9;
  }
}


/* ============================================
   RUNESTONE — visual hierarchy of the inscription
   Master / Apprentices / Carved by / And
   Sits on a parchment plaque with gilt accents.
   ============================================ */
.tsc-runestone {
  max-width: 820px;
  margin: clamp(2rem, 4vw, 3.5rem) auto;
  padding: 0;
}

.tsc-runestone__inner {
  display: grid;
  grid-template-columns: auto 1px auto 1px auto 1px auto;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  padding: clamp(2.25rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(
    180deg,
    rgba(244, 236, 216, 0.92) 0%,
    rgba(244, 236, 216, 0.65) 100%
  );
  border: 1px solid rgba(184, 145, 90, 0.40);
  border-top: 3px solid var(--tsc-oxide);
  border-radius: 4px;
  box-shadow: 0 18px 50px rgba(28, 22, 18, 0.10);
  position: relative;
}

.tsc-runestone__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}

.tsc-runestone__label {
  font-family: var(--font-body, 'Glacial Indifference', sans-serif);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tsc-oxide);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.tsc-runestone__names {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  color: var(--tsc-charcoal);
  margin: 0;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.tsc-runestone__action {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-text-muted, #5a5048);
  margin: 0.25rem 0 0;
}

.tsc-runestone__divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(184, 145, 90, 0.55) 30%,
    rgba(184, 145, 90, 0.55) 70%,
    transparent 100%
  );
}

.tsc-runestone figcaption {
  margin: 1rem auto 0;
  font-size: 0.82rem;
  color: var(--color-text-muted, #5a5048);
  font-style: italic;
  text-align: center;
}

@media (max-width: 820px) {
  .tsc-runestone__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
  .tsc-runestone__divider {
    height: 1px;
    width: 80px;
    justify-self: center;
    align-self: auto;
    background: linear-gradient(90deg, transparent, rgba(184, 145, 90, 0.55), transparent);
  }
  .tsc-runestone__names {
    font-size: 1.15rem;
  }
}


/* ============================================
   BIGNUM — 280 kr display opener
   Sets the price as a typographic moment before
   the saved-from-demolition story unfolds.
   ============================================ */
.tsc-bignum {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  margin: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.tsc-bignum__num {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-weight: 400;
  font-size: clamp(5.5rem, 13vw, 11rem);
  color: var(--tsc-oxide);
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.tsc-bignum__unit {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--tsc-oxide-deep);
  letter-spacing: 0.02em;
  margin-left: 0.1rem;
}


/* ============================================
   FACTBOX DEEP — embedded "Stave Churches in
   Norway — What Happened?" plaque. Wider and
   more structured than rsm-factbox, sits as a
   narrative interruption inside the 280 kr story.
   ============================================ */
.tsc-factbox-deep {
  max-width: 880px;
  margin: clamp(2.5rem, 5vw, 4rem) auto;
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(2rem, 5vw, 3.5rem);
  background:
    linear-gradient(180deg, rgba(168, 65, 47, 0.04) 0%, rgba(255,255,255, 0.5) 100%);
  border: 1px solid rgba(168, 65, 47, 0.20);
  border-top: 3px solid var(--tsc-oxide);
  border-radius: 4px;
  box-shadow: 0 18px 50px rgba(28, 22, 18, 0.08);
  position: relative;
}

.tsc-factbox-deep__eyebrow {
  display: block;
  text-align: center;
  font-family: var(--font-body, 'Glacial Indifference', sans-serif);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--tsc-oxide);
  font-weight: 700;
  margin-bottom: 0.875rem;
}

.tsc-factbox-deep__title {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-weight: 500;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  color: var(--tsc-charcoal);
  text-align: center;
  line-height: 1.25;
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.005em;
}

/* Numbers row — 1000 → 28 */
.tsc-factbox-deep__row--numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  padding-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
  border-bottom: 1px solid rgba(184, 145, 90, 0.35);
}

.tsc-factbox-deep__stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.tsc-factbox-deep__stat-num {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  color: var(--tsc-oxide);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.tsc-factbox-deep__stat-label {
  font-size: 0.92rem;
  color: var(--tsc-charcoal-soft);
  line-height: 1.55;
  font-style: italic;
  max-width: 32ch;
  margin: 0 auto;
}

/* Block — why destroyed, why survived */
.tsc-factbox-deep__block {
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.tsc-factbox-deep__block:first-of-type {
  margin-top: 0;
}

.tsc-factbox-deep__sub {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  color: var(--tsc-cloister);
  margin: 0 0 1rem;
  letter-spacing: -0.005em;
}

.tsc-factbox-deep__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.tsc-factbox-deep__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--tsc-charcoal-soft);
}

.tsc-factbox-deep__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border: 1px solid var(--tsc-oxide);
  transform: rotate(45deg);
}

.tsc-factbox-deep__list li strong {
  color: var(--tsc-charcoal);
  font-weight: 600;
}

.tsc-factbox-deep__block p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--tsc-charcoal-soft);
  margin: 0;
}

.tsc-factbox-deep__block p + p {
  margin-top: 0.85rem;
}

.tsc-factbox-deep em {
  color: var(--tsc-oxide-deep);
  font-style: italic;
}

@media (max-width: 600px) {
  .tsc-factbox-deep__row--numbers {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


/* ============================================
   BISHOP — quiet, narrow, atmospheric closing
   No big image, just text in a tighter measure
   with a warm dark feel to match the mystery.
   ============================================ */
.tsc-bishop {
  background:
    radial-gradient(ellipse at top, rgba(45, 74, 110, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--color-cream, #fbf9f6) 0%, rgba(244, 236, 216, 0.4) 100%);
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.tsc-bishop__inner {
  max-width: 700px;
}

.tsc-bishop .art-heading h2 {
  color: var(--tsc-cloister);
}

.tsc-bishop .art-prose p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--tsc-charcoal-soft);
  font-style: italic;
}

.tsc-bishop .art-prose p:last-child {
  font-style: normal;
  color: var(--tsc-charcoal);
  margin-top: 1.5rem;
}


/* ============================================
   QUOTE — softer left-border tint
   ============================================ */
.tsc-page .art-quote {
  border-left-color: rgba(168, 65, 47, 0.30);
}


/* ============================================
   ANCHOR SCROLLING
   ============================================ */
.tsc-page {
  scroll-behavior: smooth;
}
.tsc-page #related-articles {
  scroll-margin-top: 100px;
}


/* ============================================
   CLOSING — warm tone + theme-tied separator
   ============================================ */
.tsc-page .art-closing__text {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-style: italic;
}

.tsc-page .art-closing::before {
  background: linear-gradient(90deg, var(--tsc-gilt), var(--tsc-oxide));
}


/* ============================================
   FIGURE — gentle Ken Burns
   ============================================ */
.tsc-page .art-figure.is-visible .art-figure__img-wrap img {
  animation-duration: 20s;
}


/* ============================================
   RESPONSIVE — small adjustments at 480px
   ============================================ */
@media (max-width: 480px) {
  .tsc-soul-quote {
    padding: 3.75rem 1.5rem;
  }
  .tsc-soul-quote::before {
    top: 1.75rem;
    width: 44px;
  }
  .tsc-soul-quote .art-pullquote__inner p {
    font-size: 1.45rem;
    line-height: 1.34;
  }
  .tsc-bignum__num {
    font-size: 5rem;
  }
  .tsc-factbox-deep {
    padding: 1.875rem 1.5rem;
  }
  .tsc-factbox-deep__stat-num {
    font-size: 2.4rem;
  }
}


/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .tsc-page .art-hero__media img,
  .tsc-bleed.is-visible .tsc-bleed__img-wrap img,
  .tsc-page .art-figure.is-visible .art-figure__img-wrap img {
    animation: none;
    transform: none;
  }
  .tsc-diptych:hover .tsc-diptych__panel img,
  .tsc-carving-mosaic:hover .tsc-carving-mosaic__main img,
  .tsc-carving-mosaic:hover .tsc-carving-mosaic__detail img {
    transform: none;
  }
}
