.link-group__list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: section;
}
.link-group__item {
  margin: 0 0 3rem 0;
  padding: 0;
}
.link-group__item:last-child {
  margin: 0;
}
.link-group .btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #197ED3;
  border: 1px solid #197ED3;
  border-radius: 100%;
  position: absolute;
  top: 0;
  right: 0;
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.link-group svg {
  width: 16px;
  height: auto;
}
.link-group path {
  transition: stroke 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.link-group a {
  counter-increment: section;
  min-height: 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  font-size: var(--wp--preset--font-size--font-20);
  font-weight: 600;
  line-height: 1.35;
  padding: 0 60px;
  color: #197ED3;
  position: relative;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.link-group a:before {
  content: counter(section, decimal-leading-zero);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  font-weight: 700;
  background: #197ED3;
  border-radius: 0 0 6px 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.25s ease-in-out;
}
.link-group a:hover, .link-group a:active, .link-group a:focus {
  color: #054A8C;
}
.link-group a:hover:before, .link-group a:active:before, .link-group a:focus:before {
  color: #fff;
  background: #F5A624;
}
.link-group a:hover .btn, .link-group a:active .btn, .link-group a:focus .btn {
  background: #F5A624;
  border-color: transparent;
}

.has-primary-background-color .link-group .btn {
  background: transparent;
  border-color: #fff;
}
.has-primary-background-color a {
  color: #fff;
}
.has-primary-background-color a:before {
  color: #fff;
}
.has-primary-background-color a:hover, .has-primary-background-color a:active, .has-primary-background-color a:focus {
  color: #DDECF8 !important;
}
