/** Shopify CDN: Minification failed

Line 34:15 Expected identifier but found whitespace
Line 34:17 Unexpected "{"
Line 34:26 Expected ":"

**/
  .safety-bp-wrapper {
    max-width: 1200px;
    margin: 0 auto;
  }

  .safety-bp-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .safety-bp-header h2 {
    font-size: 2.2rem;
    color: #1a2b3c;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

  .safety-bp-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: {{ section.settings.accent_color }};
    border-radius: 2px;
  }

  .safety-bp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
  }

  .safety-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
  }

  .safety-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  @keyframes medPulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.6); opacity: 0; }
  }

  .safety-icon-box svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
    z-index: 1;
  }

  .safety-card h3 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin: 0 0 12px 0;
  }

  .safety-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
  }

  @media (max-width: 768px) {
    .safety-bp-grid { grid-template-columns: 1fr; }
  }