/* bahtak sanat — Türklerin Dijital Ansiklopedisi */

:root {
  --teal: #30d5c5;
  --teal-deep: #1aa89a;
  --teal-dark: #0b5c55;
  --teal-ink: #062e2b;
  --foam: #f3fffd;
  --mist: #d8f7f2;
  --muted: #3d6b66;
  --line: rgba(11, 92, 85, 0.16);
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(6, 46, 43, 0.18);
  --radius: 18px;
  /* Prefer licensed Akzidenz-Grotesk if installed/self-hosted; Familjen Grotesk is the web fallback */
  --font-display: "Akzidenz-Grotesk", "Akzidenz Grotesk", "Familjen Grotesk", sans-serif;
  --font-body: "Akzidenz-Grotesk", "Akzidenz Grotesk", "Familjen Grotesk", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.25rem;
  --grass-banner: url("/sanat/assets/grass-banner.jpg");
  --grass-tile: url("/sanat/assets/grass-tile.jpg");

  /* aliases for legacy tablolar/detail CSS */
  --gac-bg: var(--foam);
  --gac-text: var(--teal-ink);
  --gac-muted: var(--muted);
  --gac-border: var(--line);
  --gac-blue: var(--teal);
  --gac-blue-hover: var(--teal-deep);
  --gac-surface: var(--white);
  --gac-shadow: 0 2px 8px rgba(6, 46, 43, 0.1);
  --gac-shadow-lg: var(--shadow);
  --gac-radius: var(--radius);
  --gac-radius-sm: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--teal-ink);
  background: var(--foam);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.is-hidden {
  display: none !important;
}

/* —— Top bar —— */
.site-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  background: transparent;
  color: var(--white);
  transform: translateY(0);
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    transform 0.28s var(--ease);
}

.site-bar.is-solid {
  background: rgba(243, 255, 253, 0.94);
  color: var(--teal-ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(12px);
}

.site-bar.is-hidden {
  transform: translateY(-110%);
  pointer-events: none;
}

.site-bar-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.icon-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  transition: background 0.2s var(--ease);
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-bar.is-solid .icon-btn:hover {
  background: var(--mist);
}

.pill-link {
  margin-left: 0.25rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--teal-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.site-bar.is-solid .pill-link {
  background: var(--teal);
  color: var(--white);
}

/* —— Drawer / search —— */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 46, 43, 0.45);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease);
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(300px, 86vw);
  background: var(--foam);
  z-index: 310;
  transform: translateX(-105%);
  transition: transform 0.28s var(--ease);
  padding: 1rem 0;
  overflow-y: auto;
  box-shadow: var(--shadow);
}

.drawer.open {
  transform: translateX(0);
}

.drawer a {
  display: block;
  padding: 0.9rem 1.5rem;
  font-weight: 600;
}

.drawer a:hover {
  background: var(--mist);
  color: var(--teal-deep);
}

.drawer-label {
  padding: 1.1rem 1.5rem 0.4rem;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(243, 255, 253, 0.97);
  display: none;
  flex-direction: column;
  padding: 1rem;
}

.search-overlay.open {
  display: flex;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 40rem;
  margin: 2rem auto 0;
  width: 100%;
  border-bottom: 2px solid var(--teal);
  padding-bottom: 0.5rem;
}

.search-bar input {
  flex: 1;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 1.25rem;
  color: var(--teal-ink);
  outline: none;
}

.search-hints {
  max-width: 40rem;
  margin: 1.5rem auto;
  width: 100%;
  color: var(--muted);
}

.search-hints h4 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
}

.search-hints p {
  margin: 0;
}

/* —— Hero —— */
.hero,
#tablolar,
#yakinda {
  scroll-margin-top: 1rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero-grass {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 46, 43, 0.2) 0%, rgba(6, 46, 43, 0.45) 45%, rgba(6, 46, 43, 0.88) 100%),
    var(--grass-banner) center 30% / cover no-repeat;
  transform: scale(1.04);
  animation: grassDrift 18s ease-in-out infinite alternate;
}

@keyframes grassDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(0, -1.5%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-grass {
    animation: none;
    transform: none;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, 720px);
  margin: 0 auto;
  padding: 0 0 max(4.5rem, 10vh);
}

.hero-brand {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 10vw, 5.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.hero-title {
  margin: 0 0 1.75rem;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.6vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--mist);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  min-height: 2.9rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.hero-cta:hover {
  transform: translateY(-2px);
  background: var(--mist);
}

/* —— Content panel —— */
.panel {
  position: relative;
  padding: 4.5rem 0 3rem;
  background:
    linear-gradient(180deg, rgba(243, 255, 253, 0.96), rgba(243, 255, 253, 0.98)),
    var(--grass-tile) center top / 480px auto;
}

.panel-head {
  width: min(100% - 2.5rem, 720px);
  margin: 0 auto 2.5rem;
  text-align: left;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.panel-head h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--teal-dark);
}

.lede {
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.08rem;
}

/* —— Soon band —— */
.soon-band {
  position: relative;
  padding: 4rem 1.25rem;
  color: var(--white);
  overflow: hidden;
}

.soon-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(11, 92, 85, 0.92), rgba(26, 168, 154, 0.88)),
    var(--grass-banner) center / cover no-repeat;
}

.soon-band-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  margin: 0 auto;
}

.soon-band .eyebrow {
  color: var(--mist);
}

.soon-band h2 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.soon-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.soon-list li {
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 600;
  font-size: 1.05rem;
}

.soon-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

/* —— Footer —— */
.site-foot {
  padding: 2.75rem 1.25rem 3.5rem;
  text-align: center;
  background: var(--teal-ink);
  color: rgba(255, 255, 255, 0.75);
}

.site-foot img {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1.25rem;
  border-radius: 10px;
  object-fit: cover;
}

.site-foot nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1rem;
}

.site-foot a {
  font-weight: 600;
  color: var(--white);
}

.site-foot a:hover {
  color: var(--teal);
}

.site-foot p {
  margin: 0;
  font-size: 0.9rem;
}

/* map old class names used by app.js open/close */
.gac-drawer-backdrop,
.drawer-backdrop { /* noop alias space */ }

/* —— Tablolar layout polish —— */
.tablolar-root {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.tablolar-waiting {
  text-align: center;
  padding: 3rem 1.5rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.waiting-frame {
  width: min(160px, 38vw);
  aspect-ratio: 3 / 4;
  margin: 0 auto 1.25rem;
  border-radius: 12px;
  background:
    linear-gradient(135deg, var(--mist), transparent),
    var(--teal-soft, #e6faf7);
  box-shadow: inset 0 0 0 1px var(--line);
}

.waiting-title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.waiting-copy {
  margin: 0 auto;
  max-width: 28rem;
  color: var(--muted);
}

.tablolar-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.tablolar-content[hidden] {
  display: none !important;
}

.block-head {
  margin-bottom: 1.15rem;
}

.block-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--teal-dark);
}

.block-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.today-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--teal-ink);
  color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  font: inherit;
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease);
}

.today-card .artist-link {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.45);
}

.today-card .tablo-title-btn {
  color: inherit;
}

.today-card:hover {
  transform: translateY(-3px);
}

.today-visual {
  min-height: 320px;
  background: #0a3d38;
}

.today-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  max-height: 480px;
}

.today-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.75rem;
  background: linear-gradient(160deg, #0f6f66, #062e2b);
}

.today-badge {
  align-self: flex-start;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(48, 213, 197, 0.22);
  color: var(--mist);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.today-copy h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1.2;
}

.today-meta,
.today-loc {
  margin: 0;
  opacity: 0.85;
  font-size: 0.95rem;
}

.today-cta {
  margin-top: 0.5rem;
  color: var(--teal);
  font-weight: 700;
}

@media (max-width: 720px) {
  .today-card {
    grid-template-columns: 1fr;
  }
}

.rail-wrap {
  position: relative;
}

.rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 0 0.75rem;
  -webkit-overflow-scrolling: touch;
}

.rail::-webkit-scrollbar {
  height: 0;
}

.rail-btn {
  position: absolute;
  top: 35%;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--gac-shadow);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.2s;
  color: var(--teal-dark);
}

.rail-wrap:hover .rail-btn {
  opacity: 1;
}

.rail-btn.prev {
  left: 0.25rem;
}

.rail-btn.next {
  right: 0.25rem;
}

.tablo-card-rail {
  flex: 0 0 clamp(160px, 42vw, 200px);
  scroll-snap-align: start;
}

.tablolar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.75rem 1.25rem;
}

.tablo-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  transition: transform 0.25s var(--ease);
}

.tablo-card:hover {
  transform: translateY(-3px);
}

.tablo-card-hit {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
  font: inherit;
  text-align: left;
}

.tablo-title-btn {
  display: inline;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  cursor: pointer;
  text-align: left;
}

.tablo-title-btn:hover,
.artist-link:hover {
  color: var(--teal-deep);
}

.artist-link {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(11, 92, 85, 0.35);
  text-underline-offset: 0.15em;
}

.detail-artist .artist-link {
  color: var(--teal-ink);
}

.tablo-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--mist);
  aspect-ratio: 3 / 4;
  box-shadow: var(--gac-shadow);
}

.tablo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tablo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--mist), var(--teal));
}

.tablo-meta h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.tablo-by {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}

/* —— Detail —— */
body.detail-open {
  overflow: hidden;
}

.tablo-detail {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(6, 46, 43, 0.55);
  overflow-y: auto;
  padding: 1.5rem 1rem 3rem;
}

.tablo-detail-close {
  position: sticky;
  top: 0.5rem;
  float: right;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--gac-shadow);
  display: grid;
  place-items: center;
  color: var(--teal-dark);
}

.tablo-detail-panel {
  clear: both;
  max-width: 960px;
  margin: 0.5rem auto 0;
  background: var(--foam);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.detail-hero {
  background: var(--teal-ink);
  display: grid;
  place-items: center;
  min-height: 40vh;
  padding: 1.5rem;
}

.detail-hero img {
  max-width: 100%;
  max-height: 70vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.detail-copy {
  padding: 1.75rem 1.5rem 2.5rem;
}

.detail-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.detail-copy h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}

.detail-artist {
  margin: 0 0 1.75rem;
  color: var(--muted);
}

.kunye {
  margin: 0;
  border-top: 1px solid var(--line);
}

.kunye-row {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.kunye-row dt {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
}

.kunye-row dd {
  margin: 0;
}

@media (max-width: 560px) {
  .kunye-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

.detail-section-title {
  margin: 2.25rem 0 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
}

.story-experience {
  background: var(--teal-dark);
  color: var(--white);
}

.story-cover {
  min-height: 42vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.75rem 2.5rem;
  gap: 0.75rem;
}

.story-cover-kicker {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

.story-cover h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 800;
  max-width: 18ch;
}

.story-cover-sub {
  margin: 0;
  opacity: 0.85;
  max-width: 28rem;
}

.story-start {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: var(--teal);
  color: var(--teal-ink);
  font-weight: 700;
}

.story-stage {
  position: relative;
}

.story-scroller {
  height: min(78vh, 720px);
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  outline: none;
}

.story-slide {
  position: relative;
  height: min(78vh, 720px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  background: #062e2b;
}

.story-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.story-focus-img {
  position: absolute;
  display: block;
  max-width: none;
  width: auto;
  height: auto;
  user-select: none;
  pointer-events: none;
}

.story-visual-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
  z-index: 1;
}

.story-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.75rem 1.5rem 2.25rem;
  max-width: 40rem;
  margin: 0 auto;
}

.story-step {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

.story-caption h4 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 700;
}

.story-caption p:last-child {
  margin: 0;
  line-height: 1.55;
}

.story-progress {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.story-progress span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.story-progress span.active {
  background: var(--teal);
  height: 1.1rem;
}

/* —— Subpages: eserler / ressamlar —— */
.page-hero-band {
  padding: calc(var(--header-h) + 2.5rem) 1.25rem 1.5rem;
  background:
    linear-gradient(180deg, rgba(6, 46, 43, 0.08), transparent),
    var(--paper);
}

.wrap-narrow {
  width: min(100%, 720px);
  margin: 0 auto;
}

.page-hero-band h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--teal-ink);
}

.crumb-link {
  color: inherit;
  font-weight: 700;
}

.crumb-link:hover {
  color: var(--teal-deep);
}

.ressamlar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.ressam-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px var(--line);
  color: inherit;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.ressam-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.ressam-thumb {
  width: 88px;
  height: 88px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--mist);
}

.ressam-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ressam-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-ink);
  background: linear-gradient(160deg, var(--mist), #c8efe9);
}

.ressam-meta h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.ressam-meta p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.ressam-count {
  margin-top: 0.35rem !important;
  font-weight: 700;
  color: var(--teal-deep) !important;
}

.tablo-title-link {
  color: inherit;
  text-decoration: none;
}

.tablo-title-link:hover {
  color: var(--teal-deep);
}

.today-cta {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.today-cta:hover {
  text-decoration: underline;
}

/* —— Dedicated eser page —— */
.eser-page {
  min-height: 50vh;
}

.eser-page > .tablolar-waiting {
  margin: calc(var(--header-h) + 2rem) 1.25rem 3rem;
}

.eser-hero {
  padding-bottom: 0.5rem;
}

.eser-panel {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 860px) {
  .eser-panel {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
  }
}

.eser-panel .detail-hero {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--mist);
  box-shadow: var(--shadow);
}

.eser-panel .detail-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.eser-panel .detail-copy {
  padding: 0;
}

.story-experience-page {
  margin: 0 0 3rem;
  border-radius: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
