/** Shopify CDN: Minification failed

Line 18:12 Expected identifier but found whitespace
Line 18:14 Unexpected "{"
Line 18:23 Expected ":"
Line 18:50 Unexpected "20px"
Line 18:56 Unexpected "{"
Line 18:65 Expected ":"
Line 18:94 Expected ":"
Line 19:21 Expected identifier but found whitespace
Line 19:23 Unexpected "{"
Line 19:32 Expected ":"
... and 9 more hidden warnings

**/

  .med-details-section {
    padding: {{ section.settings.padding_top }}px 20px {{ section.settings.padding_bottom }}px;
    background-color: {{ section.settings.bg_color }};
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  }

  .med-details-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
  }

  .med-details-header h2 {
    color: #1a2b3c;
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .med-details-header p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .med-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .med-item-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e1e8ed;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
  }

  .med-item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: {{ section.settings.accent_color }};
  }

  .med-icon-wrapper {
    width: 50px;
    height: 50px;
    background: {{ section.settings.accent_color | color_modify: 'alpha', 0.1 }};
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .med-icon-wrapper svg {
    width: 28px;
    height: 28px;
    fill: {{ section.settings.accent_color }};
  }

  .med-item-card h3 {
    margin: 0 0 12px 0;
    color: #1a2b3c;
    font-size: 1.3rem;
  }

  .med-item-card p {
    margin: 0;
    color: #666;
    line-height: 1.5;
    font-size: 1rem;
  }

  @media (max-width: 768px) {
    .med-details-header h2 { font-size: 1.8rem; }
    .med-grid { grid-template-columns: 1fr; }
  }
