/* ============================================================
   Newsroom · Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=DM+Serif+Display&display=swap');

:root {
  --green-900: #0F2518;
  --green-800: #1A3D28;
  --green-700: #1D4731;
  --green-600: #2A6041;
  --green-500: #3B8059;
  --green-100: #D8EDE0;
  --green-50:  #EFF7F2;

  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6B7280;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50:  #F9FAFB;

  --white:    #FFFFFF;
  --radius:   8px;
  --radius-lg:12px;
  --shadow:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:0 4px 6px rgba(0,0,0,.06), 0 2px 4px rgba(0,0,0,.04);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--gray-900);
  background: var(--gray-50);
  line-height: 1.6;
}

a { color: var(--green-600); text-decoration: none; }
a:hover { color: var(--green-800); }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
.site-header {
  background: var(--green-800);
  border-bottom: 1px solid var(--green-900);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--green-500);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.logo-mark::after {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 50%;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-primary   { font-size: 14px; font-weight: 600; color: var(--white); }
.logo-secondary { font-size: 11px; font-weight: 400; color: rgba(255,255,255,.55); letter-spacing: .04em; text-transform: uppercase; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color .15s;
}

.site-nav a:hover { color: var(--white); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background .15s, opacity .15s;
}

.btn-primary {
  background: var(--white);
  color: var(--green-800) !important;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s;
}
.btn-primary:hover { background: var(--green-50); color: var(--green-800) !important; }

.btn-green      { background: var(--green-700); color: var(--white); }
.btn-green:hover { background: var(--green-800); color: var(--white); }
.btn-outline    { background: transparent; color: var(--green-700); border: 1.5px solid var(--green-300); }
.btn-outline:hover { background: var(--green-50); }
.btn-lg { padding: 12px 28px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Page hero ── */
.page-hero {
  background: var(--green-700);
  padding: 48px 0 40px;
  color: var(--white);
}
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 8px;
}
.page-hero p { font-size: 16px; color: rgba(255,255,255,.7); }

/* ── Press list ── */
.newsroom-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  padding: 40px 0 60px;
  align-items: start;
}

.press-list { display: flex; flex-direction: column; gap: 1px; background: var(--gray-200); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; }

.press-card {
  display: flex;
  gap: 20px;
  padding: 22px 24px;
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: background .12s;
}
.press-card:hover { background: var(--green-50); }
.press-card.featured { border-left: 3px solid var(--green-600); }

.company-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  flex-shrink: 0;
  background: var(--white);
}

.company-logo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  border: 1px solid var(--green-100);
}

.press-body { flex: 1; min-width: 0; }

.press-meta-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.press-company { font-size: 12px; font-weight: 600; color: var(--green-600); text-transform: uppercase; letter-spacing: .05em; }
.badge-featured { font-size: 10px; background: var(--green-100); color: var(--green-700); padding: 2px 8px; border-radius: 99px; font-weight: 600; }
.press-title { font-size: 16px; font-weight: 500; color: var(--gray-900); line-height: 1.4; margin-bottom: 6px; }
.press-excerpt { font-size: 13px; color: var(--gray-500); line-height: 1.55; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.press-date { font-size: 12px; color: var(--gray-500); }

/* ── Sidebar ── */
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 16px;
}
.sidebar-card h3 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-500); margin-bottom: 14px; }

.sidebar-cta {
  background: var(--green-700);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.sidebar-cta h3 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 8px; text-transform: none; letter-spacing: 0; }
.sidebar-cta p  { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 16px; }

/* ── Article ── */
.article-wrap { max-width: 800px; margin: 0 auto; padding: 48px 24px 80px; }

.article-header { margin-bottom: 32px; }
.breadcrumb { font-size: 13px; color: var(--gray-500); margin-bottom: 16px; }
.breadcrumb a { color: var(--gray-500); }
.breadcrumb span { margin: 0 6px; }

.article-company-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.article-company-info .name { font-size: 13px; font-weight: 600; color: var(--green-600); text-transform: uppercase; letter-spacing: .05em; }
.article-company-info .date { font-size: 13px; color: var(--gray-500); }

.article-title {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.article-package-bar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 13px;
  color: var(--green-700);
  margin-bottom: 32px;
}

.article-divider { height: 1px; background: var(--gray-200); margin: 32px 0; }

.article-content { font-size: 16px; line-height: 1.8; color: var(--gray-700); }
.article-content h2 { font-size: 22px; font-weight: 600; color: var(--gray-900); margin: 28px 0 12px; }
.article-content h3 { font-size: 18px; font-weight: 600; color: var(--gray-900); margin: 24px 0 10px; }
.article-content p  { margin-bottom: 16px; }
.article-content ul, .article-content ol { padding-left: 22px; margin-bottom: 16px; }
.article-content li { margin-bottom: 6px; }
.article-content a {
  color: var(--green-600) !important;
  font-size: inherit !important;
  background-color: transparent !important;
  text-decoration: underline;
  font-weight: inherit;
}
.article-content strong { font-weight: 600; }

/* Quill size classes */
.article-content .ql-size-small  { font-size: 0.85em; }
.article-content .ql-size-large  { font-size: 1.25em; }
.article-content .ql-size-huge   { font-size: 1.75em; }

/* Quill alignment */
.article-content .ql-align-center { text-align: center; }
.article-content .ql-align-right  { text-align: right; }
.article-content .ql-align-justify { text-align: justify; }

/* Reset any inline font-size on links inside sized spans */
.article-content span a,
.article-content strong a,
.article-content em a { font-size: inherit; }

.article-source-link {
  margin-top: 36px;
  padding: 16px 20px;
  background: var(--gray-100);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--gray-700);
}
.article-source-link a { color: var(--green-600); }

/* ── Submit form ── */
.submit-page { max-width: 720px; margin: 0 auto; padding: 48px 24px 80px; }

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  gap: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  background: var(--gray-200);
  color: var(--gray-500);
  transition: background .2s, color .2s;
}

.step-item.active   .step-num { background: var(--green-700); color: var(--white); }
.step-item.done     .step-num { background: var(--green-100); color: var(--green-700); }
.step-label { font-size: 12px; color: var(--gray-500); white-space: nowrap; }
.step-item.active .step-label { color: var(--green-700); font-weight: 500; }

.step-line { width: 64px; height: 1px; background: var(--gray-200); margin: 0 4px; margin-bottom: 22px; }
.step-line.done { background: var(--green-300); }

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.form-card h2 { font-size: 20px; font-weight: 600; margin-bottom: 4px; }
.form-card .form-subtitle { font-size: 14px; color: var(--gray-500); margin-bottom: 28px; }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 500; color: var(--gray-700); margin-bottom: 6px; }

.field input[type=text],
.field input[type=email],
.field input[type=url],
.field textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gray-900);
  transition: border-color .15s;
  outline: none;
}

.field input:focus, .field textarea:focus { border-color: var(--green-500); }
.field input.error { border-color: #DC2626; }
.field-hint { font-size: 12px; color: var(--gray-500); margin-top: 4px; }
.field-hint.ok { color: var(--green-600); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.logo-upload-area {
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.logo-upload-area:hover { border-color: var(--green-500); background: var(--green-50); }
.logo-upload-area p { font-size: 14px; color: var(--gray-700); margin-bottom: 4px; font-weight: 500; }
.logo-upload-area small { font-size: 12px; color: var(--gray-500); }

.logo-existing {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--green-50);
  border: 1.5px solid var(--green-100);
  border-radius: var(--radius);
}
.logo-existing p { font-size: 14px; color: var(--green-700); font-weight: 500; }
.logo-existing small { font-size: 12px; color: var(--green-600); cursor: pointer; text-decoration: underline; }

/* ── Quill editor override ── */
#editor { min-height: 220px; font-size: 14px; font-family: 'DM Sans', sans-serif; }
.ql-toolbar { border-radius: var(--radius) var(--radius) 0 0 !important; border-color: var(--gray-300) !important; }
.ql-container { border-radius: 0 0 var(--radius) var(--radius) !important; border-color: var(--gray-300) !important; font-family: 'DM Sans', sans-serif !important; }
.ql-container.ql-snow { font-size: 14px; }

/* ── Package cards ── */
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 24px; }

.package-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  position: relative;
}
.package-card:hover { border-color: var(--green-300); }
.package-card.selected { border-color: var(--green-600); background: var(--green-50); }
.package-card.popular::before {
  content: 'Empfohlen';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-700);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 99px;
  white-space: nowrap;
}

.pkg-label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-500); margin-bottom: 6px; }
.pkg-price { font-size: 26px; font-weight: 600; color: var(--gray-900); margin-bottom: 14px; }
.pkg-price span { font-size: 13px; font-weight: 400; color: var(--gray-500); }
.pkg-features { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.pkg-features li { font-size: 13px; color: var(--gray-600); display: flex; gap: 7px; align-items: flex-start; }
.pkg-features li::before { content: '✓'; color: var(--green-600); font-weight: 600; flex-shrink: 0; }

/* ── Summary box ── */
.summary-box {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--gray-700);
}
.summary-box .summary-row { display: flex; justify-content: space-between; padding: 4px 0; }
.summary-box .summary-row strong { color: var(--gray-900); }
.summary-divider { height: 1px; background: var(--gray-200); margin: 10px 0; }

/* ── Form actions ── */
.form-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--gray-200); }

/* ── Errors ── */
.error-box { background: #FEF2F2; border: 1px solid #FCA5A5; border-radius: var(--radius); padding: 12px 16px; margin-bottom: 20px; }
.error-box ul { padding-left: 18px; }
.error-box li { font-size: 13px; color: #DC2626; margin-bottom: 3px; }

/* ── Success page ── */
.success-wrap {
  max-width: 560px;
  margin: 80px auto;
  text-align: center;
  padding: 0 24px;
}
.success-icon { width: 64px; height: 64px; background: var(--green-100); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 28px; }
.success-wrap h1 { font-size: 26px; font-weight: 600; margin-bottom: 12px; }
.success-wrap p  { font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 8px; }

/* ── Admin ── */
.admin-wrap { max-width: 540px; margin: 80px auto; padding: 0 24px; }
.admin-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px; text-align: center; }
.admin-card h1 { font-size: 22px; margin-bottom: 12px; }
.admin-card p  { font-size: 14px; color: var(--gray-500); margin-bottom: 20px; }

/* ── Footer ── */
.site-footer { border-top: 1px solid var(--gray-200); background: var(--white); padding: 28px 0; text-align: center; }
.site-footer p { font-size: 13px; color: var(--gray-500); }
.site-footer a { color: var(--green-600); }

/* ── Pagination ── */
.pagination { display: flex; justify-content: center; gap: 8px; padding-top: 24px; }
.pagination a, .pagination span {
  padding: 7px 12px;
  border-radius: var(--radius);
  font-size: 13px;
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  background: var(--white);
  text-decoration: none;
}
.pagination span.current { background: var(--green-700); color: var(--white); border-color: var(--green-700); }
.pagination a:hover { background: var(--green-50); border-color: var(--green-300); }
/* ============================================================
   Newsroom · Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=DM+Serif+Display&display=swap');

:root {
  --green-900: #0F2518;
  --green-800: #1A3D28;
  --green-700: #1D4731;
  --green-600: #2A6041;
  --green-500: #3B8059;
  --green-100: #D8EDE0;
  --green-50:  #EFF7F2;

  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6B7280;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50:  #F9FAFB;

  --white:    #FFFFFF;
  --radius:   8px;
  --radius-lg:12px;
  --shadow:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:0 4px 6px rgba(0,0,0,.06), 0 2px 4px rgba(0,0,0,.04);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--gray-900);
  background: var(--gray-50);
  line-height: 1.6;
}

a { color: var(--green-600); text-decoration: none; }
a:hover { color: var(--green-800); }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
.site-header {
  background: var(--green-800);
  border-bottom: 1px solid var(--green-900);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--green-500);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.logo-mark::after {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 50%;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-primary   { font-size: 14px; font-weight: 600; color: var(--white); }
.logo-secondary { font-size: 11px; font-weight: 400; color: rgba(255,255,255,.55); letter-spacing: .04em; text-transform: uppercase; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color .15s;
}

.site-nav a:hover { color: var(--white); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background .15s, opacity .15s;
}

.btn-primary {
  background: var(--white);
  color: var(--green-800) !important;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s;
}
.btn-primary:hover { background: var(--green-50); color: var(--green-800) !important; }

.btn-green      { background: var(--green-700); color: var(--white); }
.btn-green:hover { background: var(--green-800); }
.btn-outline    { background: transparent; color: var(--green-700); border: 1.5px solid var(--green-300); }
.btn-outline:hover { background: var(--green-50); }
.btn-lg { padding: 12px 28px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Page hero ── */
.page-hero {
  background: var(--green-700);
  padding: 48px 0 40px;
  color: var(--white);
}
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 8px;
}
.page-hero p { font-size: 16px; color: rgba(255,255,255,.7); }

/* ── Press list ── */
.newsroom-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  padding: 40px 0 60px;
  align-items: start;
}

.press-list { display: flex; flex-direction: column; gap: 1px; background: var(--gray-200); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; }

.press-card {
  display: flex;
  gap: 20px;
  padding: 22px 24px;
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: background .12s;
}
.press-card:hover { background: var(--green-50); }
.press-card.featured { border-left: 3px solid var(--green-600); }

.company-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  flex-shrink: 0;
  background: var(--white);
}

.company-logo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  border: 1px solid var(--green-100);
}

.press-body { flex: 1; min-width: 0; }

.press-meta-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.press-company { font-size: 12px; font-weight: 600; color: var(--green-600); text-transform: uppercase; letter-spacing: .05em; }
.badge-featured { font-size: 10px; background: var(--green-100); color: var(--green-700); padding: 2px 8px; border-radius: 99px; font-weight: 600; }
.press-title { font-size: 16px; font-weight: 500; color: var(--gray-900); line-height: 1.4; margin-bottom: 6px; }
.press-excerpt { font-size: 13px; color: var(--gray-500); line-height: 1.55; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.press-date { font-size: 12px; color: var(--gray-500); }

/* ── Sidebar ── */
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 16px;
}
.sidebar-card h3 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-500); margin-bottom: 14px; }

.sidebar-cta {
  background: var(--green-700);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.sidebar-cta h3 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 8px; text-transform: none; letter-spacing: 0; }
.sidebar-cta p  { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 16px; }

/* ── Article ── */
.article-wrap { max-width: 800px; margin: 0 auto; padding: 48px 24px 80px; }

.article-header { margin-bottom: 32px; }
.breadcrumb { font-size: 13px; color: var(--gray-500); margin-bottom: 16px; }
.breadcrumb a { color: var(--gray-500); }
.breadcrumb span { margin: 0 6px; }

.article-company-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.article-company-info .name { font-size: 13px; font-weight: 600; color: var(--green-600); text-transform: uppercase; letter-spacing: .05em; }
.article-company-info .date { font-size: 13px; color: var(--gray-500); }

.article-title {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.article-package-bar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 13px;
  color: var(--green-700);
  margin-bottom: 32px;
}

.article-divider { height: 1px; background: var(--gray-200); margin: 32px 0; }

.article-content { font-size: 16px; line-height: 1.8; color: var(--gray-700); }
.article-content h2 { font-size: 22px; font-weight: 600; color: var(--gray-900); margin: 28px 0 12px; }
.article-content h3 { font-size: 18px; font-weight: 600; color: var(--gray-900); margin: 24px 0 10px; }
.article-content p  { margin-bottom: 16px; }
.article-content ul, .article-content ol { padding-left: 22px; margin-bottom: 16px; }
.article-content li { margin-bottom: 6px; }
.article-content a {
  color: var(--green-600) !important;
  font-size: inherit !important;
  background-color: transparent !important;
  text-decoration: underline;
  font-weight: inherit;
}
.article-content strong { font-weight: 600; }

/* Quill size classes */
.article-content .ql-size-small  { font-size: 0.85em; }
.article-content .ql-size-large  { font-size: 1.25em; }
.article-content .ql-size-huge   { font-size: 1.75em; }

/* Quill alignment */
.article-content .ql-align-center { text-align: center; }
.article-content .ql-align-right  { text-align: right; }
.article-content .ql-align-justify { text-align: justify; }

/* Reset any inline font-size on links inside sized spans */
.article-content span a,
.article-content strong a,
.article-content em a { font-size: inherit; }

.article-source-link {
  margin-top: 36px;
  padding: 16px 20px;
  background: var(--gray-100);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--gray-700);
}
.article-source-link a { color: var(--green-600); }

/* ── Submit form ── */
.submit-page { max-width: 720px; margin: 0 auto; padding: 48px 24px 80px; }

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  gap: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  background: var(--gray-200);
  color: var(--gray-500);
  transition: background .2s, color .2s;
}

.step-item.active   .step-num { background: var(--green-700); color: var(--white); }
.step-item.done     .step-num { background: var(--green-100); color: var(--green-700); }
.step-label { font-size: 12px; color: var(--gray-500); white-space: nowrap; }
.step-item.active .step-label { color: var(--green-700); font-weight: 500; }

.step-line { width: 64px; height: 1px; background: var(--gray-200); margin: 0 4px; margin-bottom: 22px; }
.step-line.done { background: var(--green-300); }

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.form-card h2 { font-size: 20px; font-weight: 600; margin-bottom: 4px; }
.form-card .form-subtitle { font-size: 14px; color: var(--gray-500); margin-bottom: 28px; }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 500; color: var(--gray-700); margin-bottom: 6px; }

.field input[type=text],
.field input[type=email],
.field input[type=url],
.field textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gray-900);
  transition: border-color .15s;
  outline: none;
}

.field input:focus, .field textarea:focus { border-color: var(--green-500); }
.field input.error { border-color: #DC2626; }
.field-hint { font-size: 12px; color: var(--gray-500); margin-top: 4px; }
.field-hint.ok { color: var(--green-600); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.logo-upload-area {
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.logo-upload-area:hover { border-color: var(--green-500); background: var(--green-50); }
.logo-upload-area p { font-size: 14px; color: var(--gray-700); margin-bottom: 4px; font-weight: 500; }
.logo-upload-area small { font-size: 12px; color: var(--gray-500); }

.logo-existing {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--green-50);
  border: 1.5px solid var(--green-100);
  border-radius: var(--radius);
}
.logo-existing p { font-size: 14px; color: var(--green-700); font-weight: 500; }
.logo-existing small { font-size: 12px; color: var(--green-600); cursor: pointer; text-decoration: underline; }

/* ── Quill editor override ── */
#editor { min-height: 220px; font-size: 14px; font-family: 'DM Sans', sans-serif; }
.ql-toolbar { border-radius: var(--radius) var(--radius) 0 0 !important; border-color: var(--gray-300) !important; }
.ql-container { border-radius: 0 0 var(--radius) var(--radius) !important; border-color: var(--gray-300) !important; font-family: 'DM Sans', sans-serif !important; }
.ql-container.ql-snow { font-size: 14px; }

/* ── Package cards ── */
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 24px; }

.package-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  position: relative;
}
.package-card:hover { border-color: var(--green-300); }
.package-card.selected { border-color: var(--green-600); background: var(--green-50); }
.package-card.popular::before {
  content: 'Empfohlen';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-700);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 99px;
  white-space: nowrap;
}

.pkg-label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-500); margin-bottom: 6px; }
.pkg-price { font-size: 26px; font-weight: 600; color: var(--gray-900); margin-bottom: 14px; }
.pkg-price span { font-size: 13px; font-weight: 400; color: var(--gray-500); }
.pkg-features { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.pkg-features li { font-size: 13px; color: var(--gray-600); display: flex; gap: 7px; align-items: flex-start; }
.pkg-features li::before { content: '✓'; color: var(--green-600); font-weight: 600; flex-shrink: 0; }

/* ── Summary box ── */
.summary-box {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--gray-700);
}
.summary-box .summary-row { display: flex; justify-content: space-between; padding: 4px 0; }
.summary-box .summary-row strong { color: var(--gray-900); }
.summary-divider { height: 1px; background: var(--gray-200); margin: 10px 0; }

/* ── Form actions ── */
.form-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--gray-200); }

/* ── Errors ── */
.error-box { background: #FEF2F2; border: 1px solid #FCA5A5; border-radius: var(--radius); padding: 12px 16px; margin-bottom: 20px; }
.error-box ul { padding-left: 18px; }
.error-box li { font-size: 13px; color: #DC2626; margin-bottom: 3px; }

/* ── Success page ── */
.success-wrap {
  max-width: 560px;
  margin: 80px auto;
  text-align: center;
  padding: 0 24px;
}
.success-icon { width: 64px; height: 64px; background: var(--green-100); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 28px; }
.success-wrap h1 { font-size: 26px; font-weight: 600; margin-bottom: 12px; }
.success-wrap p  { font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 8px; }

/* ── Admin ── */
.admin-wrap { max-width: 540px; margin: 80px auto; padding: 0 24px; }
.admin-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px; text-align: center; }
.admin-card h1 { font-size: 22px; margin-bottom: 12px; }
.admin-card p  { font-size: 14px; color: var(--gray-500); margin-bottom: 20px; }

/* ── Footer ── */
.site-footer { border-top: 1px solid var(--gray-200); background: var(--white); padding: 28px 0; text-align: center; }
.site-footer p { font-size: 13px; color: var(--gray-500); }
.site-footer a { color: var(--green-600); }

/* ── Pagination ── */
.pagination { display: flex; justify-content: center; gap: 8px; padding-top: 24px; }
.pagination a, .pagination span {
  padding: 7px 12px;
  border-radius: var(--radius);
  font-size: 13px;
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  background: var(--white);
  text-decoration: none;
}
.pagination span.current { background: var(--green-700); color: var(--white); border-color: var(--green-700); }
.pagination a:hover { background: var(--green-50); border-color: var(--green-300); }

