﻿.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 60px;
  overflow: hidden;
}
 
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(20, 79, 80, 0.7) 100%);
}
 
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
 
.page-hero-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}
 
.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-breadcrumb li {
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}
.page-breadcrumb li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-breadcrumb li a:hover {
  color: var(--gold-on-dark);
}
.page-breadcrumb li.active {
  color: var(--gold-on-dark);
}
 
.page-breadcrumb-sep {
  display: inline-block;
  margin: 0 14px;
  color: var(--gold-on-dark);
  font-size: 14px;
  line-height: 1;
  user-select: none;
}
 
@media (max-width: 991.98px) {
  .page-hero {
    height: 320px;
    padding-bottom: 50px;
  }
}
@media (max-width: 575.98px) {
  .page-hero {
    height: 280px;
    padding-bottom: 40px;
  }
  .page-hero-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }
  .page-breadcrumb li {
    font-size: 11px;
    letter-spacing: 1px;
  }
  .page-breadcrumb-sep {
    margin: 0 10px;
  }
}
.pulse-intro {                                                                                                                                                                                                        font-family: "Montserrat", sans-serif;
    font-size: 15px;                                                                                                                                                                                                    font-weight: 400;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-muted);
  }

  .pulse-slider-outer {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .pulse-nav-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 0;
    border: 1px solid rgba(20, 79, 80, 0.4);
    background: transparent;
    color: var(--green);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
    z-index: 2;
  }
  .pulse-nav-btn:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: #fff;
  }
  .pulse-nav-btn:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
  }

  .pulse-slider-wrapper {
    overflow: hidden;
    flex: 1;
    min-width: 0;
  }

  .pulse-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .pulse-card {
    flex-shrink: 0;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
  }

  .pulse-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }

  .pulse-card:hover .pulse-card-img {
    transform: scale(1.05);
  }

  .pulse-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.8) 100%);
  }

  .pulse-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px;
    z-index: 2;
  }

  .pulse-card-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.25;
    color: #fff !important;
    margin-bottom: 20px;
  }

  .pulse-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    background: var(--gold-on-dark);
    color: var(--green);
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
  }
  .pulse-card-btn:hover {
    background: var(--green-hover);
    color: #fff;
  }

  @media (max-width: 991.98px) {
    .pulse-card { height: 340px; }
    .pulse-card-title { font-size: 1.4rem; margin-bottom: 16px; }
    .pulse-card-body { padding: 28px; }
    .pulse-section { padding: 80px 0 70px; }
    .pulse-header { margin-bottom: 40px; }
    .pulse-nav-btn { width: 40px; height: 40px; font-size: 13px; }
  }
  @media (max-width: 575.98px) {
    .pulse-slider-outer {
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
    }
    .pulse-slider-wrapper {
      order: 1;
      flex-basis: 100%;
      width: 100%;
    }
    .pulse-nav-btn {
      order: 2;
      width: 40px;
      height: 40px;
      font-size: 13px;
    }
    .pulse-card { height: 300px; border-radius: 6px; }
    .pulse-card-body { padding: 20px; }
    .pulse-card-title { font-size: 1.05rem; line-height: 1.25; margin-bottom: 12px; }
    .pulse-card-btn { font-size: 12px; padding: 10px 20px; letter-spacing: 1px; }
    .pulse-section { padding: 60px 0 50px; }
.pulse-card-label {
    top: 12px;
    right: 12px;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 5px 10px;
    max-width: calc(100% - 24px);
  }
  }

  .pulse-card-label {
position: absolute;
top: 16px;
right: 16px;
    z-index: 3;
    max-width: calc(100% - 32px);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green);
    background: rgba(255, 255, 255, 0.92);
    padding: 6px 14px;
    border-radius: 2px;
    backdrop-filter: blur(4px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }