/** Shopify CDN: Minification failed

Line 83:18 Expected ":"
Line 83:26 Unterminated string token

**/
.aswc-post {
    --primary: hsl(208, 96%, 30%);
    --dark: hsl(0, 16%, 6%);
    --dark-grey: hsl(0, 0%, 16%);
    --light-bg: hsl(45, 29%, 97%);
    --border: hsl(0, 0%, 91%);
    --text: hsl(0, 16%, 6%);
    --text-light: hsl(0, 0%, 45%);
    --pc-teal: hsl(186, 100%, 30%);
    --blue: hsl(208, 96%, 30%);
    --shadow: 0 1px 15px rgba(0,0,0,8%);
    line-height: 1.777;
    max-width:980px;
    margin: 0 auto;
  }

  .aswc-post h2 {
    color: var(--pc-teal);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 2.5rem 0 1rem;
   padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
  }

  .aswc-post h3 {
    color: var(--pc-dark-grey);
    margin: 1.75rem 0 0.75rem;
  }

  .aswc-post p {
    margin-bottom: 1.25rem;
     line-height: 1.8;
  }

  .aswc-post ul {
    margin: 0.75rem 0 1.5rem 1.5rem;
    padding: 0;
  }

  .aswc-post ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
  }
  .aswc-post-img{
    margin: 2rem auto; 
    border-radius: 8px; 
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  @media (min-width:768px){
   .aswc-post-img{
     width: auto;
     height:640px;
   }
  }
  .aswc-post-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display: block;
  }

  /* AUTHOR BYLINE */
  .aswc-byline {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--light-bg);
    border-left: 3px solid var(--pc-dark-grey);
    margin-bottom: 2rem;
    border-radius: 0 6px 6px 0;
    justify-content:center;
    text-align:center;
    flex-direction"column;
  }
 
  .aswc-byline-text {
    color: var(--text-light);
    line-height: 1.5;
  }
.aswc-byline p{
  margin-bottom:4px;
}
  .aswc-byline-text strong {
    color: var(--primary);
    display: block;
    font-size: 0.95rem;
  }

  /* HIGHLIGHT BOX */
  .aswc-highlight {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-left: 4px solid var(--pc-dark-grey);
    padding: 20px 24px;
    margin: 1.5rem 0;
    border-radius: 0 6px 6px 0;
  }

  .aswc-highlight p {
    margin: 0;
    color: var(--dark-grey);
  }

  .aswc-highlight strong {
    color: var(--primary);
  }

  /* TREATMENT CARDS */
  .aswc-treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin: 1.5rem 0 2rem;
  }

  .aswc-treatment-card {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
    padding: 18px 20px;
    border-radius: 0 0 6px 6px;
  }

  .aswc-treatment-card h3 {
     color: var(--primary);
    text-transform: uppercase;
    margin: 0 0 6px;
    font-size:1.2rem;
  }

  .aswc-treatment-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.55;
  }

  .aswc-treatment-card .detail {
    color: var(--pc-dark-grey);
    font-weight: 600;
    margin-top: 8px;
    display: block;
  }

  /* SPF WARNING BOX */
  .aswc-warning {
    background: hsl(208, 96%, 97%);
    border: 1px solid hsl(208, 60%, 80%);
    border-left: 4px solid var(--primary);
    padding: 20px 24px;
    margin: 1.5rem 0;
    border-radius: 0 6px 6px 0;
  }

  .aswc-warning .aswc-warning-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
  }

  .aswc-warning p {
    margin: 0;
    color: var(--dark-grey);
  }

  .aswc-warning ul {
    margin: 0.5rem 0 0 1.25rem;
  }

  .aswc-warning ul li {
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
  }

  /* FAQ */
  .aswc-faq {
    margin: 2rem 0;
  }

  .aswc-faq-item {
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-bottom: 8px;
    overflow: hidden;
  }

  .aswc-faq-q {
    width: 100%;
    background:var(--pc-soft-silver);
    border: none;
    padding: 16px 20px;
    text-align: left;
    cursor: pointer;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
    gap: 12px;
    font-size:0.85rem;
  }

  .aswc-faq-q:hover { background: var(--light-bg); }

  .aswc-faq-q.active {
    background: var(--text-light);
    color: white;
  }

  .aswc-faq-chevron {
    transition: transform 0.3s;
    flex-shrink: 0;
    color: var(--pc-dark-grey);
  }

  .aswc-faq-q.active .aswc-faq-chevron {
    transform: rotate(180deg);
    color: white;
  }

  .aswc-faq-a {
    display: none;
    padding: 16px 20px;
    background: var(--light-bg);
    color: var(--dark-grey);
    line-height: 1.75;
    border-top: 1px solid var(--border);
  }

  .aswc-faq-a.open { display: block; }

  /* CTA BLOCK */
  .aswc-cta {
    background: var(--pc-icy-blue);
    padding: 40px 36px;
    text-align: center;
    border-radius: 8px;
    margin: 2.5rem 0;
    font-size:.85rem;
  }

  .aswc-cta h3 {
    color: var(--dark-grey);
    font-size: 1.4rem;
    margin: 0 0 10px;
    font-weight: 600;
    text-transform: none;
    border: none;
    padding: 0;
  }

  .aswc-cta p {
    color: var(--dark-grey);
    margin-bottom: 20px;
  }

  .aswc-cta-details {
    margin-bottom: 24px;
     font-size:.85rem;
  }

  .aswc-cta-detail {
   color: var(--dark-grey);
    margin-bottom: 6px;
  }

  .aswc-cta-detail a {
    text-decoration: none;
    font-weight: 600;
  }

  .aswc-btn {
    display: inline-block;
    background: hsl(186, 100%, 22%);
    color: white;
    padding: 13px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
  }

  .aswc-btn:hover {
    background: black;
    color: white;
  }

  /* DISCLAIMER */
  .aswc-disclaimer {
    color: var(--text-light);
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
    margin-top: 2rem;
    font-style: italic;
    line-height: 1.6;
  }

  @media (max-width: 600px) {
    .aswc-treatment-grid { grid-template-columns: 1fr; }
    .aswc-cta { padding: 28px 20px; }
  }