.oz-author-box {
display: flex;
align-items: flex-start;
gap: 16px;
padding: 16px 18px;
margin: 24px 0;
border-radius: 8px;
border: 1px solid #e5e7eb;
background-color: #f9fafb;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.oz-author-box__avatar img {
border-radius: 50%;
display: block;
}
.oz-author-box__content {
flex: 1;
}
.oz-author-box__byline {
margin: 0 0 6px;
font-size: 14px;
line-height: 1.4;
color: #4b5563;
}
.oz-author-box__label {
text-transform: uppercase;
letter-spacing: 0.06em;
font-size: 11px;
font-weight: 600;
margin-right: 6px;
color: #9ca3af;
}
.oz-author-box__name {
font-weight: 600;
text-decoration: none;
color: #111827;
}
.oz-author-box__name:hover {
text-decoration: underline;
}
.oz-author-box__separator {
margin: 0 6px;
color: #9ca3af;
}
.oz-author-box__date {
color: #6b7280;
font-size: 13px;
}
.oz-author-box__bio {
margin: 0;
font-size: 14px;
line-height: 1.6;
color: #4b5563;
}
@media (max-width: 600px) {
.oz-author-box {
flex-direction: row;
align-items: flex-start;
}
.oz-author-box__avatar img {
width: 56px;
height: 56px;
}
}