.home {
  width: fit-content;
  margin: 32px auto;
}
.home-div {
  display: flex;
  column-gap: 60px;
}
.card {
  background-color: var(--primary-200);
  width: 650px;
  padding: 18px 14px;
  padding-bottom: 8px;
  display: flex;
  flex-direction: column;
  row-gap: 3px;
  border-radius: 20px;
  position: relative;
}
.card-section {
  padding-top: 20px;
}
.top-filter {
  margin-left: 360px;
  display: flex;
  column-gap: 8px;
}
.top-filter button {
  all: unset;
  padding: 6px 12px;
  border-radius: 5px;
  background-color: var(--primary-300);
  cursor: pointer;
}
.top-filter button.active {
  border: 1px solid var(--primary-400);
}
.top-filter > a {
    all:unset
}
.card-section {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.card .link-panel {
  font-size: 14px;
  z-index: 1;
}
.card .link-panel svg {
  width: 14px;
  height: 14px;
}
.preview {
  padding-bottom: 30px;
  font-size: 14px;
}

.live-ico {
  background-color: var(--primary-600);
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.ripple {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid green;
  animation: ripple 5s infinite ease-in-out;
}
div:has(> .ripple) {
  position: relative;
}
@keyframes ripple {
  from {
    width: 0px;
    height: 0px;
    border-width: 1px;
    opacity: 1;
  }
  to {
    width: 50px;
    height: 50px;
    border-width: 2px;
    opacity: 0;
  }
}
