
.author-editor-section {
  padding: 55px 0 35px;
  background: transparent;
}

.author-editor-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 30px 34px;
  border-radius: 18px;
  background: rgba(5, 12, 28, 0.72);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.author-editor-title {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  text-align: left;
}

.author-editor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.author-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 0;
  background: transparent;
  border: none;
}

.author-card img {
  width: 76px;
  height: 76px;
  min-width: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.author-label {
  display: block;
  margin-bottom: 5px;
  color: #8fa8d8;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
}

.author-card h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 19px;
  font-weight: 800;
}

.author-card p {
  margin: 0;
  color: #c5d0e6;
  font-size: 14px;
  line-height: 1.45;
}

.author-date {
  margin-top: 24px;
  padding-top: 18px;
  color: #aebbd5;
  text-align: left;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .author-editor-section {
    padding: 35px 0 25px;
  }

  .author-editor-wrap {
    padding: 24px 20px;
  }

  .author-editor-title {
    font-size: 22px;
  }

  .author-editor-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .author-card img {
    width: 68px;
    height: 68px;
    min-width: 68px;
  }
}
.license-radar-section .lr-head {
  margin-bottom: 40px;
}
.license-radar-section .lr-eyebrow {
  display: inline-block;
  color: #3067FF;
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.license-radar-section .lr-head h2 {
  color: #fff;
  font-family: var(--font-hankenGrotesk);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}
.license-radar-section .lr-head p {
  color: rgba(255, 255, 255, .62);
  font-family: var(--font-inter);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 0;
}

/* реестр строками, во всю ширину */
.license-radar-section .lr-list {
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.license-radar-section .lr-item {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.license-radar-section .lr-row {
  display: flex;
  align-items: baseline;
  gap: 28px;
  width: 100%;
  padding: 26px 8px 26px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}
.license-radar-section .lr-code {
  flex-shrink: 0;
  min-width: 96px;
  color: rgba(127, 162, 255, .55);
  font-family: var(--font-hankenGrotesk);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  transition: color .4s;
}
.license-radar-section .lr-name {
  flex: 1;
  color: rgba(255, 255, 255, .72);
  font-family: var(--font-hankenGrotesk);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
  transition: color .4s;
}
.license-radar-section .lr-plus {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  align-self: center;
}
.license-radar-section .lr-plus::before,
.license-radar-section .lr-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255, 255, 255, .5);
  transform: translate(-50%, -50%);
  transition: background .4s, transform .4s, opacity .4s;
}
.license-radar-section .lr-plus::before { width: 18px; height: 2px; }
.license-radar-section .lr-plus::after  { width: 2px;  height: 18px; }

.license-radar-section .lr-row:hover .lr-code { color: #7fa2ff; }
.license-radar-section .lr-row:hover .lr-name { color: #fff; }

.license-radar-section .lr-item.active .lr-code { color: #3067FF; }
.license-radar-section .lr-item.active .lr-name { color: #fff; }
.license-radar-section .lr-item.active .lr-plus::before { background: #3067FF; }
.license-radar-section .lr-item.active .lr-plus::after  { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

/* раскрываемый текст */
.license-radar-section .lr-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease, opacity .4s ease, padding .4s ease;
  opacity: 0;
  padding: 0 60px 0 124px;
}
.license-radar-section .lr-item.active .lr-body {
  max-height: 400px;
  opacity: 1;
  padding: 0 60px 30px 124px;
}
.license-radar-section .lr-body p {
  color: rgba(255, 255, 255, .68);
  font-family: var(--font-inter);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 0;
}
.license-radar-section .lr-body p b { color: #fff; font-weight: 600; }

@media (max-width: 991px) {
  .license-radar-section .lr-head h2 { font-size: 34px; }
  .license-radar-section .lr-row { gap: 18px; padding: 22px 4px 22px 0; }
  .license-radar-section .lr-code { min-width: 70px; font-size: 17px; }
  .license-radar-section .lr-name { font-size: 21px; }
  .license-radar-section .lr-body { padding: 0 0 0 88px; }
  .license-radar-section .lr-item.active .lr-body { padding: 0 0 26px 88px; }
}

@media (max-width: 576px) {
  .license-radar-section .lr-head h2 { font-size: 28px; }
  .license-radar-section .lr-row { flex-wrap: wrap; gap: 6px 14px; }
  .license-radar-section .lr-code { min-width: unset; font-size: 15px; order: 1; }
  .license-radar-section .lr-plus { order: 2; margin-left: auto; }
  .license-radar-section .lr-name { order: 3; flex-basis: 100%; font-size: 19px; }
  .license-radar-section .lr-body,
  .license-radar-section .lr-item.active .lr-body { padding-left: 0; padding-right: 0; }
  .license-radar-section .lr-item.active .lr-body { padding-bottom: 24px; }
}
.license-radar-section .lr-head {
  margin-bottom: 40px;
}
.license-radar-section .lr-eyebrow {
  display: inline-block;
  color: #3067FF;
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.license-radar-section .lr-head h2 {
  color: #fff;
  font-family: var(--font-hankenGrotesk);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}
.license-radar-section .lr-head p {
  color: rgba(255, 255, 255, .62);
  font-family: var(--font-inter);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 0;
}

.license-radar-section .lr-list--static {
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.license-radar-section .lr-list--static .lr-item {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.license-radar-section .lr-row--static {
  display: flex;
  align-items: baseline;
  gap: 28px;
  width: 100%;
  padding: 26px 0 0 0;
}
.license-radar-section .lr-row--static .lr-code {
  flex-shrink: 0;
  min-width: 96px;
  color: #3067FF;
  font-family: var(--font-hankenGrotesk);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
}
.license-radar-section .lr-row--static .lr-name {
  flex: 1;
  color: #fff;
  font-family: var(--font-hankenGrotesk);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
}

.license-radar-section .lr-body--static {
  padding: 14px 60px 30px 124px;
}
.license-radar-section .lr-body--static p {
  color: rgba(255, 255, 255, .68);
  font-family: var(--font-inter);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .license-radar-section .lr-head h2 { font-size: 34px; }
  .license-radar-section .lr-row--static { gap: 18px; padding-top: 22px; }
  .license-radar-section .lr-row--static .lr-code { min-width: 70px; font-size: 17px; }
  .license-radar-section .lr-row--static .lr-name { font-size: 21px; }
  .license-radar-section .lr-body--static { padding: 12px 0 26px 88px; }
}

@media (max-width: 576px) {
  .license-radar-section .lr-head h2 { font-size: 28px; }
  .license-radar-section .lr-row--static { flex-wrap: wrap; gap: 6px 14px; }
  .license-radar-section .lr-row--static .lr-code { min-width: unset; font-size: 15px; }
  .license-radar-section .lr-row--static .lr-name { flex-basis: 100%; font-size: 19px; }
  .license-radar-section .lr-body--static { padding: 10px 0 24px 0; }
}
.license-radar-section .lr-verdict {
  position: relative;
  padding: 30px 40px;
}
.license-radar-section .lr-verdict .lr-eyebrow {
  display: inline-block;
  color: #3067FF;
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.license-radar-section .lr-verdict h2 {
  position: relative;
  color: #fff;
  font-family: var(--font-hankenGrotesk);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 26px;
  padding-bottom: 18px;
}
.license-radar-section .lr-verdict h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  border-radius: 3px;
  background: #3067FF;
}
.license-radar-section .lr-verdict p {
  color: rgba(255, 255, 255, .72);
  font-family: var(--font-inter);
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 0;
}

/* уголки-скобки */
.license-radar-section .lr-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  pointer-events: none;
}
.license-radar-section .lr-corner--tl {
  top: 0;
  left: 0;
  border-top: 2px solid rgba(48, 103, 255, .6);
  border-left: 2px solid rgba(48, 103, 255, .6);
  border-radius: 6px 0 0 0;
}
.license-radar-section .lr-corner--br {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid rgba(48, 103, 255, .6);
  border-right: 2px solid rgba(48, 103, 255, .6);
  border-radius: 0 0 6px 0;
}

@media (max-width: 991px) {
  .license-radar-section .lr-verdict { padding: 26px 28px; }
  .license-radar-section .lr-verdict h2 { font-size: 32px; }
  .license-radar-section .lr-verdict p { font-size: 16px; }
}

@media (max-width: 576px) {
  .license-radar-section .lr-verdict { padding: 22px 18px; }
  .license-radar-section .lr-verdict h2 { font-size: 27px; }
  .license-radar-section .lr-corner { width: 22px; height: 22px; }
}
