/**
 * Safety disclaimer section, Begehbares Glas
 * Editorial "manifesto" layout with outlined numerals + real SVG icons.
 * Light sky-blue background — distinct surface signaling "important info"
 * while staying within the brand palette.
 */

.bg-safety-section {
    background: #e0f2fe;            /* sky-100, faded blue */
    color: #2a2520;                 /* sky-900 for primary text on this bg */
    border-top: 1px solid rgba(192, 128, 112, 0.18);
    border-bottom: 1px solid rgba(192, 128, 112, 0.18);
    padding: clamp(4rem, 7vw, 6rem) var(--ts-space-xl);
    position: relative;
}

.bg-safety-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(
        45deg,
        #c08070 0px, #c08070 18px,
        #e0f2fe 18px, #e0f2fe 36px
    );
}

.bg-safety-container {
    max-width: var(--ts-max-width);
    margin: 0 auto;
}

.bg-safety-header {
    margin-bottom: 3rem;
    max-width: 720px;
}

.bg-safety-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--ts-font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c08070;
    margin-bottom: 1rem;
}

.bg-safety-label svg {
    flex-shrink: 0;
}

.bg-safety-title {
    font-family: var(--ts-font-display);
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: #2a2520;
    margin: 0 0 1rem;
}

.bg-safety-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #155e75;
    max-width: 56ch;
    margin: 0;
}

.bg-principles {
    border-top: 1px solid rgba(192, 128, 112, 0.22);
    margin: 0;
    padding: 0;
    list-style: none;
}

.bg-principle {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    padding: 2.2rem 0;
    border-bottom: 1px solid rgba(192, 128, 112, 0.22);
    align-items: start;
}

.bg-principle-num {
    font-family: var(--ts-font-display);
    font-weight: 700;
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: transparent;
    -webkit-text-stroke: 1.5px #c08070;
    text-stroke: 1.5px #c08070;
}

.bg-principle-body {
    max-width: 720px;
}

.bg-principle-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.7rem;
}

.bg-principle-head svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    stroke: #c08070;
    stroke-width: 1.6;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bg-principle-head h3 {
    font-family: var(--ts-font-display);
    font-weight: 600;
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    color: #2a2520;
    letter-spacing: -0.015em;
    line-height: 1.25;
    margin: 0;
}

.bg-principle-text {
    font-size: 0.98rem;
    color: #155e75;
    line-height: 1.65;
    max-width: 65ch;
    margin: 0;
}

.bg-safety-disclaimer {
    margin-top: 2.5rem;
    padding: 1.1rem 1.5rem;
    background: rgba(192, 128, 112, 0.06);
    border-left: 3px solid #c08070;
    font-size: 0.88rem;
    color: #155e75;
    line-height: 1.6;
    font-style: italic;
}

@media (max-width: 640px) {
    .bg-principle {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 1.75rem 0;
    }
    .bg-principle-num {
        font-size: 2.5rem;
    }
}
