.branch-list-container {
  gap: 32px;
  width: 100%;
  flex-wrap: wrap;
}

.branch-card {
  width: calc(50% - 16px);
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-radius: 20px;
  border: 1px solid var(--Stroke-Color);
  box-sizing: border-box;
}
.branch-card h2 {
  overflow: hidden;
  color: var(--primary-color);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}
.badge-group {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: nowrap;
  overflow-x: scroll;
  width: 100%;
  scrollbar-width: none;
}
.badge {
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--Secondary-Background-Color);
  white-space: nowrap;
  line-height: 22px;
}
.branch-btn {
  cursor: pointer;
  width: 100% !important;
  height: 48px !important;
  padding: 12px 16px;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 12px;
  border: 1px solid var(--Stroke-Color);
}
.branch-btn:hover {
  background: var(--primary-color);
}
.branch-btn:hover {
  color: var(--white) !important;
}
.branches-badge-group {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  overflow-x: scroll;
  width: 100%;
  scrollbar-width: none;
}
.branches-badge {
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.2px solid var(--Stroke-Color);
}
.branches-badge a {
  white-space: nowrap;
}
.branches-badge-active {
  border: 1.2px solid var(--Secondary-Background-Color, #f8ffe3);
  border-radius: 12px;
  background: var(--Secondary-Background-Color, #f8ffe3);
}
@media (max-width: 768px) {
  .branch-card {
    width: 100%;
  }
  .branches-badge-group {
    margin-top: 10px;
    margin-bottom: -32px;
    gap: 12px;
  }
  .branches-badge a {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .branches-badge {
    padding: 8px 12px;
  }
  .badge {
    font-size: 12px;
    line-height: 18px;
  }
  .branch-card {
    padding: 16px;
  }
  .branch-card h2 {
    font-size: 18px;
    line-height: 26px;
  }
  .branch-card p {
    font-size: 12px;
    line-height: 26px;
  }
  .branch-card img {
    width: 22px;
  }
  .branch-card h6 {
    font-size: 14px;
    line-height: 22px;
  }
  .branch-btn {
    height: 38px !important;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 22px;
  }
}
