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

/* Video */
.S_BP-2025-video {
  max-width: 1360px;
}

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

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

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

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

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

/* Typography */
.S_BP-2025-title {
  margin: 0;
  font-family: 'SebastianSans-Expanded-VZfin';
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: .2px;
  color: #fff;
}
.S_BP-2025-text {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}

/* Section heading */
.S_BP-2025-text-container {
    text-align: center;
    max-width: 1360px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 18px;
    font-weight: 300;
    padding: 80px 40px 60px 40px;
}

@media only screen and (max-width: 767px) {
  .S_BP-2025-text-container {
      padding: 60px 0px 40px 0px;
  }
}

.S_BP-2025-h2 {
  color: #000;
  margin: 0 auto;
  font-family: 'SebastianSans-Expanded-VZfin';
  font-weight: 400;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.15;
}

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

.S_BP-2025-block--black .S_BP-2025-button:hover,
.S_BP-2025-block--gold .S_BP-2025-button:hover {
  background: #fff;
  color: #000;
}

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

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