/*
Theme Name: GZM Empty Theme
Theme URI: https://gzm-cm.de/
Author: Sebastian / Franky
Author URI: https://example.com/
Description: Minimal leeres WordPress-Theme zum Anschauen, was WordPress standardmäßig braucht.
Version: 1.0.7
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: gzm-empty-theme
*/

/* 001 */
:root {
  --gzm-body-bg: #ffffff;
  --gzm-body-text: #222222;
  --gzm-link: #cb841b;
  --gzm-link-hover: #a96b12;

  --gzm-header-bg: #111111;
  --gzm-header-text: #ffffff;
  --gzm-menu-hover-bg: #222222;
  --gzm-dropdown-bg: #222222;
  --gzm-dropdown-hover-bg: #333333;

  --gzm-footer-bg: #111111;
  --gzm-footer-text: #ffffff;

  --gzm-hero-text: #ffffff;
  --gzm-simple-header-bg: #f5f5f5;
  --gzm-simple-header-text: #222222;

  --gzm-border-light: rgba(255, 255, 255, 0.12);
  --gzm-border-dark: rgba(0, 0, 0, 0.35);
  --gzm-shadow-soft: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* 002 */
html {
  box-sizing: border-box;
  scroll-padding-top: 90px;
}

/* 003 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/* 004 */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.5;
  background: var(--gzm-body-bg);
  color: var(--gzm-body-text);
}

/* 005 */
a {
  color: var(--gzm-link);
}

/* 006 */
a:hover {
  color: var(--gzm-link-hover);
}

/* 007 */
.wrap {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

/* 008 */
.site-header {
  padding: 0;
  color: var(--gzm-header-text);
  position: sticky;
  top: 0;
  z-index: 2000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18);
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.16) 0%,
      rgba(255, 255, 255, 0.07) 16%,
      rgba(255, 255, 255, 0.02) 30%,
      rgba(0, 0, 0, 0.06) 70%,
      rgba(0, 0, 0, 0.14) 100%
    ),
    var(--gzm-header-bg);
}

/* 009 */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 80px;
}

/* 010 */
.site-branding {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 011 */
.site-title {
  margin: 0;
}

/* 012 */
.site-title a,
.site-description,
.main-navigation a {
  color: var(--gzm-header-text);
  text-decoration: none;
}

/* 013 */
.site-description {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* 014 */
.site-logo img {
  display: block;
  max-height: 70px;
  width: auto;
}

/* 015 */
.custom-logo-link {
  display: inline-block;
}

/* 016 */
.main-navigation {
  position: relative;
  z-index: 1001;
}

/* 017 */
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 018 */
.main-navigation .main-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

/* 019 */
.main-navigation .main-menu > li {
  position: relative;
}

/* 020 */
.main-navigation .main-menu > li > a {
  display: block;
  padding: 1rem 1.2rem;
  transition: background 0.2s ease, color 0.2s ease;
}

/* 021 */
.main-navigation .main-menu > li > a:hover,
.main-navigation .main-menu > li:hover > a {
  background: var(--gzm-menu-hover-bg);
}

/* 022 */
.main-navigation .menu-item-has-children > a::after {
  content: " ▾";
  font-size: 0.75em;
}

/* 023 */
.main-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--gzm-dropdown-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 9999;
}

/* 024 */
.main-navigation .sub-menu li {
  position: relative;
}

/* 025 */
.main-navigation .sub-menu a {
  display: block;
  padding: 0.9rem 1rem;
  white-space: nowrap;
}

/* 026 */
.main-navigation .sub-menu a:hover,
.main-navigation .sub-menu li:hover > a {
  background: var(--gzm-dropdown-hover-bg);
}

/* 027 */
.main-navigation .main-menu > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 028 */
.main-navigation .sub-menu .sub-menu {
  top: 0;
  left: 100%;
}

/* 029 */
.main-navigation .sub-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 030 */
.site-footer {
  background: var(--gzm-footer-bg);
  color: var(--gzm-footer-text);
  border-top: 1px solid var(--gzm-border-light);
  margin-top: 3rem;
  padding: 2rem 0;
  position: relative;
  z-index: 10;
}

/* 031 */
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* 032 */
.footer-title,
.footer-description,
.footer-meta p {
  margin: 0;
}

/* 033 */
.footer-title {
  font-weight: 700;
  margin-bottom: 0.35rem;
}

/* 034 */
.footer-description,
.footer-meta {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* 035 */
.footer-navigation {
  display: flex;
  align-items: center;
}

/* 036 */
.footer-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 037 */
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

/* 038 */
.footer-menu li {
  margin: 0;
  padding: 0;
}

/* 039 */
.footer-menu a {
  color: var(--gzm-footer-text);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease, color 0.2s ease;
}

/* 040 */
.footer-menu a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* 041 */
.entry-hero {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  z-index: 1;
}

/* 042 */
.entry-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--gzm-hero-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate3d(0, var(--gzm-hero-shift, 0px), 0) scale(1.08);
  will-change: transform;
  z-index: 1;
  opacity: 1;
}


/* 043 */
.entry-hero-overlay {
  position: relative;
  min-height: 360px;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: flex-end;
  z-index: 2;
}

/* 044 */
.entry-hero-inner {
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

/* 045 */
.entry-hero-title {
  margin: 0;
  color: var(--gzm-hero-text);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  position: relative;
  z-index: 3;
}

/* 046 */
.entry-header-simple {
  padding: 3rem 0 2rem;
  background: var(--gzm-simple-header-bg);
}

/* 047 */
.entry-header-simple .entry-hero-title {
  color: var(--gzm-simple-header-text);
}

/* 048 */
.content-shape {
  position: relative;
  z-index: 4;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  margin-top: -42px;
  height: 42px;
  background: var(--gzm-body-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* 049 */
.site-main {
  position: relative;
  z-index: 3;
  background: var(--gzm-body-bg);
}

/* 050 */
.site-main-inner {
  position: relative;
  z-index: 5;
  overflow: auto;
  padding-top: 1.5rem;
}

/* 051 */
@media (max-width: 768px) {
  .entry-hero {
    min-height: 260px;
  }

  .entry-hero-overlay {
    min-height: 260px;
  }

  .entry-hero-inner {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }

  .content-shape {
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    margin-top: -18px;
    height: 18px;
    clip-path: ellipse(68% 100% at 50% 100%);
  }

  .site-main-inner {
    padding-top: 1rem;
  }
}

/* 052 */
@media (max-width: 1100px) {
  .header-inner {
    min-height: 60px;
    gap: 1rem;
    flex-wrap: nowrap;
  }

  .site-branding {
    flex: 0 1 auto;
    min-width: 0;
  }

  .site-description {
    display: none;
  }

  .main-navigation {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
    overflow: visible;
  }

  .main-navigation .main-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    max-width: 100%;
    min-width: 0;
  }

  .main-navigation .main-menu > li {
    min-width: 0;
  }

  .main-navigation .main-menu > li > a {
    padding: 0.7rem 0.75rem;
    font-size: 0.95rem;
    white-space: nowrap;
  }
}

/* 053 */
.main-navigation .main-menu > li:last-child > .sub-menu,
.main-navigation .main-menu > li:nth-last-child(2) > .sub-menu {
  left: auto;
  right: 0;
}

/* 054 */
.main-navigation .main-menu > li:last-child .sub-menu .sub-menu,
.main-navigation .main-menu > li:nth-last-child(2) .sub-menu .sub-menu {
  left: auto;
  right: 100%;
}

/* 055 */
html,
body {
  overflow-x: hidden;
}

/* 056 */
@media (max-width: 768px) {
  .main-navigation .main-menu > li > a {
    padding: 0.55rem 0.5rem;
    font-size: 0.88rem;
  }

  .site-logo img {
    max-height: 42px;
  }
}

/* 057 */
.gzm-home-hero::before {
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 058 */
.gzm-home-hero.is-fading::before {
  opacity: 0.55;
}


/* Der generierte Kommentar-Wrapper */
div[style*="width: 430px"][style*="float: left"] {
  display: flex !important;
  flex-direction: row-reverse !important;
  align-items: flex-end !important;
  gap: 12px !important;
  float: none !important;
  width: 100% !important;
  max-width: 560px;
  padding: 10px 0 !important;
  border: 0 !important;
}

/* Die eigentliche Sprechblase */
div[style*="width: 390px"].sblase,
.sblase {
  position: relative;
  width: auto !important;
  max-width: 460px;
  min-height: unset !important;
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  line-height: 1.5;
}

/* Spitze der Sprechblase Richtung Avatar */
.sblase::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: 18px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 12px solid #ffffff;
}

/* Den leeren Abstandsklotz killen */
div[style*="height: 22px"] {
  display: none !important;
}

/* Das <p> um das Avatar aufräumen */
div[style*="width: 430px"][style*="float: left"] > p {
  margin: 0 !important;
  flex: 0 0 auto;
}

/* Avatar hübsch machen */
div[style*="width: 430px"][style*="float: left"] .gravatar,
div[style*="width: 430px"][style*="float: left"] .avatar,
div[style*="width: 430px"][style*="float: left"] .um-avatar {
  width: 68px !important;
  height: 68px !important;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* Falls mehrere davon untereinander stehen */
.site-main-inner::after {
  content: "";
  display: block;
  clear: both;
}

/* =========================
   GZM SETCARD – GOLD PREMIUM
   Ruhig, hochwertig, mit dezentem Gold-Look
   ========================= */

.gzm-card {
  position: relative;
  margin: 0 0 32px 0;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fff8f0 60%,
    #f1e2bf 100%
  ) !important;
  border: 1px solid rgba(176, 138, 54, 0.22);
  box-shadow:
    0 12px 35px rgba(0,0,0,0.08),
    0 6px 20px rgba(120, 90, 20, 0.12);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.gzm-card {
  position: relative;
}

.gzm-card__owner {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 5;
}

.gzm-card__owner a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.gzm-card__owner img {
  display: block;
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 50% !important;
  background: #fff;
  border: 4px solid rgba(255,255,255,0.92);
  box-shadow:
    0 10px 24px rgba(0,0,0,0.14),
    0 4px 12px rgba(140,108,35,0.14);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gzm-card__owner img:hover {
  transform: scale(1.05);
  box-shadow:
    0 14px 30px rgba(0,0,0,0.18),
    0 6px 16px rgba(140,108,35,0.18);
}

.gzm-card__header {
  padding-right: 120px;
}

@media (max-width: 700px) {
  .gzm-card__owner {
    position: static;
    padding: 18px 20px 0;
  }

  .gzm-card__owner img {
    width: 64px;
    height: 64px;
  }

  .gzm-card__header {
    padding-right: 20px;
  }
}

/* feine Premium-Kante oben */
.gzm-card::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, #c9a64d, #f2d27a, #c9a64d);
}

/* Hover dezent luxuriöser */
.gzm-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 146, 50, 0.42);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.12),
    0 8px 24px rgba(140, 108, 35, 0.16);
}

/* Optional weiter nutzbar, aber neutral gehalten */
.gzm-card--public,
.gzm-card--private {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf2 58%, #f2e3bf 100%);
}

/* =========================
   HEADER
   ========================= */

.gzm-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 22px;
  padding: 24px 24px 18px;
  border-bottom: 1px solid rgba(90, 72, 24, 0.08);
  background: transparent !important;
  border-top: none !important;
}

.gzm-card__title {
  flex: 1;
  min-width: 0;
}

.gzm-card__title h2 {
  margin: 0 0 10px 0;
  font-size: 30px;
  line-height: 1.12;
  font-weight: 700;
  color: #1f1a12;
  letter-spacing: -0.02em;
  word-break: break-word;
}

.gzm-meta {
  font-size: 14px;
  line-height: 1.65;
  color: #5e5240;
}

/* =========================
   BADGES
   ========================= */

.gzm-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  background: #ffffff;
  color: #3d3528;
}

.gzm-badge {
  display: inline-block;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  border: 1px solid rgba(110, 88, 26, 0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.gzm-badge:hover {
  background: #fff3d7;
  color: #7c5d11;
  border-color: rgba(184, 146, 50, 0.28);
  transform: translateY(-1px);
}

.gzm-badge--status {
  background: rgba(237, 245, 228, 0.92);
  color: #35592f;
  border-color: rgba(53, 89, 47, 0.12);
}

.gzm-badge--public {
  background: #f3e3b6;
  color: #7a5a1a;
  border-color: rgba(155, 122, 34, 0.16);
}

.gzm-badge--private {
  background: rgba(244, 238, 224, 0.95);
  color: #6e5d39;
  border-color: rgba(110, 93, 57, 0.14);
}

/* =========================
   PROFILE
   ========================= */

.gzm-card__profile {
  width: 92px;
  text-align: center;
  flex-shrink: 0;
}

.gzm-card__profile a {
  color: inherit;
  text-decoration: none;
}

.gzm-card__profile img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 50% !important;
  border: 3px solid rgba(255,255,255,0.85);
  box-shadow:
    0 8px 18px rgba(0,0,0,0.12),
    0 2px 8px rgba(140, 108, 35, 0.14);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gzm-card__profile img:hover {
  transform: scale(1.04);
  box-shadow:
    0 12px 26px rgba(0,0,0,0.16),
    0 6px 16px rgba(140, 108, 35, 0.18);
}

/* =========================
   BODY
   ========================= */

.gzm-card__body {
  padding: 0 24px 24px;
}

/* =========================
   INTRO / HERO
   ========================= */

.gzm-card__intro {
  display: grid;
  grid-template-columns: minmax(200px, 260px) 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 22px;
  margin-bottom: 24px;
}

.gzm-thumb {
  position: relative;
}

.gzm-thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  border: 1px solid rgba(110, 88, 26, 0.10);
  box-shadow:
    0 12px 28px rgba(0,0,0,0.10),
    0 4px 14px rgba(140, 108, 35, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gzm-thumb img:hover {
  transform: scale(1.02);
  box-shadow:
    0 18px 34px rgba(0,0,0,0.14),
    0 8px 18px rgba(140, 108, 35, 0.16);
}

.gzm-description {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.72) 0%,
    rgba(255,255,255,0.52) 100%
  );
  border: 1px solid rgba(110, 88, 26, 0.08);
  border-radius: 20px;
  padding: 18px 20px;
  line-height: 1.7;
  color: #2e271d;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}

/* Variante ohne Beschreibung */
.gzm-card__intro--no-description {
  grid-template-columns: minmax(260px, 360px) 1fr;
  align-items: center;
}

.gzm-thumb--large img {
  min-height: 260px;
  object-fit: cover;
}

.gzm-description--placeholder {
  background: linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.65) 100%);
  border: 1px dashed rgba(140, 108, 35, 0.20);
  color: #5f5442;
  font-style: italic;
}

.gzm-description--placeholder strong {
  font-style: normal;
  color: #2f281d;
}

.gzm-description--only {
  margin-top: 22px;
}

@media (max-width: 700px) {
  .gzm-card__intro--no-description {
    grid-template-columns: 1fr;
  }

  .gzm-thumb--large img {
    min-height: 220px;
  }
}
/* =========================
   META SYSTEM STATT CHAOS-PILLEN
   ========================= */

.gzm-meta-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 14px;
  align-items: flex-start;
}

.gzm-meta-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 110px;
}

.gzm-meta-group--visibility {
  margin-left: auto;
  min-width: auto;
}

.gzm-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a7a5e;
}

.gzm-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  border: 1px solid rgba(90, 72, 24, 0.10);
  background: rgba(255,255,255,0.78);
  color: #332c20;
  white-space: nowrap;
}

/* Genre = neutral */
.gzm-chip--genre {
  background: rgba(255,255,255,0.62);
  color: #4d4335;
}

/* Status = wichtig */
.gzm-chip--status {
  background: #eef6ea;
  color: #35592f;
  border-color: rgba(53, 89, 47, 0.14);
}

/* Sichtbarkeit = technisch / sekundär */
.gzm-chip--visibility {
  background: #f5ead0;
  color: #7a5a1a;
  border-color: rgba(122, 90, 26, 0.14);
  font-size: 13px;
  padding: 7px 12px;
}

@media (max-width: 700px) {
  .gzm-meta-groups {
    gap: 12px;
  }

  .gzm-meta-group--visibility {
    margin-left: 0;
  }
}

/* =========================
   GALLERY
   ========================= */

.gzm-gallery {
  margin: 22px 0 0;
  padding: 14px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.58) 0%,
    rgba(255,255,255,0.34) 100%
  );
  border: 1px solid rgba(110, 88, 26, 0.08);
  border-radius: 20px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.gzm-gallery img {
  width: 118px;
  height: 118px;
  object-fit: cover;
  flex: 0 0 auto;
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(110, 88, 26, 0.08);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.gzm-gallery img:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(184, 146, 50, 0.26);
  box-shadow:
    0 14px 26px rgba(0,0,0,0.12),
    0 4px 14px rgba(140, 108, 35, 0.12);
}

/* =========================
   DETAILS
   ========================= */

.gzm-details {
  margin-top: 18px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.60) 0%,
    rgba(255,255,255,0.38) 100%
  );
  border: 1px solid rgba(110, 88, 26, 0.08);
  border-radius: 20px;
  padding: 10px 18px;
}

.gzm-detail-row {
  padding: 12px 0;
  border-bottom: 1px solid rgba(90, 72, 24, 0.09);
  font-size: 14px;
  line-height: 1.6;
  color: #362d22;
}

.gzm-detail-row:last-child {
  border-bottom: 0;
}

/* =========================
   SYSTEM INFO
   ========================= */

.gzm-system {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px dashed rgba(90, 72, 24, 0.14);
  font-size: 11px;
  line-height: 1.5;
  color: #6e6558;
  opacity: 0.52;
}

/* =========================
   LINKS
   ========================= */

.gzm-card a {
  color: inherit;
  transition: color 0.2s ease;
}

.gzm-card a:hover {
  color: #9a7417;
}

/* =========================
   LOCKED CARD
   ========================= */

.gzm-locked {
  margin: 0 0 32px 0;
  padding: 40px 22px;
  text-align: center;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f0df 100%);
  border: 1px solid rgba(176, 138, 54, 0.16);
  box-shadow:
    0 10px 28px rgba(0,0,0,0.07),
    0 4px 12px rgba(140, 108, 35, 0.08);
  color: #332b20;
}

.gzm-locked img {
  border-radius: 50% !important;
  margin: 16px 0;
  border: 3px solid rgba(255,255,255,0.9);
  box-shadow:
    0 8px 18px rgba(0,0,0,0.10),
    0 3px 10px rgba(140, 108, 35, 0.12);
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 700px) {
  .gzm-card {
    border-radius: 20px;
  }

  .gzm-card__header {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px 20px 16px;
  }

  .gzm-card__title h2 {
    font-size: 24px;
  }

  .gzm-card__profile {
    width: auto;
    text-align: left;
  }

  .gzm-card__body {
    padding: 0 20px 20px;
  }

  .gzm-card__intro {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 18px;
  }

  .gzm-gallery {
    padding: 12px;
  }

  .gzm-gallery img {
    width: 92px;
    height: 92px;
  }

  .gzm-description,
  .gzm-gallery,
  .gzm-details {
    background: rgba(255,255,255,0.85) !important;
    border: 1px solid rgba(120, 90, 20, 0.08);
  }
}


/* =========================
   GZM COMMENTS – STABLE
========================= */

.gzm-comments,
.gzm-comment-form {
  width: 100%;
  max-width: 1100px;
  margin: 24px auto 0;
  padding: 0 20px;
  box-sizing: border-box;
}

.gzm-comment-item {
  margin: 0 0 12px 0;
}

.gzm-comment-inner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.gzm-comment-item .avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  display: block;
  margin-top: 2px;
}

.gzm-comment-item .comment-body {
  min-width: 0;
  flex: 1;
}

.gzm-comment-item .comment-author {
  display: inline;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.35;
  color: #111;
}
.gzm-comment-item .comment-edit-link {
  opacity: 0;
}

.gzm-comment-item:hover .comment-edit-link {
  opacity: 0.6;
}
.gzm-comment-item .comment-author::after {
  content: ": ";
}

.gzm-comment-item .comment-content {
  display: inline;
  font-size: 15px;
  line-height: 1.4;
  color: #222;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.gzm-comment-item .comment-content p {
  display: inline;
  margin: 0;
}

.gzm-comment-item .comment-meta {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(0,0,0,0.5);
}

.gzm-comment-item .comment-edit-link,
.gzm-comment-item .comment-edit-link a {
  color: inherit;
  text-decoration: none;
}

.gzm-comment-item .comment-edit-link::before {
  content: "✎ ";
}

/* Formular */

.gzm-comment-form .comment-reply-title,
.gzm-comment-form .logged-in-as,
.gzm-comment-form .comment-notes,
.gzm-comment-form label[for="comment"],
.gzm-comment-form .form-submit label {
  display: none !important;
}

.gzm-comment-form-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.gzm-comment-form-avatar {
  flex-shrink: 0;
}

.gzm-comment-form-avatar img,
.gzm-comment-form-avatar .avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: block;
  margin-top: 9px;
}

.gzm-comment-form-main {
  flex: 1;
  min-width: 0;
}

.gzm-comment-form .comment-form-comment {
  display: inline-block;
  width: calc(100% - 96px);
  margin: 0 8px 0 0;
  vertical-align: top;
}

.gzm-comment-form .form-submit {
  display: inline-block;
  width: 88px;
  margin: 0;
  vertical-align: top;
}

.gzm-comment-form textarea {
  width: 100%;
  min-height: 42px;
  max-height: 220px;
  border: 1px solid rgba(0,0,0,0.10);
  background: #fff;
  border-radius: 20px;
  padding: 10px 14px;
  font-size: 15px;
  line-height: 1.35;
  resize: none;
  overflow: hidden;
  box-sizing: border-box;
}

.gzm-btn-send {
  height: 42px;
  width: 88px;
  border: 1px solid rgba(0,0,0,0.10);
  background: transparent;
  color: #555;
  border-radius: 20px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.gzm-btn-send::before {
  content: "✓ ";
}

@media (max-width: 767px) {
  .gzm-comments,
  .gzm-comment-form {
    padding: 0 16px;
  }

  .gzm-comment-form .comment-form-comment,
  .gzm-comment-form .form-submit {
    display: block;
    width: 100%;
  }

  .gzm-comment-form .comment-form-comment {
    margin: 0 0 10px 0;
  }

  .gzm-comment-form .form-submit {
    padding-left: 34px;
  }

  .gzm-btn-send {
    width: 100%;
  }
}
.comment-edit-link a {
  font-size: 0; /* versteckt "Bearbeiten" komplett */
}

.comment-edit-link a::before {
  content: "✎";
  font-size: 12px;
}

/* ===============================
   BLOG GRID
   =============================== */

.gzm-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.gzm-blog-card {
  background: #fff;
  border: 1px solid var(--gzm-border-dark);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--gzm-shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gzm-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Bild */
.gzm-blog-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Content */
.gzm-blog-content {
  padding: 16px;
}

.gzm-blog-title {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.3;
}

.gzm-blog-title a {
  text-decoration: none;
  color: inherit;
}

.gzm-blog-title a:hover {
  color: var(--gzm-link);
}

.gzm-blog-excerpt {
  font-size: 0.95rem;
  opacity: 0.8;
  margin: 0;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 1024px) {
  .gzm-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gzm-blog-grid {
    grid-template-columns: 1fr;
  }
}

.frm_forms::after {
  content: "";
  display: block;
  clear: both;
}


/* ===============================
   BLOG META (Autor + Datum)
   =============================== */

.gzm-blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-bottom: 8px;
  opacity: 0.7;
}

.gzm-blog-author::before {
  content: "✍ ";
}

.gzm-blog-date::before {
  content: "🗓 ";
}

/* ===============================
   GZM Cosplay-Wert Anzeige
   =============================== */

.gzm-calc-wrap {
  max-width: 980px;
  margin: 24px auto;
  padding: 0 16px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #000;
}

.gzm-card {
  background: #FF7A00;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gzm-hero {
  display: flex;
  gap: 16px;
  align-items: stretch;
  justify-content: space-between;
}

.gzm-hero-left {
  flex: 1;
  min-width: 260px;
}

.gzm-hero-right {
  min-width: 280px;
  text-align: right;
}

.gzm-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 6px;
  color: #000;
}

.gzm-title {
  font-size: 22px;
  font-weight: 750;
  line-height: 1.2;
  color: #000;
}

.gzm-value {
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  margin: 6px 0 8px;
  color: #000;
}

.gzm-hint {
  font-size: 12px;
  opacity: 0.85;
  max-width: 420px;
  margin-left: auto;
  color: #000;
}

.gzm-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.gzm-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}

.gzm-q {
  font-size: 14px;
  opacity: 0.9;
  max-width: 70%;
  color: #000;
}

.gzm-a {
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
  color: #000;
}

.gzm-sub {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 8px;
  line-height: 1.35;
  color: #000;
}

.gzm-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

/* Buttons */
.gzm-btn {
  border-radius: 999px;
  padding: 10px 16px;
  border: 2px solid #000;
  background: #000;
  color: #FF7A00;
  font-weight: 800;
  cursor: pointer;
}

.gzm-btn-ghost {
  background: #000;
  color: #FF7A00;
}

.gzm-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.gzm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #ffffff;
}

.gzm-table th {
  text-align: left;
  font-weight: 600;
  padding: 12px 16px;
  background: #f5f5f5;
  letter-spacing: 0.03em;
}

.gzm-table td {
  padding: 12px 16px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.gzm-table tbody tr {
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.gzm-table tbody tr:hover {
  background: rgba(0, 0, 0, 0.03);
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.015);
}

.gzm-table,
.gzm-table table,
.gzm-table th,
.gzm-table td,
.gzm-table tr {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Print Footer */
.gzm-print-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
}

.gzm-logo {
  display: block;
  width: 220px;
  max-width: 40vw;
  height: auto;
  image-rendering: auto;
}

.gzm-print-url {
  font-weight: 800;
  font-size: 14px;
  word-break: break-all;
}

.gzm-print-note {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 4px;
}

/* ===============================
   Responsive
   =============================== */

@media (max-width: 768px) {
  .site-logo img {
    max-height: 45px;
  }

  .header-inner {
    min-height: 60px;
    gap: 1rem;
    flex-wrap: nowrap;
  }

  .site-branding {
    flex: 0 1 auto;
    min-width: 0;
  }

  .site-description {
    display: none;
  }

  .main-navigation {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
  }

  .main-navigation .main-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 0.25rem;
  }

  .main-navigation .main-menu > li > a {
    padding: 0.7rem 0.75rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .entry-hero::after {
    height: 28px;
    clip-path: ellipse(65% 100% at 50% 100%);
  }
}

@media (max-width: 768px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  body {
    padding-top: 60px;
  }

  .site-logo img {
    max-height: 45px;
  }

  .header-inner {
    min-height: 60px;
    gap: 1rem;
    flex-wrap: nowrap;
  }

  .site-branding {
    flex: 0 1 auto;
    min-width: 0;
  }

  .site-description {
    display: none;
  }

  .main-navigation {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
  }

  .main-navigation .main-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 0.25rem;
  }

  .main-navigation .main-menu > li > a {
    padding: 0.7rem 0.75rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 720px) {
  .gzm-hero {
    flex-direction: column;
  }

  .gzm-hero-right {
    text-align: left;
  }

  .gzm-value {
    font-size: 40px;
  }

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

@media print {
  .gzm-btn,
  .gzm-actions {
    display: none !important;
  }

  .gzm-calc-wrap {
    max-width: 100% !important;
  }

  .gzm-card {
    box-shadow: none !important;
  }

  .gzm-logo {
    width: 180px;
  }
}

/* ===============================
   Print-Fokus: nur GZM Rechner
   =============================== */
@media print {

  /* 1. Alles ausblenden */
  body * {
    visibility: hidden !important;
  }

  /* 2. Zielbereich + Kinder wieder sichtbar */
  .gzm-calc-wrap,
  .gzm-calc-wrap * {
    visibility: visible !important;
  }

  /* 3. Rechner an Seitenanfang ziehen */
  .gzm-calc-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  /* 4. UI-Elemente ausblenden */
  .gzm-actions,
  button {
    display: none !important;
  }

  /* 5. Druckfreundliche Optik */
  .gzm-card {
    box-shadow: none !important;
    page-break-inside: avoid;
  }
}

.gzm-job-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gzm-job-item {
  margin: 0 0 12px 0;
}

.gzm-job-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(180, 140, 60, 0.20);
  border-radius: 16px;
  background: linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.gzm-job-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(180, 140, 60, 0.35);
}

.gzm-job-type {
  flex: 0 0 auto;
  min-width: 110px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1e2bf;
  color: #6f4b00;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
}

.gzm-job-title {
  flex: 1 1 auto;
  color: #6f4b00;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.gzm-job-status {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.gzm-job-status.is-active {
  background: #e9f7ec;
  color: #1f7a37;
}

.gzm-job-status.is-cancelled {
  background: #fdecec;
  color: #a12727;
}

.gzm-job-status.is-done {
  background: #eef3ff;
  color: #315ea8;
}

@media (max-width: 700px) {
  .gzm-job-link {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .gzm-job-type {
    min-width: auto;
  }

  .gzm-job-title {
    width: 100%;
    font-size: 17px;
  }

  .gzm-job-status {
    margin-left: auto;
  }
}

.gzm-project-card {
  border: 1px solid #e3e3e3;
  padding: 16px 18px;
  margin-bottom: 12px;
  background: #fff;
}

.gzm-project-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 10px;
}

.gzm-project-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: #1f1f1f;
}

.gzm-project-actions {
  flex: 0 0 auto;
  text-align: right;
  min-width: 120px;
}

.gzm-project-actions a {
  display: block;
  color: #c88412;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 4px;
}

.gzm-project-actions a:hover {
  text-decoration: underline;
}

.gzm-project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #444;
  font-size: 15px;
}

.gzm-badge.gzm-type {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f3e0b7;
  color: #6f4b00;
  font-size: 13px;
  font-weight: 700;
}

.gzm-meta-text {
  color: #333;
}

@media (max-width: 700px) {
  .gzm-project-top {
    flex-direction: column;
  }

  .gzm-project-actions {
    text-align: left;
    min-width: auto;
  }
}













.gzm-cosplay-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto 40px;
  align-items: start;
}

@media (max-width: 1100px) {
  .gzm-cosplay-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.gzm-cosplay-grid .frm_forms,
.gzm-cosplay-grid .frm_entries_list,
.gzm-cosplay-grid .frm_pro_form,
.gzm-cosplay-grid .frm_page_num_list,
.gzm-cosplay-grid .frm_list,
.gzm-cosplay-grid .frm_entry {
  width: auto !important;
  max-width: none !important;
  float: none !important;
  clear: none !important;
}

.gzm-cos-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(185, 146, 46, 0.35);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.gzm-cos-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.12);
}

.gzm-cos-hero {
  position: relative;
  height: 140px;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0) 28%),
    linear-gradient(135deg, #f8edd0 0%, #d8b35a 35%, #b88618 68%, #f0d48a 100%);
}

.gzm-cos-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.06) 24%, rgba(255,255,255,0) 25%),
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0.10) 100%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.gzm-cos-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: var(--progress-opacity, 0.15);
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0.70) 0%,
      rgba(255,255,255,0.42) 35%,
      rgba(255,255,255,0.10) 100%);
  pointer-events: none;
}

/* Statusvarianten */
.status-geplant .gzm-cos-hero {
  filter: saturate(0.15) brightness(1.08);
}

.status-wip-low .gzm-cos-hero {
  filter: saturate(0.45) brightness(1.03);
}

.status-wip-mid .gzm-cos-hero {
  filter: saturate(0.75) brightness(1);
}

.status-wip-high .gzm-cos-hero {
  filter: saturate(0.95) brightness(0.98);
}

.status-fertig .gzm-cos-hero {
  filter: saturate(1.08) brightness(0.98);
}

.status-verkauft .gzm-cos-hero,
.status-kaputt .gzm-cos-hero {
  filter: saturate(0.12) brightness(0.92);
}

.gzm-cos-status-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.gzm-cos-progress {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.22);
}

.gzm-cos-progress-fill {
  height: 100%;
  width: var(--progress-width, 0%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.68) 0%, rgba(255,255,255,0.95) 100%);
}

.gzm-cos-thumb {
  position: absolute;
  left: 50%;
  top: 94px;
  transform: translateX(-50%);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
  z-index: 3;
}

.gzm-cos-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gzm-cos-body {
  padding: 54px 18px 18px;
  background: #fff;
  text-align: center;
}

.gzm-cos-title {
  font-size: 22px;
  font-weight: 700;
  color: #1e1e1e;
  margin: 0 0 4px;
  line-height: 1.2;
}

.gzm-cos-subtitle {
  font-size: 14px;
  color: #78694c;
  margin-bottom: 12px;
}

.gzm-cos-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.gzm-cos-badges span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  background: #f7f1e4;
  color: #6e5820;
  font-size: 12px;
  font-weight: 700;
}

.gzm-cos-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.gzm-cos-stat {
  background: #fcfaf6;
  border: 1px solid #eee3c8;
  border-radius: 14px;
  padding: 10px 8px;
}

.gzm-cos-stat strong {
  display: block;
  font-size: 15px;
  color: #2b2b2b;
}

.gzm-cos-stat small {
  display: block;
  font-size: 11px;
  color: #8b7c5d;
  margin-top: 3px;
}

.gzm-cos-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.gzm-cos-actions a,
.gzm-cos-actions .frm_delete_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 10px;
  padding: 0 12px;
  text-decoration: none !important;
  color: #fff !important;
  background: linear-gradient(180deg, #dbb04d 0%, #bb8615 100%);
  box-shadow: 0 5px 12px rgba(187,134,21,0.22);
  font-size: 13px;
  font-weight: 700;
}

.gzm-cos-add {
  min-height: 336px;
  border-radius: 22px;
  border: 2px dashed rgba(191, 146, 34, 0.55);
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 28%),
    linear-gradient(135deg, #fffaf0 0%, #f5e3b6 38%, #e2be6c 72%, #f7e1ac 100%);
  text-decoration: none !important;
  color: #6d5319;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.gzm-cos-add:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.10);
}

.gzm-cos-add-inner {
  text-align: center;
}

.gzm-cos-add-plus {
  width: 78px;
  height: 78px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.55);
  color: #a67712;
  font-size: 42px;
  font-weight: 400;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.55);
}

.gzm-cos-add-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.gzm-cos-add-text {
  font-size: 14px;
  line-height: 1.45;
  max-width: 250px;
  margin: 0 auto;
  color: #7d6a42;
}

