/* ===== GHD Brand Page (2025) ===== */

/* Layout grid */
.GHD_BP-2025-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.GHD_BP-2025-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  overflow: hidden;
}

/* Responsive columns */
@media (min-width: 640px) {
  .GHD_BP-2025-card { width: calc(50% - 10px); }
}
@media (min-width: 1024px) {
  .GHD_BP-2025-card { width: calc(33.333% - 13.333px); }
}

/* Media area */
.GHD_BP-2025-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.GHD_BP-2025-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Content block */
.GHD_BP-2025-block {
  padding: 20px;
}
.GHD_BP-2025-block--black {
  background: #000;
  color: #fff;
}
.GHD_BP-2025-block--gold {
  background: #8c734b;
  color: #fff;
}

/* Typography */
.GHD_BP-2025-title {
  margin: 0 0 12px 0;
  font-family: 'ABCROMCompressed-Black', sans-serif;
  text-transform: uppercase;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: .2px;
  color: #fff;
}
.GHD_BP-2025-text {
  margin: 0 0 16px 0;
  font-family: 'ABCROMMono-Book', monospace;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}

/* Section heading */
.GHD_BP-2025-h2 {
  color: #8c734b;
  line-height: 80px;
  margin: 0 auto;
  font-family: 'ABCROMCompressed-Black';
  font-size: 80px;
}

/* Buttons */
.GHD_BP-2025-button {
  display: inline-block;
  color: #fff;
  padding: 0.8rem 1.6rem;
  background-color: #8c734b;
  text-decoration: none;
  font-size: 16px;
  width: max-content;
  cursor: pointer;
  transition: background .3s ease, color .3s ease;
  margin: 20px 20px 0 20px;
  border: 0;
  line-height: 1.6;
}
.GHD_BP-2025-block--black .GHD_BP-2025-button,
.GHD_BP-2025-block--gold .GHD_BP-2025-button {
  background: #fff;
  color: #000;
}
.GHD_BP-2025-button:hover {
  background: #000;
  color: #fff;
}

/* Hero image wrappers */
.GHD_BP-2025-image-wrapper {
  display: none;
  width: 100%;
  height: auto;
}
.GHD_BP-2025-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center bottom;
}
@media (min-width: 769px) { .GHD_BP-2025-image-desktop { display: block; } }
@media (max-width: 768px) { .GHD_BP-2025-image-mobile { display: block; } }

/* Responsive text */
@media (max-width: 480px) {
  .GHD_BP-2025-title {
    font-size: 38px;
    line-height: 44px;
  }
  .GHD_BP-2025-h2 {
    font-size: 48px;
    line-height: 58px;
  }
}