/*-- -------------------------- -->
<---       Karten-Grid          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sicherheit-grid {
    padding: var(--sectionPadding);
  }
  #sicherheit-grid .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
  }
  #sicherheit-grid .cs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #sicherheit-grid .cs-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 0.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease;
  }
  #sicherheit-grid .cs-card:hover {
    border-color: var(--primary);
  }
  #sicherheit-grid .cs-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--headerColor);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
  }
  #sicherheit-grid .cs-card-text {
    font-size: 0.9375rem;
    color: var(--bodyTextColor);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
  }
  #sicherheit-grid .cs-card-link {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: gap 0.2s ease;
  }
  #sicherheit-grid .cs-card-link:hover {
    gap: 0.625rem;
  }
  #sicherheit-grid .cs-card-link::after {
    content: '';
    display: block;
    width: 1.25rem;
    height: 1px;
    background: var(--primary);
  }
  #sicherheit-grid .cs-card-link.cs-muted {
    color: var(--bodyTextColor);
    opacity: 0.6;
    pointer-events: none;
  }
  #sicherheit-grid .cs-card-link.cs-muted::after {
    display: none;
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #sicherheit-grid .cs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sicherheit-grid .cs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #sicherheit-grid .cs-card {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
  }
  body.dark-mode #sicherheit-grid .cs-card:hover {
    border-color: var(--primary);
  }
  body.dark-mode #sicherheit-grid .cs-card-title {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #sicherheit-grid .cs-card-text {
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }
  body.dark-mode #sicherheit-grid .cs-card-link.cs-muted {
    color: var(--bodyTextColorWhite);
    opacity: 0.4;
  }
}

/*-- -------------------------- -->
<---     Sections (Details)     -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  .sicherheit-section {
    padding: var(--sectionPadding);
  }
  .sicherheit-section:nth-child(even) {
    background-color: #f7f7f7;
  }
  .sicherheit-section .cs-container {
    width: 100%;
    max-width: 60rem;
    margin: 0 auto;
  }
  .sicherheit-section .cs-section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--headerColor);
    margin: 0 0 1rem 0;
  }
  .sicherheit-section h3.cs-section-title {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin-top: 2rem;
  }
  .sicherheit-section .cs-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--bodyTextColor);
    margin: 0 0 1rem 0;
  }
  .sicherheit-section .cs-text:last-of-type {
    margin-bottom: 0;
  }
  .sicherheit-section .cs-list {
    margin: 1rem 0 0 0;
    padding: 0 0 0 1.25rem;
    list-style: none;
  }
  .sicherheit-section .cs-list li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--bodyTextColor);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 0;
  }
  .sicherheit-section .cs-list li::marker {
    color: var(--primary);
  }
  .sicherheit-section .cs-button-solid {
    margin-top: 1.5rem;
  }
  .sicherheit-section .cs-placeholder {
    background: rgba(0, 0, 0, 0.03);
    border: 1px dashed rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    color: var(--bodyTextColor);
    opacity: 0.6;
    font-style: italic;
    margin-top: 1rem;
  }
}

/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode .sicherheit-section:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.2);
  }
  body.dark-mode .sicherheit-section .cs-section-title {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode .sicherheit-section .cs-text {
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }
  body.dark-mode .sicherheit-section .cs-list li {
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }
  body.dark-mode .sicherheit-section .cs-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--bodyTextColorWhite);
    opacity: 0.4;
  }
}
