/* ========================================
   single-kunstwerk.css
   Einzelansicht Redesign — April 2026
   Abhaengig von base.css (Custom Properties)
   ======================================== */

/* ── CSS Custom Properties (Fallbacks, werden von base.css ueberschrieben) ── */
:root {
  --ik-black: #0A0A0A;
  --ik-white: #FAFAFA;
  --ik-gray: #F6F5F3;
  --ik-gray-border: #E8E6E1;
  --ik-red: #B5453A;
  --ik-red-dark: #6B251F;
  --ik-text-secondary: #555555;
  --ik-text-tertiary: #999999;
  --ik-text-werktext: #333333;
  --ik-ease-default: cubic-bezier(0.16, 1, 0.3, 1);
  --ik-duration-fast: 200ms;
  --ik-duration-normal: 300ms;
  --ik-duration-slow: 500ms;
  --ik-duration-reveal: 700ms;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --ik-duration-fast: 0ms;
    --ik-duration-normal: 0ms;
    --ik-duration-slow: 0ms;
    --ik-duration-reveal: 0ms;
  }
}

/* ── Ollie Body-Padding Reset ── */
body.single-kunstwerk-php { padding: 0; margin: 0; }
body.single-kunstwerk-php .wp-site-blocks { padding: 0; }
body.single-kunstwerk-php > .is-layout-constrained { max-width: none; padding: 0; }

/* ── Skip Link ── */
.sk-skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--ik-black);
  color: var(--ik-white);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  z-index: 200;
  border-radius: 6px;
}

.sk-skip-link:focus {
  top: 16px;
  color: var(--ik-white);
}

/* ── Layout Containers ── */
.sk-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sk-container--narrow {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
}

.sk-container--medium {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.sk-container--works {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   Block 1: Hero
   ======================================== */
.sk-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px 0;
}

.sk-hero__canvas {
  position: relative;
  width: 100%;
  min-height: 360px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #2C2C2C;
}

.sk-hero__image {
  width: 100%;
  min-height: 360px;
  max-height: 520px;
  height: 50vw;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sk-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.2) 45%, transparent 70%),
    linear-gradient(to right, rgba(0, 0, 0, 0.15) 0%, transparent 60%);
  z-index: 1;
}

/* Film Grain (Sagmeister-Moment) */
.sk-hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

.sk-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 40px 32px;
  z-index: 2;
}

.sk-hero__title {
  font-family: var(--ik-font-heading);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.sk-hero__artist {
  font-family: var(--ik-font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}

/* ========================================
   Block 2: Werkansicht — 2 Spalten
   ======================================== */
.sk-werkansicht {
  padding-top: 48px;
}

/* Ohne Hero-Block: weniger padding-top (direkt nach Header) */
.sk-werkansicht--no-hero {
  padding-top: 32px;
}

.sk-werkansicht__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.sk-werkansicht__image-col {
  position: relative;
}

.sk-werkansicht__image {
  width: 100%;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

.sk-tag {
  display: inline-block;
  font-family: var(--ik-font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
  background: transparent;
  color: var(--ik-text-secondary);
  padding: 5px 12px;
  border-radius: 4px;
  border: 1px solid var(--ik-gray-border);
  text-decoration: none;
}

/* Werktext-Spalte */
.sk-werkansicht__text-col {
  padding-top: 8px;
}

.sk-werkansicht__label {
  font-family: var(--ik-font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--ik-text-tertiary);
  display: block;
  margin-bottom: 16px;
}

.sk-werkansicht__body {
  font-family: var(--ik-font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ik-text-werktext);
}

.sk-werkansicht__body p + p {
  margin-top: 24px;
}

/* ========================================
   Block 3: Unlock-Bereich
   ======================================== */
.sk-unlock {
  margin-top: 20px;
}

.sk-unlock__card {
  background: var(--ik-gray);
  border-radius: 8px;
  padding: 24px;
}

/* Meta-Zeile */
.sk-unlock__meta-line {
  font-size: 14px;
  font-weight: 500;
  color: var(--ik-black);
  line-height: 1.4;
}

.sk-unlock__tags {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.sk-unlock__divider-inner {
  border: none;
  border-top: 0.5px solid var(--ik-gray-border);
  margin: 20px 0;
}

/* Zustand A: Gesperrt */
.sk-unlock__locked {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  text-align: left;
}

.sk-unlock__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.sk-unlock__icon svg {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sk-unlock__icon .sk-lock--line {
  color: var(--ik-black);
  animation: sk-lockA 4s ease-in-out infinite;
}

.sk-unlock__icon .sk-lock--fill {
  color: var(--ik-red);
  animation: sk-lockB 4s ease-in-out infinite;
}

@keyframes sk-lockA {
  0%   { opacity: 1; }
  45%  { opacity: 0; }
  55%  { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes sk-lockB {
  0%   { opacity: 0; }
  45%  { opacity: 1; }
  55%  { opacity: 1; }
  100% { opacity: 0; }
}

.sk-unlock__locked-title {
  font-family: var(--ik-font-heading);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: var(--ik-black);
}

.sk-unlock__locked-sub {
  font-size: 12px;
  line-height: 1.4;
  color: var(--ik-text-tertiary);
  margin-top: 2px;
}

/* Zustand B: Formular */
.sk-unlock__form {
  display: none;
}

.sk-unlock__form-title {
  font-family: var(--ik-font-heading);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.25;
  color: var(--ik-black);
}

.sk-unlock__form-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ik-text-secondary);
  margin-top: 8px;
}

.sk-unlock__input-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.sk-unlock__input-row label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.sk-unlock__input {
  flex: 1;
  min-height: 44px;
  padding: 10px 16px;
  font-family: var(--ik-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ik-black);
  background: #FFFFFF;
  border: 1px solid var(--ik-gray-border);
  border-radius: 6px;
  outline: none;
  transition: border-color var(--ik-duration-fast) var(--ik-ease-default);
}

.sk-unlock__input::placeholder {
  color: var(--ik-text-tertiary);
}

.sk-unlock__input:focus {
  border-color: var(--ik-black);
}

.sk-unlock__input--error {
  border-color: var(--ik-red);
}

.sk-unlock__submit {
  min-height: 44px;
  padding: 10px 22px;
  font-family: var(--ik-font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ik-red);
  background: transparent;
  border: 1px solid var(--ik-red);
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--ik-duration-fast) var(--ik-ease-default),
              color var(--ik-duration-fast) var(--ik-ease-default),
              border-color var(--ik-duration-fast) var(--ik-ease-default);
}

.sk-unlock__submit:hover {
  background: #FDF7F6;
  color: var(--ik-red-dark);
  border-color: var(--ik-red-dark);
}

.sk-unlock__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.sk-unlock__hint {
  font-size: 13px;
  line-height: 1.4;
  color: var(--ik-text-tertiary);
  margin-top: 12px;
}

.sk-unlock__error {
  font-size: 13px;
  line-height: 1.4;
  color: var(--ik-red);
  margin-top: 8px;
  display: none;
}

.sk-unlock__error.sk-unlock__hint-text {
  color: var(--ik-text-secondary);
  border: none;
  background: none;
}

/* Zustand C: Kontakt-Karte */
.sk-unlock__contact {
  display: none;
}

.sk-unlock__price-section {
  text-align: left;
}

.sk-unlock__price {
  font-family: var(--ik-font-heading);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.15;
  color: var(--ik-black);
}

.sk-unlock__provision {
  font-size: 13px;
  line-height: 1.4;
  color: var(--ik-text-secondary);
  margin-top: 4px;
}

.sk-unlock__badge {
  display: inline-block;
  font-family: var(--ik-font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-top: 12px;
}

.sk-unlock__badge--available {
  background: var(--ik-red);
  color: #FFFFFF;
}

.sk-unlock__badge--sold {
  background: var(--ik-text-tertiary);
  color: #FFFFFF;
}

.sk-unlock__divider {
  border: none;
  border-top: 0.5px solid var(--ik-gray-border);
  margin: 24px 0;
}

.sk-unlock__artist-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.sk-unlock__avatar {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  transition: opacity var(--ik-duration-fast) var(--ik-ease-default);
}

.sk-unlock__avatar:hover {
  opacity: 0.85;
}

.sk-unlock__artist-info {
  flex: 1;
}

.sk-unlock__artist-name {
  font-family: var(--ik-font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: var(--ik-black);
}

.sk-unlock__artist-location {
  font-size: 13px;
  line-height: 1.4;
  color: var(--ik-text-secondary);
  margin-top: 2px;
}

.sk-unlock__artist-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.sk-unlock__artist-links a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.sk-unlock__cta-email {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 22px;
  font-family: var(--ik-font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ik-red);
  background: transparent;
  border: 1px solid var(--ik-red);
  border-radius: 6px;
  text-decoration: none;
  margin-top: 16px;
  transition: background var(--ik-duration-fast) var(--ik-ease-default),
              color var(--ik-duration-fast) var(--ik-ease-default),
              border-color var(--ik-duration-fast) var(--ik-ease-default);
}

.sk-unlock__cta-email:hover {
  background: #FDF7F6;
  color: var(--ik-red-dark);
  border-color: var(--ik-red-dark);
}

/* Profil-Link Fallback (wenn keine E-Mail vorhanden) */
.sk-unlock__cta-profile {
  display: inline-block;
  font-family: var(--ik-font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ik-red);
  text-decoration: none;
  margin-top: 16px;
  padding: 8px 0;
  min-height: 44px;
  transition: color 100ms var(--ik-ease-default);
}

.sk-unlock__cta-profile:hover {
  color: var(--ik-red-dark, #6B251F);
}

/* Lock/Unlock body-class toggles */
body.ik-is-member .sk-unlock__locked { display: none; }
body.ik-is-member .sk-unlock__form { display: none; }
body.ik-is-member .sk-unlock__contact { display: block; }

/* ========================================
   Block 4: Galerie "Weitere Einblicke"
   ======================================== */
.sk-section-label {
  font-family: var(--ik-font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--ik-text-tertiary);
  text-align: center;
  display: block;
}

.sk-gallery {
  padding-top: 64px;
}

.sk-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.sk-gallery__item {
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 8px;
}

.sk-gallery__item:hover .sk-gallery__img {
  transform: scale(1.02);
}

.sk-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: transform var(--ik-duration-fast) var(--ik-ease-default), opacity var(--ik-duration-fast) var(--ik-ease-default);
}

/* Masonry-artige Span-Logik */
.sk-gallery__item:nth-child(1) {
  grid-column: span 2;
}

.sk-gallery__item:nth-child(1) .sk-gallery__img {
  aspect-ratio: 16 / 9;
}

.sk-gallery__item:nth-child(2) .sk-gallery__img {
  aspect-ratio: 3 / 4;
}

.sk-gallery__item:nth-child(3) .sk-gallery__img {
  aspect-ratio: 1 / 1;
}

.sk-gallery__item:nth-child(4) {
  grid-column: span 2;
}

.sk-gallery__item:nth-child(4) .sk-gallery__img {
  aspect-ratio: 16 / 9;
}

/* Stagger-Reveal beim Page-Load — kein JS-Observer */
.sk-gallery__item {
  opacity: 1;
  animation: sk-gallery-reveal var(--ik-duration-reveal, 600ms) var(--ik-ease-default, ease-out) both;
}

.sk-gallery__item:nth-child(1) { animation-delay: 0ms; }
.sk-gallery__item:nth-child(2) { animation-delay: 80ms; }
.sk-gallery__item:nth-child(3) { animation-delay: 160ms; }
.sk-gallery__item:nth-child(4) { animation-delay: 240ms; }
.sk-gallery__item:nth-child(5) { animation-delay: 320ms; }
.sk-gallery__item:nth-child(6) { animation-delay: 400ms; }

@keyframes sk-gallery-reveal {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .sk-gallery__item {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ========================================
   Lightbox
   ======================================== */
.sk-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  align-items: center;
  justify-content: center;
}

.sk-lightbox.is-open {
  display: flex;
}

.sk-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
}

@supports not (backdrop-filter: blur(1px)) {
  .sk-lightbox__backdrop {
    background: rgba(10, 10, 10, 0.97);
  }
}

@media (prefers-reduced-transparency: reduce) {
  .sk-lightbox__backdrop {
    backdrop-filter: none;
    background: rgba(10, 10, 10, 0.98);
  }
}

.sk-lightbox__img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.sk-lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 300;
  opacity: 0.7;
  transition: opacity var(--ik-duration-fast) var(--ik-ease-default);
}

.sk-lightbox__close:hover {
  opacity: 1;
}

/* ========================================
   Block 5: Kuenstler-Card
   ======================================== */
.sk-artist-card {
  padding-top: 64px;
}

.sk-artist-card__inner {
  background: var(--ik-gray);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.sk-artist-card__avatar {
  width: 160px;
  height: 160px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  transition: opacity var(--ik-duration-fast) var(--ik-ease-default);
}

.sk-artist-card__avatar:hover {
  opacity: 0.85;
}

.sk-artist-card__info {
  flex: 1;
}

.sk-artist-card__name {
  font-family: var(--ik-font-heading);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  color: var(--ik-black);
}

.sk-artist-card__meta {
  font-size: 14px;
  line-height: 1.4;
  color: var(--ik-text-secondary);
  margin-top: 4px;
}

.sk-artist-card__bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ik-text-secondary);
  margin-top: 12px;
  max-width: 480px;
}

.sk-artist-card__link {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 16px;
}

.sk-artist-card__release {
  font-size: 11px;
  line-height: 1.4;
  color: var(--ik-text-tertiary);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sk-artist-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2D8C3C;
  flex-shrink: 0;
}

/* ========================================
   Block 6: 3-Schritte-Vertrauensblock
   ======================================== */
.sk-trust-block {
  background: var(--ik-gray);
  padding: 64px 0;
  margin-top: 64px;
}

.sk-trust-block__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.sk-trust-block__title {
  font-family: var(--ik-font-heading);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ik-black);
}

.sk-trust-block__sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ik-text-secondary);
  margin-top: 12px;
}

.sk-trust-block__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.sk-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sk-step__number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ik-font-heading);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #FFFFFF;
  background: var(--ik-black);
  flex-shrink: 0;
}

.sk-step__number--accent {
  background: var(--ik-red);
}

.sk-step__title {
  font-family: var(--ik-font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: var(--ik-black);
  margin-top: 16px;
}

.sk-step__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ik-text-secondary);
  margin-top: 8px;
  max-width: 280px;
}

.sk-step__action {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 16px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ========================================
   Block 7: Weitere Werke
   ======================================== */
.sk-more-works {
  padding-top: 64px;
  padding-bottom: 96px;
}

.sk-more-works__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 24px;
}

.sk-work-card {
  text-decoration: none;
  display: block;
  transition: opacity var(--ik-duration-fast) var(--ik-ease-default);
}

.sk-work-card:hover {
  opacity: 0.85;
}

.sk-work-card__image {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.sk-work-card--large .sk-work-card__image {
  height: 400px;
}

.sk-work-card--small .sk-work-card__image {
  height: 260px;
}

.sk-work-card__info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 12px;
  gap: 12px;
}

.sk-work-card__title {
  font-family: var(--ik-font-heading);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  color: var(--ik-black);
}

.sk-work-card__meta {
  font-size: 13px;
  line-height: 1.4;
  color: var(--ik-text-secondary);
  white-space: nowrap;
}

.sk-more-works__all {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 32px;
}

/* ========================================
   Unlock State Transitions
   ======================================== */
.sk-unlock__form--fading-out {
  opacity: 0;
  transition: opacity var(--ik-duration-fast) var(--ik-ease-default);
}

.sk-unlock__contact--fading-in {
  opacity: 0;
}

.sk-unlock__contact--visible {
  opacity: 1;
  transition: opacity var(--ik-duration-normal) var(--ik-ease-default);
  transition-delay: 100ms;
}

/* Lock animation stopped */
.sk-unlock__icon--stopped .sk-lock--line,
.sk-unlock__icon--stopped .sk-lock--fill {
  animation: none;
}

/* ========================================
   Responsive: Mobile (< 768px)
   ======================================== */
@media (max-width: 767px) {
  /* Hero */
  .sk-hero {
    padding: 8px 16px 0;
  }

  .sk-hero__canvas {
    min-height: 320px;
  }

  .sk-hero__image {
    height: 320px;
  }

  .sk-hero__overlay {
    background:
      linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.25) 45%, transparent 70%),
      linear-gradient(to right, rgba(0, 0, 0, 0.15) 0%, transparent 60%);
  }

  .sk-hero__content {
    padding: 0 24px 24px;
  }

  .sk-hero__title {
    font-size: 28px;
  }

  .sk-hero__artist {
    font-size: 14px;
  }

  /* Werkansicht */
  .sk-werkansicht {
    padding-top: 32px;
  }

  .sk-werkansicht--no-hero {
    padding-top: 24px;
  }

  .sk-werkansicht__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Unlock-Card */
  .sk-unlock__card {
    padding: 20px;
  }

  .sk-unlock__input-row {
    flex-direction: column;
  }

  .sk-unlock__submit {
    width: 100%;
  }

  /* Gallery */
  .sk-gallery {
    padding-top: 48px;
  }

  .sk-gallery__grid {
    grid-template-columns: 1fr;
  }

  .sk-gallery__item:nth-child(1),
  .sk-gallery__item:nth-child(4) {
    grid-column: span 1;
  }

  .sk-gallery__item:nth-child(1) .sk-gallery__img,
  .sk-gallery__item:nth-child(2) .sk-gallery__img,
  .sk-gallery__item:nth-child(3) .sk-gallery__img,
  .sk-gallery__item:nth-child(4) .sk-gallery__img {
    aspect-ratio: 4 / 3;
  }

  /* Kuenstler-Card */
  .sk-artist-card {
    padding-top: 48px;
  }

  .sk-artist-card__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
  }

  .sk-artist-card__avatar {
    width: 120px;
    height: 120px;
    border-radius: 8px;
  }

  .sk-artist-card__bio {
    max-width: 100%;
  }

  /* Trust Block */
  .sk-trust-block {
    padding: 48px 0;
    margin-top: 48px;
  }

  .sk-trust-block__title {
    font-size: 24px;
  }

  .sk-trust-block__sub {
    font-size: 15px;
  }

  .sk-trust-block__steps {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 32px;
  }

  /* Weitere Werke */
  .sk-more-works {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .sk-work-card--large .sk-work-card__image,
  .sk-work-card--small .sk-work-card__image {
    height: 200px;
  }

  .sk-work-card__info {
    flex-direction: column;
    gap: 4px;
  }

  .sk-more-works__grid {
    grid-template-columns: 1fr;
  }
}

/* Tablet (768-1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
  .sk-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sk-gallery__item:nth-child(1) {
    grid-column: span 2;
  }

  .sk-gallery__item:nth-child(4) {
    grid-column: span 2;
  }

  .sk-werkansicht__grid {
    gap: 32px;
  }
}

/* ========================================
   Künstler-Name-Link (Hero + Unlock-Card)
   ======================================== */
.sk-hero__artist-link,
.sk-unlock__artist-name-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.sk-hero__artist-link:hover,
.sk-unlock__artist-name-link:hover {
  text-decoration: underline;
}

.sk-hero__artist-link:hover {
  opacity: 1;
}
