.sre-card {
    max-width: 900px;
    margin: 40px auto;
    background: #fffdf7;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 30px 70px rgba(0,0,0,.12);
    font-family: system-ui, -apple-system, sans-serif;
  }
  
  .sre-header {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
  }
  
  .sre-image {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
  }
  
  .sre-title {
    font-size: 32px;
    margin-bottom: 8px;
  }
  
  .sre-summary {
    color: #555;
  }
  
  .sre-actions button {
    background: #7c8b2e;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 20px;
    cursor: pointer;
  }
  
  .sre-times {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 30px 0;
    text-align: center;
  }
  
  .sre-times div {
    padding: 14px;
  }
  
  .sre-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .sre-pill {
    background: #7c8b2e;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
  }
  
  .sre-section {
    margin-bottom: 32px;
  }
  
  .sre-section h2 {
    color: #7c8b2e;
    border-left: 4px solid #7c8b2e;
    padding-left: 12px;
  }
  
  .sre-section ul,
  .sre-section ol {
    padding-left: 20px;
  }
  
  .sre-nutrition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(140px,1fr));
    gap: 12px;
  }
  
  @media (max-width: 768px) {
    .sre-header {
      grid-template-columns: 1fr;
    }
  }
  

  .sre-nav {
    position: sticky;
    top: 20px;
    background: #fffdf7;
    display: flex;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    z-index: 10;
  }
  
  .sre-nav a {
    text-decoration: none;
    color: #7c8b2e;
    font-weight: 600;
  }
  
  .sre-scale {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .sre-scale button {
    border: 1px solid #7c8b2e;
    background: transparent;
    padding: 6px 12px;
    border-radius: 14px;
    cursor: pointer;
  }
  