/** Shopify CDN: Minification failed

Line 147:16 Expected identifier but found whitespace
Line 147:18 Unexpected "{"
Line 147:27 Expected ":"
Line 147:79 Expected ":"
Line 148:19 Expected identifier but found whitespace
Line 148:21 Unexpected "{"
Line 148:30 Expected ":"
Line 148:85 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:radbag-anlass-kategorien (INDEX:31) */
/* =============================================
   ANLASS-KATEGORIEN — Shopify Section CSS
   Font: Poppins (wie im radbag Prototyp)
   ============================================= */

.anlass-section {
  font-family: 'Poppins', sans-serif;
  background-color: #EBF5F7;
}

.anlass-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ---- Header ---- */
.anlass-sec-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.anlass-sec-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #1C1C1C;
  margin: 0;
  line-height: 1.2;
}

.anlass-see-all {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #4A8FA0;
  text-decoration: none;
  transition: color 0.15s;
}

.anlass-see-all:hover {
  color: #1C1C1C;
}

/* ---- Grid ---- */
.anlass-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* ---- Card ---- */
.anlass-card {
  display: block;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #E8E3DE;
  cursor: pointer;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
  position: relative;
  background: #fff;
}

.anlass-card:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
}

/* ---- Bild ---- */
.anlass-card__img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 320px;
}

.anlass-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.72);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.anlass-card__img--placeholder {
  width: 100%;
  height: 100%;
  background-color: #EBF5F7;
}

.anlass-card:hover .anlass-card__img {
  transform: scale(1.04);
  filter: brightness(0.9);
}

/* ---- Text-Overlay ---- */
.anlass-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 12px 10px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
}

.anlass-card__label {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 1px;
  line-height: 1.2;
}

.anlass-card__count {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
  margin: 0;
}

/* ---- Mobile ---- */
@media screen and (max-width: 749px) {
  .anlass-section {
    padding-top: {{ section.settings.padding_top | divided_by: 1.5 | round }}px;
    padding-bottom: {{ section.settings.padding_bottom | divided_by: 1.5 | round }}px;
  }
  .anlass-wrap {
    padding: 0 16px;
  }
  .anlass-sec-hdr {
    margin-bottom: 14px;
  }
  .anlass-sec-title {
    font-size: 17px;
  }
  .anlass-see-all {
    font-size: 12px;
  }
  .anlass-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .anlass-card__img-wrap {
    height: 170px;
  }
  .anlass-card__label {
    font-size: 13px;
  }
}
/* END_SECTION:radbag-anlass-kategorien */