/** Shopify CDN: Minification failed

Line 16:10 Unexpected "{"
Line 16:19 Expected ":"
Line 16:26 Unexpected "{"
Line 21:12 Unexpected "{"
Line 21:21 Expected ":"
Line 28:12 Unexpected "{"
Line 28:21 Expected ":"
Line 35:12 Unexpected "{"
Line 35:21 Expected ":"
Line 42:12 Unexpected "{"
... and 27 more hidden warnings

**/
.pop-col-{{ section.id }} {
    /* padding: 40px 20px; */
    max-width: 1200px;
    margin: 0 auto;
  }
  .pop-col-{{ section.id }} .pc-heading {
    font-family: var(--heading-font-family);
font-weight: var(--heading-font-weight);
text-align: center;
    font-size:30px;
    margin: 20px 60px;
  }
  .pop-col-{{ section.id }} .pc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
     margin: 20px 20px;
  }
  .pop-col-{{ section.id }} .pc-tile {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    background: #f3f0fb;
  }
  .pop-col-{{ section.id }} .pc-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
   
  }
  /* size variants */
  .pop-col-{{ section.id }} .pc-tall { grid-row: span 2; }
  .pop-col-{{ section.id }} .pc-wide { grid-column: span 2; }
  /* hover overlay */
  .pop-col-{{ section.id }} .pc-overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to top, rgba(0,0,0,.55), transparent);
    color: #fff;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .3s ease, transform .3s ease;
  }
  .pop-col-{{ section.id }} .pc-tile:hover .pc-overlay {
    opacity: 1;
    transform: translateY(0);
  }
  .pop-col-{{ section.id }} .pc-title { font-weight: 600; font-size: 26px; }
  .pop-col-{{ section.id }} .pc-arrow {
    font-size: 1.3rem;
    transition: transform .3s ease;
  }
  .pop-col-{{ section.id }} .pc-tile:hover .pc-arrow { transform: translateX(4px); }
  @media (max-width: 749px) {
    .pop-col-{{ section.id }} .pc-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .pop-col-{{ section.id }} .pc-tall,
    .pop-col-{{ section.id }} .pc-wide { 
      grid-row: span 1;
       /* grid-column: span 1;  */
      }
    .pop-col-{{ section.id }} .pc-overlay { opacity: 1; transform: none; } /* always show on mobile */
  }
  @media screen and (max-width: 749px) {
  .pc-title {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 749px) {

  .pop-col-{{ section.id }} .pc-heading{
    font-size: 28px;
    margin: 20px;
    text-align: center;
    line-height: 1.3;
  }

  .pop-col-{{ section.id }} .pc-title{
    font-size: 20px;
    line-height: 1.3;
  }

}