.branchCard2 {
  position: relative;
  height: 100%;
  border-radius: 18px;
  padding: 16px 16px 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 45px rgba(2, 20, 18, 0.08);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.branchCard2::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(4, 163, 154, 0.14),
      transparent 42%
    ),
    radial-gradient(
      circle at 85% 20%,
      rgba(0, 132, 255, 0.12),
      transparent 40%
    ),
    linear-gradient(120deg, rgba(4, 163, 154, 0.08), rgba(0, 132, 255, 0.06));
  opacity: 0;
  transition: 0.25s ease;
  pointer-events: none;
}

.branchCard2:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(2, 20, 18, 0.14);
  border-color: rgba(4, 163, 154, 0.3);
}
.branchCard2:hover::before {
  opacity: 1;
}

.branchCard2__top {
  display: flex;
  gap: 12px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.branchCard2__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(4, 163, 154, 0.12);
  color: var(--secondary-color);
  flex: 0 0 auto;
  font-size: 18px;
}

.branchCard2__title h5 {
  font-weight: 900;
  color: rgba(0, 0, 0, 0.82);
  letter-spacing: -0.01em;
}

.branchCard2__meta {
  margin-top: 6px;
}

.chip {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.75);
  color: rgba(0, 0, 0, 0.65);
}
.chip i {
  opacity: 0.8;
}

.branchCard2__dates {
  margin-top: 14px;
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.dateItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px dashed rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.7);
}

/* LEFT SIDE */
.dateItem__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dateItem__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 132, 255, 0.8);
  box-shadow: 0 0 0 4px rgba(0, 132, 255, 0.14);
  flex-shrink: 0;
}
.dateItem__date {
  font-weight: 700;
  color: rgba(0, 0, 0, 0.75);
  font-size: 14px;
}

.dateItem__badge {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}



.branchCard2__footer {
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

.branchBtn{
  width: 100%;
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(4,163,154,0.95), rgba(0,132,255,0.95));
  color: black;
  font-weight: 850;
  text-decoration:none;
  transition: .2s ease;
}
.branchBtn:hover{
  filter: brightness(1.05);
  color: #fff;
}

@media (max-width: 575px) {
  .branchCard2 {
    padding: 14px;
  }
  .branchCard2__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
}
