.polls__block {
  height: 0;
  transition: padding 300ms ease-out;
  overflow: hidden;
}

.polls__block.active {
  height: auto;
  padding: 20px 0;
}

.polls__btn {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -0.03em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--m-blue);
  margin-top: 60px;
}

.polls__btn > span:first-of-type {
  border-bottom: 1px dashed var(--m-blue);
}

.polls__btn-icon {
  transition: all 300ms ease-out;
}

.polls__btn.active .polls__btn-icon {
  transform: rotate(180deg);
}

.polls__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style-type: none;
  padding: 0;
  margin: 40px 0 0;
}

.polls__link {
  position: relative;
  display: inline-block;
  padding-right: 26px;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--m-blue);
}

.polls__link span {
  text-decoration: underline;
  margin-right: 5px;
}

.polls__link::after {
  /* content: "➔";
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.03em;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%); */
}

@media screen and (max-width: 1419px) {
  .polls__btn {
    font-size: 32px;
    line-height: 40px;
  }
  .polls__btn-icon svg {
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 747px) {
  .polls__btn {
    font-size: 24px;
    line-height: 32px;
  }
}
