.author {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 52px 0 0 !important;
  background:
    radial-gradient(circle at 70% 38%, rgba(195, 132, 18, .18), transparent 25%),
    linear-gradient(90deg, #030303 0%, #060503 54%, #020202 100%);
}

.author__grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr) !important;
  align-items: end !important;
  gap: clamp(30px, 5vw, 72px) !important;
  min-height: 570px;
}

.author__content {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 10px 0 50px;
}

.author__heading { margin-bottom: 22px; }

.author__heading p,
.author__heading h2 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  color: #dfa92d;
  font-size: clamp(1.7rem, 2.55vw, 2.7rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.author__heading span {
  display: block;
  margin-top: 8px;
  color: #f2eee6;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.15rem, 1.65vw, 1.65rem);
  letter-spacing: .025em;
  text-transform: uppercase;
}

.author__content > p {
  max-width: 720px;
  margin: 0 0 13px;
  color: #dad6cf !important;
  font-size: clamp(.88rem, 1.05vw, 1rem) !important;
  line-height: 1.62 !important;
}

.author__content > p strong { color: #f2e7d2; }

.author-cv {
  display: grid;
  gap: 0;
  max-width: 730px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.author-cv li {
  display: grid;
  grid-template-columns: 39px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 53px;
  padding: 9px 3px;
  border-bottom: 1px solid rgba(211, 153, 32, .17);
}

.author-cv li:last-child { border-bottom: 0; }

.author-cv li > span {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(218, 160, 33, .72);
  border-radius: 50%;
  color: #e3aa2c;
  background: rgba(18, 13, 4, .68);
  font-size: .95rem;
  box-shadow: inset 0 0 13px rgba(211, 148, 22, .06), 0 0 14px rgba(211, 148, 22, .06);
}

.author-cv p {
  margin: 0 !important;
  color: #d8d3ca !important;
  font-size: clamp(.78rem, .92vw, .9rem) !important;
  line-height: 1.45 !important;
}

.author-cv strong {
  color: #f0e6d3;
  font-weight: 600;
}

.author-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 27px 0 25px;
}

.author-facts span {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  color: #e5ded2;
  font-size: .68rem;
  line-height: 1.32;
}

.author-facts b {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(218, 160, 33, .72);
  border-radius: 5px;
  color: #e3aa2c;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: inset 0 0 12px rgba(211, 148, 22, .06);
}

.author__cta {
  width: min(100%, 520px) !important;
  justify-content: center !important;
  margin: 0 !important;
  text-align: center !important;
}

.author__photo {
  position: relative !important;
  align-self: end;
  width: 100% !important;
  min-height: 570px !important;
  height: 570px !important;
  margin: 0 !important;
}

.author__photo::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, #050403 0%, transparent 24%),
    linear-gradient(180deg, rgba(2, 2, 2, .2), transparent 28%, rgba(2, 2, 2, .82) 100%);
}

.author__photo img {
  position: absolute !important;
  z-index: 2 !important;
  inset: 0;
  width: 100% !important;
  min-height: 570px !important;
  height: 570px !important;
  border: 0 !important;
  border-radius: 0 !important;
  object-fit: cover !important;
  object-position: 50% 30% !important;
  filter: brightness(.7) contrast(1.1) saturate(.68) sepia(.08);
  box-shadow: none !important;
  -webkit-mask-image: radial-gradient(ellipse 76% 83% at 53% 50%, #000 40%, rgba(0,0,0,.96) 55%, rgba(0,0,0,.56) 72%, transparent 100%);
  mask-image: radial-gradient(ellipse 76% 83% at 53% 50%, #000 40%, rgba(0,0,0,.96) 55%, rgba(0,0,0,.56) 72%, transparent 100%);
}

.author__halo {
  position: absolute !important;
  z-index: 1;
  inset: 8% 5% 6% !important;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 23px, rgba(220, 156, 28, .16) 24px 25px) !important;
  filter: drop-shadow(0 0 18px rgba(217, 153, 24, .16)) !important;
  animation: authorHalo 22s linear infinite;
}

@keyframes authorHalo { to { transform: rotate(360deg); } }

@media (max-width: 980px) {
  .author { padding-top: 44px !important; }
  .author__grid { grid-template-columns: minmax(0, 1.05fr) minmax(300px, .75fr) !important; gap: 20px !important; }
  .author-facts { grid-template-columns: 1fr 1fr; }
  .author__photo, .author__photo img { min-height: 520px !important; height: 520px !important; }
}

@media (max-width: 720px) {
  .author { padding: 38px 0 0 !important; }
  .author__grid { display: flex !important; flex-direction: column; min-height: 0; gap: 4px !important; }
  .author__content { width: 100%; padding: 0 0 28px; }
  .author__heading { margin-bottom: 18px; }
  .author__heading p, .author__heading h2 { font-size: clamp(1.55rem, 8vw, 2.05rem); }
  .author__heading span { font-size: 1.06rem; }
  .author__content > p { font-size: .83rem !important; line-height: 1.58 !important; }
  .author-cv { margin-top: 18px; }
  .author-cv li { grid-template-columns: 34px 1fr; gap: 10px; min-height: 49px; padding: 8px 1px; }
  .author-cv li > span { width: 31px; height: 31px; font-size: .82rem; }
  .author-cv p { font-size: .73rem !important; line-height: 1.42 !important; }
  .author-facts { gap: 8px 12px; margin: 21px 0; }
  .author-facts span { grid-template-columns: 29px 1fr; gap: 7px; font-size: .62rem; }
  .author-facts b { width: 28px; height: 28px; font-size: .86rem; }
  .author__cta { width: 100% !important; }
  .author__photo { width: calc(100% + 24px) !important; min-height: 390px !important; height: 390px !important; margin-inline: -12px !important; }
  .author__photo img { min-height: 390px !important; height: 390px !important; object-position: 50% 25% !important; -webkit-mask-image: radial-gradient(ellipse 78% 82% at 50% 49%, #000 38%, rgba(0,0,0,.94) 57%, rgba(0,0,0,.5) 74%, transparent 100%); mask-image: radial-gradient(ellipse 78% 82% at 50% 49%, #000 38%, rgba(0,0,0,.94) 57%, rgba(0,0,0,.5) 74%, transparent 100%); }
  .author__photo::after { background: linear-gradient(180deg, #030303 0%, transparent 23%, transparent 68%, #030303 100%); }
}

@media (prefers-reduced-motion: reduce) { .author__halo { animation: none; } }
