/* ===== Brand Page Grid (WELLA_BP-2025) ===== */

/* Optional wrapper rule (keep if you need to hide default content) */
.id-XXXX .content-wrapper-in { 
  display: none;
}

/* Grid shell */
.WELLA_BP-2025-grid {
  display: grid;
  gap: 0px;
  grid-template-columns: 1fr;
}

/* Tablet */
@media (min-width: 640px) {
  .WELLA_BP-2025-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .WELLA_BP-2025-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card */
.WELLA_BP-2025-card {
  overflow: hidden;
  background: #fff;
  display: grid;
  grid-template-rows: 1fr auto;
  /* image on top, text block below */
}

/* Media */
.WELLA_BP-2025-media {
  position: relative;
  aspect-ratio: 16 / 9;
  /* keeps a nice crop; adjust as needed */
  background: #f2f2f2;
}

.WELLA_BP-2025-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Bottom block (black or red) */
.WELLA_BP-2025-block {
  padding: 40px;
}

.WELLA_BP-2025-block--black {
  background: #000;
  color: #fff;
}

.WELLA_BP-2025-block--red {
  background: #ff2000;
  color: #fff;
}

/* Title — mirrors .SC-2025-text h3 style */
.WELLA_BP-2025-title {
  margin: 0 0 12px 0;
  font-family: 'ABCROMCompressed-Black', sans-serif;
  text-transform: uppercase;
  font-size: 48px;
  line-height: 56px;
  color: #fff;
  letter-spacing: 0.2px;
}

/* Copy */
.WELLA_BP-2025-text {
  margin: 0 0 16px 0;
  font-family: 'ABCROMMono-Book', monospace;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}

/* Button */
.WELLA_BP-2025-button {
  display: inline-block;
  color: #fff;
  padding: 0.8rem 1.6rem;
  background-color: #ff2000;
  text-decoration: none;
  font-size: 16px;
  width: max-content;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  margin: 20px 20px 0 20px;
}

.WELLA_BP-2025-block--black .WELLA_BP-2025-button {
  background: #fff;
  color: #000;
}

.WELLA_BP-2025-block--red .WELLA_BP-2025-button {
  background: #fff;
  color: #000;
}

.WELLA_BP-2025-button:hover {
  background: #000;
  color: #fff;
}

/* Responsive type */
@media (max-width: 480px) {
  .WELLA_BP-2025-title {
    font-size: 40px;
    line-height: 44px;
  }
}


/* Hero Image Wrappers (replace old video) */
.WELLA_BP-2025-image-wrapper {
  display: none;
  width: 100%;
  height: auto;
}

.WELLA_BP-2025-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center bottom; /* scales from bottom */
  display: block;
}

/* Desktop shows desktop img */
@media (min-width: 769px) {
  .WELLA_BP-2025-image-desktop { display: block; }
}

/* Mobile shows mobile img */
@media (max-width: 768px) {
  .WELLA_BP-2025-image-mobile { display: block; }
}