/** Shopify CDN: Minification failed

Line 22:12 Expected identifier but found whitespace
Line 22:14 Unexpected "{"
Line 22:23 Expected ":"
Line 22:50 Unexpected "0"
Line 22:53 Unexpected "{"
Line 22:62 Expected ":"
Line 22:91 Expected ":"
Line 27:8 Expected identifier but found whitespace
Line 27:10 Unexpected "{"
Line 27:19 Expected ":"
... and 5 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:themenwelten-grid (INDEX:51) */
.themenwelten-grid {
    padding: {{ section.settings.padding_top }}px 0 {{ section.settings.padding_bottom }}px;
  }
  .themenwelten-grid__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: {{ section.settings.gap }}px;
  }
  .themenwelten-grid__link {
    display: block;
    overflow: hidden;
    border-radius: {{ section.settings.border_radius }}px;
  }
  .themenwelten-grid__image,
  .themenwelten-grid__placeholder {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }
  .themenwelten-grid__link:hover .themenwelten-grid__image,
  .themenwelten-grid__link:hover .themenwelten-grid__placeholder {
    transform: scale(1.03);
  }
  @media (max-width: 749px) {
    .themenwelten-grid__container {
      grid-template-columns: 1fr;
    }
  }
/* END_SECTION:themenwelten-grid */