.profile {
  display: grid;
  grid-template-columns: 400px 1fr;
  grid-template-rows: auto 1fr;
  gap: 14px 50px;
  font-size: 15px;
}
.profile .profile-header {
  grid-column: 1/3;
}
.profile .about-part {
  grid-row: 1/2;
  grid-column: 1/2;
}
.profile .body-part {
  grid-row: 1/2;
  grid-column: 2/3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 767px) {
  .profile {
    display: flex;
    flex-direction: column;
  }
}

.profile-header {
  filter: url(#graphicBlur);
  background: var(--target-default);
  padding: 20px 20px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.profile-header .user-avatar {
  grid-column: 1/2;
  grid-row: 1/2;
}
.profile-header .img-avatar {
  filter: url(#graphicBlur);
  border-radius: 25px;
}
.profile-header .main-info {
  grid-column: 2/3;
  grid-row: 1/2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.profile-header .actions {
  grid-column: 1/3;
  grid-row: 2/3;
  display: flex;
  gap: 20px;
  justify-content: center;
}
.profile-header .actions .action-item {
  display: flex;
  filter: url(#graphicBlur);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.8784313725);
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
}
.profile-header .login {
  font-size: 17px;
  font-weight: 600;
}
.profile-header .activity {
  opacity: 0.8;
  line-height: 1.5;
}
.profile-header .userid {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  border-radius: 10px 20px 10px 10px;
  background: var(--brand-light);
  padding: 4px 6px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  color: #2b2534;
  align-items: baseline;
  gap: 5px;
}
.profile-header .group {
  background: var(--brand-light);
  border-radius: 15px;
  padding: 6px 10px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.product-title {
  font-size: 21px;
  line-height: 1.4;
  margin: 0;
  margin-bottom: 7px;
}

.cat-name,
.for-name {
  max-width: 190px !important;
}