/** Shopify CDN: Minification failed

Line 56:10 Unexpected "{"
Line 56:19 Expected ":"
Line 63:10 Unexpected "{"
Line 63:19 Expected ":"
Line 182:12 Unexpected "{"
Line 182:21 Expected ":"
Line 201:12 Unexpected "{"
Line 201:21 Expected ":"
Line 209:12 Unexpected "{"
Line 209:21 Expected ":"

**/
/* ==========================================================================
   Skin Concern Section Base Layout
   ========================================================================== */
.hdt-section-skin-concern {
  padding: 80px 0;
  box-sizing: border-box;
}

/* Header Text Alignments & Typo */
.concern-header {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
}

.concern-subtitle {
  display: block;
  font-size: var(--sub-title-size);
  color: #C9A227; /* Golden Accent style kept across layouts */
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.concern-heading {
  font-size: var(--heading-size);
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}

.concern-description {
  font-size: var(--desc-size);
  line-height: 1.6;
  color: #4A4A4A;
  max-width: 580px;
}

/* Grid Layout Matrix */
.section-{{ section.id }} .concern-grid.hdt-row {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr); /* Clean 2-column desktop matrix layout */
  gap: 24px;
}

/* Reset theme frameworks structural properties so the grid can dictate dimensions */
.section-{{ section.id }} .concern-grid-item.hdt-col {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  padding-inline-start: 0 !important;
  padding-inline-end: 0 !important;
}

/* Full clickable Card Wrapper Styling */
.concern-card-link-wrapper {
  text-decoration: none;
  display: block;
  height: 100%;
}

/* Card Micro-Architecture */
.concern-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Treatment */
.concern-card-link-wrapper:hover .concern-card {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(29, 58, 107, 0.06);
}

/* Icon Container Shape and Tint Box */
.card-image-wrapper {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background-color: #FFF6D6; /* Warm subtle gold tint box for icons */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.card-icon-placeholder {
  width: 32px;
  height: 32px;
  opacity: 0.4;
}

/* Content Hierarchy inside Card */
.card-content {
  flex-grow: 1;
}

.concern-card .card-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 6px 0;
}

.card-card-desc {
  font-size: 14px;
  line-height: 1.4;
  color: #666666;
  margin: 0;
}

/* ==========================================================================
   Responsive Breakpoints & Adjustments
   ========================================================================== */
@media (max-width: 991px) {
  .hdt-section-skin-concern {
    padding: 60px 0;
  }
  .concern-header {
    margin-bottom: 40px;
  }
  .concern-card {
    padding: 24px 20px;
    gap: 16px;
  }
  .card-image-wrapper {
    width: 56px;
    height: 56px;
  }
  .card-icon {
    width: 26px;
    height: 26px;
  }
  .concern-card .card-title {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .hdt-section-skin-concern {
    padding: 50px 0;
  }
  .concern-grid {
    row-gap: 16px;
  }
  .concern-card {
    flex-direction: row;
    align-items: center;
  }
  .section-{{ section.id }} .concern-grid.hdt-row {
    display: flex !important; /* Converts grid to a flexible rail layout for dragging */
    flex-wrap: nowrap !important; /* Prevents rows from dropping downwards */
    overflow-x: auto !important; /* Allows native touch/swipe sliding horizontal navigation */
    overflow-y: hidden;
    scroll-snap-type: x mandatory; /* Makes cards elegantly snap to layout viewports */
    scroll-behavior: smooth;
    
    /* Extra padding to protect the hdt-container borders on slide overhang */
    padding-left: 16px !important;
    padding-right: 16px !important;
    
    gap: 16px; /* Space between sliding columns */
    
    /* Hiding technical desktop scrollbars across modern view engines */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }

  .section-{{ section.id }} .concern-grid.hdt-row::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }

  /* 
     Calculating card width to show exactly 1st column 100% and 
     the 2nd column 25% cutting off gracefully over the edge 
  */
  .section-{{ section.id }} .concern-grid-item.hdt-col {
    flex: 0 0 calc(88% - 16px) !important; /* Forces the active item to map safely */
    scroll-snap-align: start; /* Locks down target element during drag release */
    box-sizing: border-box;
  }
}