/* cmfriulioccidentale — author/editor block */
.cf-authorbox{
  max-width:1080px;
  margin:42px auto 70px;
  padding:0 16px;
}

.cf-authorbox__inner{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  padding:22px;
  border-radius:24px;
  background:linear-gradient(135deg, rgba(15,29,51,.94), rgba(25,42,70,.82));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 22px 60px rgba(0,0,0,.22);
  overflow:hidden;
}

.cf-authorbox__inner::before{
  content:"";
  position:absolute;
  inset:auto -80px -120px auto;
  width:260px;
  height:260px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(56,189,248,.35), transparent 70%);
  pointer-events:none;
}

.cf-authorbox__person{
  position:relative;
  display:flex;
  align-items:center;
  gap:16px;
  padding:16px;
  border-radius:18px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
}

.cf-authorbox__photo{
  width:76px;
  height:76px;
  flex:0 0 76px;
  border-radius:22px 22px 6px 22px;
  overflow:hidden;
  border:2px solid rgba(56,189,248,.35);
  background:#fff;
}

.cf-authorbox__photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.cf-authorbox__info{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.cf-authorbox__role{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.65);
}

.cf-authorbox__name{
  margin-top:4px;
  font-size:18px;
  font-weight:800;
  color:#fff;
}

.cf-authorbox__date{
  grid-column:1 / -1;
  position:relative;
  display:flex;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  background:rgba(56,189,248,.12);
  border:1px dashed rgba(56,189,248,.35);
  color:rgba(255,255,255,.9);
  font-size:14px;
}

.cf-authorbox__date strong{
  color:#fff;
}

@media (max-width:720px){
  .cf-authorbox__inner{
    grid-template-columns:1fr;
  }

  .cf-authorbox__date{
    flex-direction:column;
    align-items:center;
    border-radius:16px;
  }
}