:root {
  --bg: #ffffff;
  --bg-light: #f7f7f7;
  --text: #222222;
  --text-muted: #555555;
  --border-light: #e5e5e5;
  --accent: #3a6ea5;
  --accent-hover: #315c89;
  /*  --font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;  */
  --font-main:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Picture-Element: Bild soll Container füllen */
picture {
  display: block;
  width: 100%;
}

picture img {
  width: 100%;
  height: auto;
}

/* Lightbox-Bilder: NICHT auf 100% Breite zwingen */
.lightbox picture,
.lightbox-image {
  width: auto;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox picture img {
  width: auto;
  max-width: 90vw;
  max-height: 90vh;
  height: auto;
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header & Navigation */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  position: relative;
}

.logo {
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--text);
}

/* Navigation */

.main-nav {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  position: relative;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link-active {
  color: var(--accent);
}

.nav-link-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 2px;
  background-color: var(--accent);
}

/* Burger */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 4px 0;
  background-color: #222;
  border-radius: 2px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

/* Sections */

.section {
  padding: 0.5rem 0;
}

.motivgruppen-section {
  padding: 3.5rem 0;
}

.section-light {
  background-color: var(--bg-light);
}

.section-title {
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-text {
  max-width: 640px;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.section-note {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.section-center {
  text-align: center;
}

/* Hero */

.hero {
  padding: 0.5rem 0 2rem;
  min-height: 450px; /* Mobile: Reserviert Platz für Bild + Text + Button */
}

.hero-title {
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  text-align: left;
}

.hero-inner {
  text-align: center;
  min-height: 360px; /* Mobile: Bild + Text + Button */
}

.hero-image {
  max-width: 100%; /* Volle Container-Breite auf Desktop */
  margin: 0 auto 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero-picture,
.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-text {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  min-height: 1.76rem; /* 1.1rem × 1.6 line-height */
}

.hero-scroll {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--accent);
  font-size: 0.95rem;
  min-height: 1.52rem; /* 0.95rem × 1.6 line-height */
}

/* Kategorien-Grid */

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
  min-height: 1050px; /* Mobile: 5 Kategorien × 210px */
}

/* Responsive min-height für category-grid */
@media (min-width: 556px) {
  .category-grid {
    min-height: 630px; /* 2 Spalten: 3 Reihen × 210px */
  }
}

@media (min-width: 824px) {
  .category-grid {
    min-height: 420px; /* 3 Spalten: 2 Reihen × 210px */
  }
}

@media (min-width: 1092px) {
  .category-grid {
    min-height: 220px; /* 4-5 Spalten: 1-2 Reihen */
  }
}

.category-card {
  text-decoration: none;
  color: var(--text);
  display: block;
  min-height: 200px; /* Reserviert Platz für Bild + Titel */
}

.category-image-wrapper {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  background-color: #f5f5f5;
  position: relative;
}

.category-image-wrapper picture {
  display: block;
  width: 100%;
  height: 100%;
}

.category-image-wrapper picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-image {
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.category-card:hover .category-image {
  transform: scale(1.02);
  filter: brightness(1.04);
}

.category-title {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 1.05rem;
}

/* Ausgewählte Arbeiten */

.featured-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  min-height: 580px; /* Mobile: 3 Arbeiten × 193px */
}

/* Responsive min-height für featured-grid */
@media (min-width: 500px) {
  .featured-grid {
    min-height: 390px; /* 2 Spalten: 2 Reihen */
  }
}

@media (min-width: 740px) {
  .featured-grid {
    min-height: 280px; /* 3 Spalten: 1 Reihe */
  }
}

.featured-card {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  min-height: 180px; /* Reserviert Platz für Bild */
}

.featured-image-wrapper {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  background-color: #f5f5f5;
  position: relative;
}

.featured-image-wrapper picture {
  display: block;
  width: 100%;
  height: 100%;
}

.featured-image-wrapper picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-image {
  transition: transform 0.2s ease;
}

.featured-card:hover .featured-image {
  transform: scale(1.02);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
}

/* Galerie-Grid */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  background-color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
}

.filter-btn-active {
  border-color: var(--accent);
  color: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 330px));
  gap: 1.75rem;
}

.gallery-item {
  text-decoration: none;
  color: var(--text);
}

.gallery-picture,
.gallery-img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-image {
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.gallery-image-wrapper {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  background-color: #f5f5f5;
  position: relative;
}

.gallery-image-wrapper picture {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-image-wrapper picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-meta {
  font-size: 0.9rem;
  min-height: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 0.5rem;
}

.gallery-meta span span.status-badge {
  display: inline-block !important;
  margin-left: 6px;
}

.gallery-title {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-info {
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------------------------------------------------------- */
/*  Galerie: verkaufte Werke am Bild leicht abdunkeln         */
/* ---------------------------------------------------------- */
.gallery-item.status-sold-wrapper {
  position: relative;
}

/* Icon oben rechts */
.gallery-item.status-sold-wrapper::before {
  content: '✕'; /* dezentes, elegantes Icon */
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(240, 240, 240, 0.85); /* hell, aber nicht grell */
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.25); /* sanfte Lesbarkeit */
  z-index: 3;
  pointer-events: none;
}

/* halbtransparente Abdunkelung */
.gallery-item.status-sold-wrapper:hover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22); /* 22% dunkler */
  border-radius: 4px;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.16);
}

/* Badge bleibt sichtbar */
.gallery-item.status-sold-wrapper .status-badge {
  position: relative;
  z-index: 2;
}

/* Werk-Detailseite */

.work-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.work-image-wrapper {
  max-width: 600px;
  min-width: 0;
  cursor: pointer;
  position: relative;
}

.work-image {
  border-radius: 4px;
}

.work-picture,
.work-img {
  width: 100%;
  height: auto;
  display: block;
}

.work-zoom-hint {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(255, 255, 255, 0.8);
  color: #444;
  font-size: 0.8rem;
  padding: 4px 8px;
  border-radius: 4px;
}

/* Textbereich */

.work-text {
  max-width: 520px;
  min-width: 0;
  padding-top: 10px;
}

.work-title {
  font-size: 1.7rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.work-meta {
  margin: 0.75rem 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.work-meta span span.status-badge {
  display: inline-block !important;
  margin-left: 6px;
}

.work-info {
  margin: 0.15rem 0;
  color: var(--text-muted);
}

.work-meta {
  margin: 0.75rem 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.work-meta span {
  display: block;
}

.work-description {
  margin: 1rem 0 1.5rem;
  color: #555;
}

.work-cta p {
  margin-bottom: 0.75rem;
}

.work-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Button zurück zur Galerie weiter rechts */

.link-right {
  margin-left: 25px; /* individueller Abstand */
}

/* Button zurück zur Startseite weiter rechts */
.link-right-home {
  margin-left: 110px; /* individueller Abstand */
}

/* Status-Badges */

.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

/* Micro-Animation für Status-Badge (Fade-In + Pulse) */
.status-badge {
  opacity: 0;
  transform: translateY(4px) scale(0.98);
  animation:
    badgeFadeIn 0.55s ease-out forwards,
    badgePulse 0.35s ease-out 0.55s forwards;
}

/* Fade-In + leichtes Hochgleiten */
@keyframes badgeFadeIn {
  0% {
    opacity: 0;
    transform: translateY(4px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes badgePulse-available {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(46, 139, 87, 0);
  }
  40% {
    transform: scale(1.06);
    box-shadow: 0 0 12px rgba(46, 139, 87, 0.45);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(46, 139, 87, 0);
  }
}

@keyframes badgePulse-reserved {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(210, 150, 55, 0);
  }
  40% {
    transform: scale(1.06);
    box-shadow: 0 0 12px rgba(210, 150, 55, 0.45);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(210, 150, 55, 0);
  }
}

@keyframes badgePulse-sold {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(168, 64, 64, 0);
  }
  40% {
    transform: scale(1.06);
    box-shadow: 0 0 12px rgba(168, 64, 64, 0.45);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(168, 64, 64, 0);
  }
}

.status-available {
  background: #1a7a45; /* dunkleres Grün für besseren Kontrast */
  animation:
    badgeFadeIn 0.55s ease-out forwards,
    badgePulse-available 0.35s ease-out 0.55s forwards;
}

.status-reserved {
  background: #9a6a1f; /* dunkleres Amber für besseren Kontrast */
  animation:
    badgeFadeIn 0.55s ease-out forwards,
    badgePulse-reserved 0.35s ease-out 0.55s forwards;
}

.status-sold {
  background: #a84040; /* soft bordeaux */
  animation:
    badgeFadeIn 0.55s ease-out forwards,
    badgePulse-sold 0.35s ease-out 0.55s forwards;
}

/* ---------------------------------------------- */
/*  Galerie: dezenter Pulse- / Glow-Effekt        */
/* ---------------------------------------------- */

.gallery-item .status-badge {
  opacity: 0;
  transform: translateY(3px) scale(0.98);
  animation:
    badgeFadeInGallery 0.45s ease-out forwards,
    badgePulseGallery 0.3s ease-out 0.45s forwards;
}

/* Fade-in der Galerie-Badges */
@keyframes badgeFadeInGallery {
  0% {
    opacity: 0;
    transform: translateY(3px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Sehr feiner, reduzierter Pulse-Glow */
@keyframes badgePulseGallery {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  40% {
    transform: scale(1.03);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.18);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
}

/* sorgt dafür, dass Badge neben "Status:" bleibt */
.work-meta span span.status-badge {
  display: inline-block !important;
  margin-left: 6px;
}

/* Sekundärer Button */

.btn-secondary {
  background-color: transparent;
  color: #555;
  border: 1px solid #cccccc;
}

.btn-secondary:hover {
  border-color: #999999;
  color: #333;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox-open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.lightbox-image {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsive */

@media (max-width: 900px) {
  .work-detail {
    grid-template-columns: 1fr;
  }

  .work-text {
    max-width: 100%;
  }
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.related-card img {
  border-radius: 4px;
}

/* Impressum */

.impressum-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.3fr) minmax(0, 1.5fr) minmax(0, 0.3fr);
  gap: 2.5rem;
}

.impressum-text {
  grid-column: 2; /* erzwingt rechte Spalte */
}

/* Datenschutz */

.datenschutz-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.3fr) minmax(0, 1.5fr) minmax(0, 0.3fr);
  gap: 2.5rem;
}

.datenschutz-text {
  grid-column: 2; /* erzwingt rechte Spalte */
}

/* Über mich */

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 2.5rem;
}

/* Kontakt */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  gap: 2.5rem;
}

.contact-form {
  margin-top: 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-field span {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

input,
textarea {
  border-radius: 4px;
  border: 1px solid var(--border-light);
  padding: 0.5rem 0.6rem;
  font-family: inherit;
  font-size: 0.95rem;
}

textarea {
  resize: vertical;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.contact-note {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-note-small {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Footer */

.site-footer {
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid #e5e5e5;
  font-size: 0.9rem;
  color: #666;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  margin: 0;
  font-weight: 400;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-nav a {
  color: inherit;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-sep {
  opacity: 0.5;
}

/* Mobile */
@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Responsive */

@media (max-width: 900px) {
  .work-detail,
  .about-layout,
  .impressum-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 52px;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    min-width: 180px;
    z-index: 100;
  }

  .main-nav.nav-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
    padding: 0.5rem;
  }
}

/* Stelle sicher, dass das Bild berechenbar ist */
.overlay-image {
  display: block; /* verhindert Inline-Lücken */
  max-width: 100%; /* responsive Breite */
  height: auto; /* proportionale Höhe */
}
.overlay-category {
  display: block; /* verhindert Inline-Lücken */
  max-width: 100%; /* responsive Breite */
  height: auto; /* proportionale Höhe */
}
.overlay-featured {
  display: block; /* verhindert Inline-Lücken */
  max-width: 100%; /* responsive Breite */
  height: auto; /* proportionale Höhe */
}
.overlay-work {
  display: block; /* verhindert Inline-Lücken */
  max-width: 100%; /* responsive Breite */
  height: auto; /* proportionale Höhe */
}
.img-overlay-wrapper {
  position: relative;
  display: inline-block; /* oder block; je nach Layoutbedarf */
}
.img-overlay {
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 in einem */
  z-index: 10;
  background: transparent;
  pointer-events: auto; /* Overlay fängt Mausereignisse */
}

/* Work detail page: overlay should not block, wrapper should show zoom cursor */
.work-image-wrapper .img-overlay {
  pointer-events: none;
  cursor: inherit;
}
.work-image-wrapper {
  cursor: zoom-in;
}

/* About tables */
/* =====================================
   Table Scroll (A)
===================================== */

.about-table {
  width: 100% !important;
  border-collapse: collapse !important;
  table-layout: fixed !important;
}

.about-table th,
.about-table td {
  padding: 0.75rem 1rem !important;
  text-align: left !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  vertical-align: top !important;
}

.about-table th {
  font-weight: 600 !important;
  background-color: rgba(0, 0, 0, 0.02) !important;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .table-scroll {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.02);
  }

  .about-table {
    min-width: 640px;
  }
}

/* =====================================
   Card Layout for Mobile (B)
===================================== */

@media (max-width: 520px) {
  .about-table {
    min-width: 0;
  }

  .about-table thead {
    display: none;
  }

  .about-table tr {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .about-table td {
    display: block;
    padding: 0.35rem 0;
    border: none;
  }

  .about-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.8rem;
    opacity: 0.6;
    margin-bottom: 0.15rem;
  }

  .about-table-awards .award-image img {
    max-width: 100px;
  }
}

.about-image-wrapper {
  flex: 1.2;
  max-width: 600px;
  cursor: pointer;
  position: relative;
}

/* Award-Bilder kleiner machen */
.award-image .about-image-wrapper {
  max-width: 180px;
}

.about-image {
  border-radius: 4px;
}

/* Tabellen-Header immer linksbündig */
.about-table th {
  text-align: left !important;
}

/* Spaltenbreiten für Ausstellungen-Tabelle (Standard) */
.about-table:not(.about-table-awards) th:first-child,
.about-table:not(.about-table-awards) td:first-child {
  width: 70% !important;
}

.about-table:not(.about-table-awards) th:last-child,
.about-table:not(.about-table-awards) td:last-child {
  width: 30% !important;
}

/* Spaltenbreiten für Awards-Tabelle */
.about-table-awards th:first-child,
.about-table-awards td:first-child {
  width: 60% !important;
}

.about-table-awards th:last-child,
.about-table-awards td:last-child {
  width: 40% !important;
}

/* Klickbares Award-Bild */
.award-zoom {
  background: none;
  border: none;
  padding: 0;
  cursor: zoom-in;
}

.award-zoom img {
  display: block;
}

/* Lightbox */
.award-lightbox {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.85) !important;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999 !important;
  overflow: auto;
}

.award-lightbox[aria-hidden='false'] {
  display: flex !important;
}

.award-lightbox.is-open {
  display: flex;
}

.award-lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.award-lightbox-inner img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 4px;
  background: #fff;
}

/* Close-Button */
.award-lightbox-close {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.4rem;
  cursor: pointer;
}
