.business-program-cards {
  margin-top: 24px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.business-program-card {
  border: 1px solid #ddd0ff;
  border-radius: 20px;
  padding: 16px;
  width: calc(50% - 12px);
  background: var(--white);
}
/* .business-program-card:hover {
    border: 1px solid var(--purple);
} */

.business-program-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.culture-program-card-tag {
  display: flex;
  align-items: center;
  gap: 3px;
  border-radius: 5px;
  padding: 4px 8px 6px 7px;
  background: var(--red);
}
.culture-program-card-tag:nth-child(2) {
  background: var(--blue);
}
.culture-program-card-tag:nth-child(3) {
  background: var(--yellow);
}

.culture-program-card-tag-icon {
  width: 12px;
  height: 12px;
}

.culture-program-card-tag-text {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 10px;
  line-height: 140%;
  color: var(--light);
}

.culture-program-card-tag:nth-child(3) .culture-program-card-tag-text {
  color: var(--dark);
}

.business-program-card-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  color: var(--dark);
  margin-top: 8px;
}

.business-program-card-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  color: #868686;
  margin-top: 4px;
}

.business-program-card-speakers {
  margin-top: 8px;
}

.business-program-card-speakers-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  color: #868686;
}

.business-program-card-speakers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.business-program-card-speakers-list-item {
  display: flex;
  gap: 8px;
  align-items: center;
}

.business-program-card-speakers-list-item-image {
  border-radius: 10px;
  width: 48px;
  height: 48px;
  overflow: hidden;
}

.business-program-card-speakers-list-item-name {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: var(--dark);
}

.business-program-card-speakers-list-item-position {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 133%;
  color: #868686;
}

.business-program-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.filters {
  margin-top: 20px;
  display: flex;
  gap: 9px;
}

.filter-item {
  flex: 1;
}

.switch {
  display: flex;
  margin-top: 32px;
}

.switch-button {
  border-radius: 12px;
  padding: 6px 0px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 50%;
}

.switch-button-text {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 24px;
  text-align: center;
}

.switch-button.active .switch-button-text {
  color: var(--light);
}
.switch-button.active .switch-button-icon svg path {
  fill: var(--light);
}

.switch-button:nth-child(1) {
  color: var(--purple);
}
.switch-button:nth-child(1).active {
  background: var(--purple);
}

.switch-button:nth-child(2) {
  color: var(--yellow);
}
.switch-button:nth-child(2).active {
  background: var(--yellow);
}

.switch-button:nth-child(3) {
  color: var(--red);
}
.switch-button:nth-child(3).active {
  background: var(--red);
}

.business-program-cards.loading {
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.no-events {
  width: 100%;
  text-align: center;
  padding: 48px 0;
  font-family: var(--font-family);
  font-size: 14px;
  color: #868686;
}

@media screen and (max-width: 900px) {
  .switch {
    flex-direction: column;
  }
  .switch-button {
    width: 100%;
    flex: auto;
  }
}

@media screen and (max-width: 768px) {
  .filters {
    flex-wrap: wrap;
  }
  .filter-item {
    flex: auto;
    width: calc(50% - 4.5px);
  }
  .business-program-card {
    width: 100%;
  }
}
