/* =========================================================
   PREMIUM KONTAKT FORM
   Custom class: form-builder-for-kontakt
========================================================= */

.form-builder-for-kontakt {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 38px;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(20, 20, 20, 0.09);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.form-builder-for-kontakt:hover {
  transform: translateY(-3px);
  border-color: rgba(228, 30, 36, 0.2);
  box-shadow: 0 26px 70px rgba(20, 20, 20, 0.13);
}

/* Prevent inherited sizing issues */
.form-builder-for-kontakt,
.form-builder-for-kontakt *,
.form-builder-for-kontakt *::before,
.form-builder-for-kontakt *::after {
  box-sizing: border-box;
}

/* Addon wrappers */
.form-builder-for-kontakt .sppb-addon-content,
.form-builder-for-kontakt form,
.form-builder-for-kontakt .sppb-addon-form-builder-form {
  width: 100%;
  max-width: 100%;
}

/* Main form grid */
.form-builder-for-kontakt .sppb-addon-form-builder-form {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 20px;
  row-gap: 20px;
  align-items: start;
}

/* All field wrappers */
.form-builder-for-kontakt .sppb-form-group {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  flex: none !important;
}

/* First four fields: exact 50/50 */
.form-builder-for-kontakt .sppb-form-builder-field-0,
.form-builder-for-kontakt .sppb-form-builder-field-1,
.form-builder-for-kontakt .sppb-form-builder-field-2,
.form-builder-for-kontakt .sppb-form-builder-field-3 {
  grid-column: span 1 !important;
  width: 100% !important;
}

/* All fields from inquiry type onward: full width */
.form-builder-for-kontakt .sppb-form-builder-field-4,
.form-builder-for-kontakt .sppb-form-builder-field-5,
.form-builder-for-kontakt .sppb-form-builder-field-6,
.form-builder-for-kontakt .sppb-form-builder-field-7,
.form-builder-for-kontakt .sppb-form-builder-field-8,
.form-builder-for-kontakt .sppb-form-builder-field-9 {
  grid-column: 1 / -1 !important;
  width: 100% !important;
}

/* Labels */
.form-builder-for-kontakt .sppb-form-group > label {
  display: block !important;
  width: 100%;
  margin: 0 0 9px;
  padding: 0;
  color: #202020;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

/* Required marker */
.form-builder-for-kontakt .sppb-form-builder-required {
  margin-left: 3px;
  color: #e41e24;
}

/* Inputs, dropdown and textarea */
.form-builder-for-kontakt input.sppb-form-control,
.form-builder-for-kontakt select.sppb-form-control,
.form-builder-for-kontakt textarea.sppb-form-control {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 14px 16px;
  background: #f7f7f8;
  border: 1px solid #e1e1e4;
  border-radius: 10px;
  outline: none;
  color: #202020;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  box-shadow: none;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

/* Standard field height */
.form-builder-for-kontakt input.sppb-form-control,
.form-builder-for-kontakt select.sppb-form-control {
  height: 56px !important;
  min-height: 56px !important;
}

/* Field hover */
.form-builder-for-kontakt input.sppb-form-control:hover,
.form-builder-for-kontakt select.sppb-form-control:hover,
.form-builder-for-kontakt textarea.sppb-form-control:hover {
  background: #ffffff;
  border-color: #c7c7cb;
}

/* Field focus */
.form-builder-for-kontakt input.sppb-form-control:focus,
.form-builder-for-kontakt select.sppb-form-control:focus,
.form-builder-for-kontakt textarea.sppb-form-control:focus {
  background: #ffffff;
  border-color: #e41e24;
  box-shadow: 0 0 0 4px rgba(228, 30, 36, 0.1);
  transform: translateY(-1px);
}

/* Placeholder text */
.form-builder-for-kontakt .sppb-form-control::placeholder {
  color: #939399;
  opacity: 1;
}

/* Dropdown */
.form-builder-for-kontakt select.sppb-form-control {
  cursor: pointer;
}

/* Message field */
.form-builder-for-kontakt textarea.sppb-form-control {
  min-height: 145px !important;
  height: 145px;
  padding-top: 16px;
  resize: vertical;
}

/* Checkbox and radio field containers */
.form-builder-for-kontakt .sppb-form-check,
.form-builder-for-kontakt .sppb-form-builder-checkbox,
.form-builder-for-kontakt .sppb-form-builder-radio {
  grid-column: 1 / -1;
  width: 100%;
}

/* Checkbox and radio controls */
.form-builder-for-kontakt input[type="checkbox"],
.form-builder-for-kontakt input[type="radio"] {
  width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  margin: 0 9px 0 0 !important;
  padding: 0;
  accent-color: #e41e24;
  cursor: pointer;
}

/* CAPTCHA */
.form-builder-for-kontakt .g-recaptcha,
.form-builder-for-kontakt .sppb-form-builder-captcha {
  grid-column: 1 / -1;
  width: 100%;
}

/* Submit wrapper */
.form-builder-for-kontakt .sppb-form-builder-btn {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  margin: 3px 0 0 !important;
  padding: 0 !important;
  text-align: left !important;
}

/* Submit button */
.form-builder-for-kontakt .sppb-form-builder-btn button,
.form-builder-for-kontakt button[type="submit"] {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 56px;
  margin: 0 !important;
  padding: 15px 28px !important;
  background: #e41e24 !important;
  border: 2px solid #e41e24 !important;
  border-radius: 10px !important;
  color: #ffffff !important;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.6px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(228, 30, 36, 0.24);
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

/* Button hover */
.form-builder-for-kontakt .sppb-form-builder-btn button:hover,
.form-builder-for-kontakt button[type="submit"]:hover {
  background: #111111 !important;
  border-color: #111111 !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.22);
}

/* Button active */
.form-builder-for-kontakt .sppb-form-builder-btn button:active,
.form-builder-for-kontakt button[type="submit"]:active {
  transform: translateY(-1px);
}

/* Button focus */
.form-builder-for-kontakt .sppb-form-builder-btn button:focus,
.form-builder-for-kontakt button[type="submit"]:focus {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(228, 30, 36, 0.14),
    0 14px 30px rgba(228, 30, 36, 0.23);
}

/* Success and error response */
.form-builder-for-kontakt .sppb-ajax-contact-status {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 3px !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

/* Validation error */
.form-builder-for-kontakt .sppb-form-control.is-invalid,
.form-builder-for-kontakt .sppb-form-control.error {
  border-color: #e41e24;
  box-shadow: 0 0 0 4px rgba(228, 30, 36, 0.08);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
  .form-builder-for-kontakt {
    padding: 32px;
    border-radius: 15px;
  }

  .form-builder-for-kontakt .sppb-addon-form-builder-form {
    column-gap: 16px;
    row-gap: 18px;
  }
}

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

@media (max-width: 767px) {
  .form-builder-for-kontakt {
    padding: 24px 20px;
    border-radius: 13px;
  }

  .form-builder-for-kontakt .sppb-addon-form-builder-form {
    grid-template-columns: 1fr !important;
    row-gap: 17px;
  }

  .form-builder-for-kontakt .sppb-form-group,
  .form-builder-for-kontakt .sppb-form-builder-field-0,
  .form-builder-for-kontakt .sppb-form-builder-field-1,
  .form-builder-for-kontakt .sppb-form-builder-field-2,
  .form-builder-for-kontakt .sppb-form-builder-field-3,
  .form-builder-for-kontakt .sppb-form-builder-field-4,
  .form-builder-for-kontakt .sppb-form-builder-field-5,
  .form-builder-for-kontakt .sppb-form-builder-field-6,
  .form-builder-for-kontakt .sppb-form-builder-field-7,
  .form-builder-for-kontakt .sppb-form-builder-field-8,
  .form-builder-for-kontakt .sppb-form-builder-field-9 {
    grid-column: 1 / -1 !important;
    width: 100% !important;
  }

  .form-builder-for-kontakt input.sppb-form-control,
  .form-builder-for-kontakt select.sppb-form-control {
    height: 53px !important;
    min-height: 53px !important;
  }

  .form-builder-for-kontakt textarea.sppb-form-control {
    min-height: 135px !important;
    height: 135px;
  }

  .form-builder-for-kontakt .sppb-form-builder-btn button,
  .form-builder-for-kontakt button[type="submit"] {
    min-height: 54px;
  }
}




















/* =========================================================
   PREMIUM PUBLIC ARTICLES
   Custom class: articles-public
========================================================= */

.articles-public {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

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

/* Remove default negative spacing */
.articles-public.sppb-addon-articles {
  margin-bottom: 0 !important;
}

/* Main article grid */
.articles-public .sppb-addon-article-layout-editorial-row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
  margin: 0 !important;
}

/* Each article card wrapper */
.articles-public
  .sppb-addon-article-layout-editorial-row
  > .sppb-addon-article-layout {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
}

/* Main card */
.articles-public .sppb-addon-article-layout-editorial-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  box-shadow: 0 12px 38px rgba(15, 15, 15, 0.07);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.articles-public .sppb-addon-article-layout-editorial-wrapper:hover {
  transform: translateY(-8px);
  border-color: rgba(228, 30, 36, 0.35);
  box-shadow: 0 24px 55px rgba(15, 15, 15, 0.14);
}

/* =========================================================
   ARTICLE IMAGE
========================================================= */

.articles-public .sppb-article-img-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: 255px;
  margin: 0 !important;
  overflow: hidden;
  background: #e9e9e9;
}

.articles-public .sppb-article-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.36) 0%,
    rgba(0, 0, 0, 0.04) 55%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.articles-public .sppb-article-img-wrap img,
.articles-public img.sppb-img-responsive {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  object-position: center;
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.articles-public
  .sppb-addon-article-layout-editorial-wrapper:hover
  .sppb-article-img-wrap
  img {
  transform: scale(1.07);
  filter: brightness(0.92);
}

/* =========================================================
   ARTICLE CONTENT
========================================================= */

.articles-public .sppb-addon-article-layout-editorial-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 28px 26px 30px;
}

/* Article title */
.articles-public .sppb-addon-article-layout-editorial-content h3 {
  margin: 0 0 14px !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}

.articles-public .sppb-addon-article-layout-editorial-content h3 a {
  color: #151515;
  text-decoration: none;
  transition: color 0.3s ease;
}

.articles-public .sppb-addon-article-layout-editorial-content h3 a:hover {
  color: #e41e24;
}

/* =========================================================
   META INFORMATION
========================================================= */

.articles-public .sppb-article-info-wrap {
  order: -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  width: 100%;
  margin: 0 0 16px !important;
  padding: 0;
  color: #777777;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

/* Category badge */
.articles-public .sppb-meta-category {
  display: inline-flex;
  align-items: center;
  margin: 0 !important;
}

.articles-public .sppb-meta-category a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 12px;
  background: rgba(228, 30, 36, 0.09);
  border-radius: 30px;
  color: #e41e24;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.articles-public .sppb-meta-category a:hover {
  background: #e41e24;
  color: #ffffff;
}

/* Other meta fields */
.articles-public .sppb-article-info-wrap span:not(.sppb-meta-category) {
  display: inline-flex;
  align-items: center;
  color: #7b7b7b;
}

/* =========================================================
   INTRO TEXT
========================================================= */

.articles-public .sppb-article-introtext {
  width: 100%;
  margin: 0 0 24px !important;
  color: #626262;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.72;
}

.articles-public .sppb-article-introtext p {
  margin: 0;
}

/* =========================================================
   READ MORE BUTTON
========================================================= */

.articles-public .sppb-readmore {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  margin-top: auto !important;
  padding: 12px 18px;
  overflow: hidden;
  background: #e41e24;
  border: 2px solid #e41e24;
  border-radius: 8px;
  color: #ffffff !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1;
  text-decoration: none !important;
  text-transform: uppercase;
  box-shadow: 0 9px 22px rgba(228, 30, 36, 0.2);
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.articles-public .sppb-readmore::after {
  content: "→";
  font-size: 16px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.articles-public .sppb-readmore:hover {
  background: #111111;
  border-color: #111111;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 13px 28px rgba(17, 17, 17, 0.2);
}

.articles-public .sppb-readmore:hover::after {
  transform: translateX(4px);
}

/* Remove unusual inline font wrappers */
.articles-public .sppb-readmore font,
.articles-public .sppb-article-introtext font,
.articles-public .sppb-addon-article-layout-editorial-content h3 font {
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
}

/* =========================================================
   EMPTY IMAGE PROTECTION
========================================================= */

.articles-public .sppb-article-img-wrap:empty {
  display: none;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {
  .articles-public .sppb-addon-article-layout-editorial-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .articles-public .sppb-article-img-wrap {
    height: 245px;
  }
}

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

@media (max-width: 700px) {
  .articles-public .sppb-addon-article-layout-editorial-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .articles-public .sppb-article-img-wrap {
    height: 250px;
  }

  .articles-public .sppb-addon-article-layout-editorial-content {
    padding: 25px 22px 27px;
  }

  .articles-public .sppb-addon-article-layout-editorial-content h3 {
    font-size: 21px;
  }

  .articles-public .sppb-readmore {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .articles-public .sppb-article-img-wrap {
    height: 215px;
  }

  .articles-public .sppb-addon-article-layout-editorial-content {
    padding: 23px 19px 24px;
  }

  .articles-public .sppb-addon-article-layout-editorial-content h3 {
    font-size: 19px;
  }

  .articles-public .sppb-article-introtext {
    font-size: 14px;
  }
}

































/* =========================================================
   PREMIUM JOOMLA ARTICLE DETAIL PAGE
   Main wrapper: .article-details
========================================================= */

.article-details {
  width: 100%;
  max-width: 1050px;
  margin: 55px auto 90px;
  padding: 45px;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(20, 20, 20, 0.09);
}

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

/* =========================================================
   FEATURED IMAGE
========================================================= */

.article-details .article-full-image {
  width: 100%;
  margin: 0 0 34px;
  overflow: hidden;
  border-radius: 14px;
}

.article-details .article-full-image img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}

.article-details .article-full-image:hover img {
  transform: scale(1.025);
  filter: brightness(0.96);
}

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

.article-details .article-header {
  margin: 0 0 20px;
}

.article-details .article-header h1,
.article-details h1[itemprop="headline"] {
  margin: 0;
  color: #151515;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.8px;
  text-transform: uppercase;
}

/* Red accent line */
.article-details .article-header::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 20px;
  background: #e41e24;
  border-radius: 10px;
}

/* =========================================================
   EDIT LINK
========================================================= */

.article-details .article-can-edit {
  margin: 0 0 18px;
}

.article-details .article-can-edit a {
  color: #e41e24;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.article-details .article-can-edit a:hover {
  color: #111111;
}

/* =========================================================
   ARTICLE META
========================================================= */

.article-details .article-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  width: 100%;
  margin: 0 0 32px;
  padding: 16px 18px;
  background: #f7f7f8;
  border: 1px solid #eeeeef;
  border-radius: 10px;
  color: #707070;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.article-details .article-info > span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

/* Separators */
.article-details .article-info > span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  margin-left: 12px;
  background: #e41e24;
  border-radius: 50%;
}

/* Meta labels */
.article-details .article-info .createdby,
.article-details .article-info .published,
.article-details .article-info .hits {
  color: #6d6d6d;
}

/* Category badge */
.article-details .article-info .category-name a {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  background: rgba(228, 30, 36, 0.1);
  border-radius: 30px;
  color: #e41e24;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.article-details .article-info .category-name a:hover {
  background: #e41e24;
  color: #ffffff;
}

/* =========================================================
   ARTICLE CONTENT
========================================================= */

.article-details .article-body,
.article-details [itemprop="articleBody"] {
  color: #4f4f4f;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.85;
}

.article-details .article-body p,
.article-details [itemprop="articleBody"] p {
  margin: 0 0 22px;
}

.article-details .article-body h2,
.article-details [itemprop="articleBody"] h2 {
  margin: 42px 0 18px;
  color: #151515;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.article-details .article-body h3,
.article-details [itemprop="articleBody"] h3 {
  margin: 34px 0 15px;
  color: #151515;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
}

.article-details .article-body h4,
.article-details [itemprop="articleBody"] h4 {
  margin: 28px 0 13px;
  color: #151515;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.3;
}

.article-details .article-body a,
.article-details [itemprop="articleBody"] a {
  color: #e41e24;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-details .article-body a:hover,
.article-details [itemprop="articleBody"] a:hover {
  color: #111111;
}

/* Content images */
.article-details .article-body img,
.article-details [itemprop="articleBody"] img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(20, 20, 20, 0.1);
}

/* Lists */
.article-details .article-body ul,
.article-details .article-body ol,
.article-details [itemprop="articleBody"] ul,
.article-details [itemprop="articleBody"] ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.article-details .article-body li,
.article-details [itemprop="articleBody"] li {
  margin-bottom: 9px;
}

/* Blockquote */
.article-details blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  background: #f8f8f8;
  border-left: 5px solid #e41e24;
  border-radius: 0 10px 10px 0;
  color: #303030;
  font-size: 19px;
  font-style: italic;
  line-height: 1.7;
}

/* Horizontal divider */
.article-details hr {
  margin: 40px 0;
  border: 0;
  border-top: 1px solid #e8e8e8;
}

/* =========================================================
   SOCIAL SHARE
========================================================= */

.article-details .article-ratings-social-share {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid #ececec;
}

.article-details .social-share-block {
  width: auto;
}

.article-details .social-share-block ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-details .social-share-block li {
  margin: 0;
}

.article-details .social-share-block a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #f4f4f5;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  color: #333333;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.article-details .social-share-block a:hover {
  background: #e41e24;
  border-color: #e41e24;
  color: #ffffff;
  transform: translateY(-3px);
}

/* =========================================================
   TABLES
========================================================= */

.article-details table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 10px;
}

.article-details table th,
.article-details table td {
  padding: 14px 16px;
  border: 1px solid #e5e5e5;
  text-align: left;
}

.article-details table th {
  background: #e41e24;
  color: #ffffff;
  font-weight: 800;
}

.article-details table tr:nth-child(even) td {
  background: #f8f8f8;
}

/* =========================================================
   ARTICLE NAVIGATION
========================================================= */

.article-details .pager,
.article-details .pagination {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 45px;
  padding-top: 30px;
  border-top: 1px solid #ececec;
}

.article-details .pager a,
.article-details .pagination a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 18px;
  background: #e41e24;
  border: 2px solid #e41e24;
  border-radius: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.article-details .pager a:hover,
.article-details .pagination a:hover {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
  transform: translateY(-2px);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
  .article-details {
    max-width: calc(100% - 40px);
    margin-top: 40px;
    padding: 34px;
  }

  .article-details .article-full-image img {
    height: 430px;
  }

  .article-details .article-header h1,
  .article-details h1[itemprop="headline"] {
    font-size: 39px;
  }
}

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

@media (max-width: 767px) {
  .article-details {
    max-width: calc(100% - 28px);
    margin: 25px auto 60px;
    padding: 22px 18px;
    border-radius: 13px;
  }

  .article-details .article-full-image {
    margin-bottom: 25px;
    border-radius: 10px;
  }

  .article-details .article-full-image img {
    height: 270px;
  }

  .article-details .article-header h1,
  .article-details h1[itemprop="headline"] {
    font-size: 30px;
    line-height: 1.18;
  }

  .article-details .article-header::after {
    width: 55px;
    margin-top: 16px;
  }

  .article-details .article-info {
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
  }

  .article-details .article-info > span {
    width: 100%;
  }

  .article-details .article-info > span::after {
    display: none;
  }

  .article-details .article-body,
  .article-details [itemprop="articleBody"] {
    font-size: 16px;
    line-height: 1.75;
  }

  .article-details .article-body h2,
  .article-details [itemprop="articleBody"] h2 {
    font-size: 28px;
  }

  .article-details .article-body h3,
  .article-details [itemprop="articleBody"] h3 {
    font-size: 23px;
  }

  .article-details .article-ratings-social-share {
    justify-content: flex-start;
  }
}













#sp-header .logo a {
    font-size: 34px !important;
}











#sp-footer, #sp-bottom {
    background: #000000 !important;
    color: #ffffff;
}





























/* ================================
   Community Builder Members List
   Premium Card Design
================================ */


/* Main members container */
.cb_template .cbUserList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* Member card */
.cb_template .cbUserListRow {
    background: #ffffff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all .3s ease;
    text-align: center;
    border: 1px solid #eee;
}


.cb_template .cbUserListRow:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}


/* Avatar wrapper */
.cb_template .cbImgPict {
    display:flex;
    justify-content:center;
    margin-bottom:20px;
}


/* FORCE PERFECT CIRCLE AVATAR */
.cb_template img.cbThumbPict,
.cb_template .cbImgPict img,
.cb_template .cbThumbPict {
    width:120px !important;
    height:120px !important;
    border-radius:50% !important;
    object-fit:cover !important;
    aspect-ratio:1 / 1;
}


/* Name */
.cb_template .cbUserListField_cb_name a,
.cb_template .cbUserListField_cb_username a {
    font-size:20px;
    font-weight:600;
    color:#222;
    text-decoration:none;
}


/* Function / Rank */
.cb_template .cbUserListField {
    margin-top:8px;
    color:#666;
    font-size:15px;
}


/* Remove empty column look */
.cb_template .cbUserListRowColumn {
    background:transparent;
}


/* Responsive */
@media(max-width:991px){

.cb_template .cbUserList {
    grid-template-columns:repeat(2,1fr);
}

}


@media(max-width:600px){

.cb_template .cbUserList {
    grid-template-columns:1fr;
}

}



















.col-sm-4.p-2.font-weight-bold.cbColumn4.cbUserListHeaderCol1 {
    display: none !important;
}
















/* ==========================================
   COMMUNITY BUILDER MEMBER LIST
   FINAL CARD + PERFECT CIRCLE AVATARS
========================================== */


/* Member Card */

.cbUserListRow {

    background:#ffffff !important;

    border-radius:20px !important;

    padding:30px !important;

    margin-bottom:25px !important;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);

}


/* Inner layout */

.cbUserListRowColumn {

    display:flex !important;

    align-items:center !important;

    gap:35px !important;

}



/* ==========================================
   FORCE ALL AVATARS TO PERFECT CIRCLE
========================================== */


/* Avatar wrapper */

.cbUserListFC_avatar,
.cbUserListFC_avatar span,
.cbImgPict,
.cbThumbPict,
.cbImgPict img,
.cbThumbPict img {

    width:120px !important;

    height:120px !important;

    min-width:120px !important;

    min-height:120px !important;

    max-width:120px !important;

    max-height:120px !important;

    border-radius:50% !important;

    overflow:hidden !important;

}



/* Avatar image */

.cbUserListFC_avatar img,
.cbImgPict img,
.cbThumbPict img,
img.cbImgPict,
img.cbThumbPict {

    width:100% !important;

    height:100% !important;

    object-fit:cover !important;

    border-radius:50% !important;

    display:block !important;

}



/* Avatar border/shadow */

.cbUserListFC_avatar img {

    border:4px solid #ffffff !important;

    box-shadow:0 6px 18px rgba(0,0,0,.18);

}



/* ==========================================
   USER INFORMATION
========================================== */


.cbUserListFieldLine {

    margin:0 12px 0 0 !important;

}


.cbUserListFC_formatname a {

    font-size:24px !important;

    font-weight:600 !important;

    color:#d71920 !important;

    text-decoration:none !important;

}


.cbUserListFC_cb_funktion,
.cbUserListFC_cb_dienstgrad {

    font-size:16px !important;

    color:#555 !important;

}



/* Remove extra CB borders */

.cbUserListRow,
.cbUserListRowColumn {

    border:none !important;

}



/* Hide Powered by */

.cbPoweredBy {

    display:none !important;

}



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

@media(max-width:768px){

.cbUserListRowColumn {

    flex-direction:column !important;

    text-align:center;

}


.cbUserListFieldLine {

    margin:5px 0 !important;

}

}
