.author{
  display:flex;
  align-items:center;
  gap:16px;
  
  padding: 12px 0 24px;
}

.author-left{
  width: 128px;
  height: 128px;
  flex:0 0 128px;
  border-radius:50%;
  overflow:hidden;
}

.author-left img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  
  transform: scale(1);
  transition: transform .65s ease;
  will-change: transform;
}

.author:hover .author-left img{
  transform: scale(1.1);
}

.author-right{
  display:flex;
  flex-direction:column;
  gap:6px;
  min-width:0;
}

.author-label{
  font-family: Inter;
  letter-spacing: 0.02em;
  font-size:14px;
  color: #595959;
}

.author-name,
.author-name:visited,
.author-name:hover,
.author-name:active,
.author-name:focus {
  font-family: Playfair Display;
  font-weight: 700;
  letter-spacing: 0.04em;
  
  color: rgba(51, 48, 47, 1);
  text-decoration: none;
  
  align-self:flex-start;
}

.author-name{
  display:inline-block;
  text-decoration:none;
  
  -webkit-tap-highlight-color: transparent;
}

.author-right,
.author-right p,
.author-name{
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.author-title{
  font-family: Inter;
  letter-spacing: 0.02em;
  margin:0;
  font-size:14px;
  color: #595959;
}

/* ============== MEDIA QUERIES ============== */
/* Mobile Approach */
@media (hover: none) and (pointer: coarse) {
.author-left{
  width: 100%;
  height: 100%;
  flex:0 0 30vw;
}

}
/* Tablet Approach */
@media (min-width: 641px) and (hover: none) and (pointer: coarse) {

}
/* Desktop Approach */
@media (min-width: 1024px) and (pointer: fine) {

}
