.catalog {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  padding: 60px 140px;
  overflow: hidden;
}

.catalog__glow {
  position: absolute;
  width: 894px;
  height: 894px;
  pointer-events: none;
  z-index: 0;
}

.catalog__glow--right {
  left: 766px;
  top: -146px;
}

.catalog__glow--left {
  left: -534px;
  top: -315px;
}

.catalog__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.catalog-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}

.catalog-row__left {
  display: flex;
  gap: 18px;
  align-items: center;
}

.catalog-row__thumb {
  width: 53px;
  height: 53px;
  object-fit: cover;
  flex-shrink: 0;
}

.catalog-row__title-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.catalog-row__title {
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 70px;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.catalog-row__arrow {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.catalog-row__bullet {
  width: 20px;
  height: 20px;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-sizing: border-box;
  flex-shrink: 0;
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.catalog-row:hover .catalog-row__title {
  color: var(--green);
}

.catalog-row:hover .catalog-row__arrow {
  opacity: 1;
}

.catalog-row:hover .catalog-row__bullet {
  background: var(--green);
  border-color: var(--green);
}

.catalog__text {
  position: relative;
  z-index: 1;
  width: 100%;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
  color: var(--white);
}

@media (max-width: 768px) {
  .catalog {
    padding: 40px 20px;
    gap: 20px;
  }

  .catalog__glow {
    width: 718px;
    height: 718px;
  }

  .catalog__glow--right {
    display: none;
  }

  .catalog__glow--left {
    left: -322px;
    top: -120px;
  }

  .catalog__list {
    gap: 10px;
  }

  .catalog-row__left {
    gap: 18px;
  }

  .catalog-row__title-wrap {
    gap: 10px;
  }

  .catalog-row__title {
    font-size: 24px;
  }

  .catalog-row__arrow {
    width: 21px;
    height: 21px;
  }
}
