.reports {
  padding: 120px 0;
}
.reports__list {
  max-width: 1073px;
  margin: 0 auto;
}
.reports__title {
  font-size: 48px;
  font-weight: 700;
  max-width: 600px;
  color: #27383f;
  margin: 0 auto 64px;
  text-align: center;
  line-height: 1.17;
}
.reports__table-link-title,
.reports__table-name,
.reports__table-year {
  font-size: 16px;
  font-weight: 400;
}
.reports__table-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 32px;
  background-color: var(--color-blue);
}
.reports__table:not(:last-child) {
  margin-bottom: 120px;
}
.reports__table-head span {
  font-size: 14px;
  line-height: 1.29;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.reports__table-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 29px 30px;
  border-bottom: 1px solid #dfdfdf;
  transition: background-color 0.5s;
}
.reports__table-link.mobile {
  display: none;
}
.reports__table-year {
  background-color: #f6f6f6;
  padding: 6px 12px;
  color: #171717;
  font-size: 16px;
  line-height: 1.25;
  width: 58px;
  text-align: center;
  transition: background-color 0.5s, color 0.5s;
}
.reports__table-name {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
  color: #27383f;
  flex: 0 0 320px;
}
.reports__table-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reports__table-link.desktop {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}
.reports__table-link.desktop span {
  transition: opacity 0.4s ease;
}
.reports__table-row:hover .reports__table-link.desktop {
  opacity: 1;
  visibility: visible;
}
.reports__table-link.desktop:hover span,
.reports__table-link.desktop:focus span {
  opacity: 0.85;
}
.reports__table-row:hover {
  background-color: #e1efff;
  border-color: #e1efff;
}
.reports__table-row:hover .reports__table-year {
  background-color: white;
  color: #3593ff;
}
.reports__table-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding-left: 1px;
  background-color: #3593ff;
  border-radius: 50%;
}
.reports__table-link-icon svg {
  display: block;
  width: 21px !important;
  height: auto !important;
}
.reports__table-link-title {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
  color: #3593ff;
}
