/* GianettiDay – Author/Editor credits block */
.gd-credits{
  max-width: 820px;
  margin: 28px auto 0;
  padding: 18px 18px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 42px rgba(0,0,0,.08);
  backdrop-filter: blur(8px);
}

.gd-credits__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.gd-person{
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.06);
}

.gd-avatar{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  flex: 0 0 44px;
  box-shadow: 0 10px 18px rgba(0,0,0,.12);
}

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

.gd-meta{
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.gd-role{
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .70;
}

.gd-name{
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gd-credits__date{
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  border: 1px dashed rgba(0,0,0,.18);
}

.gd-date__icon{
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,.06);
}

.gd-date__label{
  font-size: 13px;
  opacity: .75;
}

.gd-date__value{
  font-size: 13px;
  font-weight: 800;
}

/* Mobile */
@media (max-width: 640px){
  .gd-credits__row{
    grid-template-columns: 1fr;
  }
  .gd-credits__date{
    width: 100%;
    justify-content: center;
  }
}