.pbf-fleet {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin: 24px 24px;
}

.pbf-card {
  display: flex;
  flex-direction: column;
  background: #f4efe7;
  border: 1px solid #b0a28e;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(63, 48, 31, 0.08);
}

.pbf-card-media {
  background: #000;
  position: relative;
  height: 480px;
}

.pbf-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.pbf-carousel {
  position: relative;
  background: #000;
  height: 100%;
}

.pbf-carousel-track {
  position: relative;
  height: 100%;
}

.pbf-carousel-slide {
  display: none;
  margin: 0;
  height: 100%;
  background: #000;
}

.pbf-carousel-slide.is-active {
  display: block;
}

.pbf-carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(47, 43, 38, 0.74);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.pbf-carousel-button-prev {
  left: 14px;
}

.pbf-carousel-button-next {
  right: 14px;
}

.pbf-carousel-dots {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.pbf-carousel-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  cursor: pointer;
}

.pbf-carousel-dot.is-active {
  background: #ffffff;
}

.pbf-card-body {
  padding: 26px 28px 24px;
  font-family: Verdana, sans-serif;
  color: #2d261f;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.pbf-card-header {
  margin-bottom: 18px;
}

.pbf-kicker {
  margin: 0 0 8px;
  color: #356c59;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pbf-title {
  margin: 0;
  color: #2f2b26;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.1;
}

.pbf-year {
  margin: 10px 0 0;
  color: #6f6457;
  font-size: 0.95rem;
}

.pbf-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}

.pbf-fact {
  background: #efe6d9;
  border: 1px solid #cabba9;
  border-radius: 16px;
  padding: 12px 14px;
}

.pbf-fact dt {
  margin: 0 0 4px;
  color: #356c59;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pbf-fact dd {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.35;
}

.pbf-summary p {
  margin: 0 0 18px;
  line-height: 1.7;
}

.pbf-editorial-copy {
  margin-top: 14px;
}

.pbf-editorial-copy p {
  margin: 0 0 14px;
  line-height: 1.72;
}

.pbf-section {
  margin-top: 18px;
}

.pbf-section h4 {
  margin: 0 0 10px;
  color: #356c59;
  font-size: 0.98rem;
  font-weight: 700;
}

.pbf-section ul {
  margin: 0;
  padding-left: 18px;
}

.pbf-section li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.pbf-actions {
  margin-top: auto;
  padding-top: 22px;
  text-align: center;
}

.pbf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #356c59;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.pbf-button:hover,
.pbf-button:focus {
  background: #2f5e4d;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .pbf-fleet {
    grid-template-columns: 1fr;
    margin: 24px 18px;
  }

  .pbf-card {
    grid-template-columns: 1fr;
  }

  .pbf-card-image {
    height: 360px;
  }
}

@media (max-width: 640px) {
  .pbf-fleet {
    margin: 20px 12px;
  }

  .pbf-card-body {
    padding: 20px 18px;
  }

  .pbf-facts {
    grid-template-columns: 1fr;
  }
}
