/**
 * Breadcrumbs2 Block Styles
 */

.breadcrumbs2-wrapper {
  margin-bottom: 30px;
}

/* Header section with background and title */
.breadcrumbs2-header {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.breadcrumbs2-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.breadcrumbs2-header .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs2-title {
  font-size: 36px;
  font-weight: 600;
  margin: 0;
  padding: 20px 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  .breadcrumbs2-header {
    min-height: 120px;
  }

  .breadcrumbs2-title {
    font-size: 24px;
  }
}

/* Breadcrumb trail section */
.breadcrumbs2-trail {
  background-color: #ffffff;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}

.breadcrumbs2-nav {
  display: block;
}

.breadcrumbs2-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.breadcrumbs2-item {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: #666666;
}

.breadcrumbs2-link {
  color: #1e3a5f;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumbs2-link:hover {
  color: #7DB2C2;
  text-decoration: underline;
}

.breadcrumbs2-separator {
  color: #cccccc;
  padding: 0 10px;
  font-weight: 300;
}

.breadcrumbs2-current {
  color: #999999;
  font-weight: 400;
}

.breadcrumbs2-item--active .breadcrumbs2-current {
  color: #666666;
}

/* Make sure container is responsive */
.breadcrumbs2-wrapper .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
