
/* V40 - Ana Sayfa Yazarlar */
.og-authors-section{
  margin:38px 0 44px;
}
.og-authors-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:20px;
  padding-bottom:12px;
  margin-bottom:16px;
  border-bottom:1px solid #e6eaee;
}
.og-authors-head span{
  display:block;
  margin-bottom:3px;
  font-size:10px;
  font-weight:900;
  letter-spacing:.8px;
  color:#e21b23;
}
.og-authors-head h2{
  margin:0;
  font-size:25px;
  line-height:1.1;
  color:#142236;
}
.og-authors-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.og-author-card{
  display:grid;
  grid-template-columns:72px minmax(0,1fr);
  gap:12px;
  align-items:start;
  padding:13px;
  background:#fff;
  border:1px solid #e3e8ed;
  border-radius:10px;
  transition:.18s ease;
}
.og-author-card:hover{
  transform:translateY(-2px);
  border-color:#d2dbe3;
  box-shadow:0 6px 18px rgba(28,44,60,.06);
}
.og-author-avatar{
  width:72px;
  height:72px;
  border-radius:50%;
  overflow:hidden;
  background:#edf1f4;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}
.og-author-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.og-author-avatar span{
  font-size:26px;
  font-weight:900;
  color:#617487;
}
.og-author-body{
  min-width:0;
}
.og-author-name{
  display:block;
  margin:2px 0 6px;
  color:#17283b;
  font-size:14px;
  font-weight:900;
  line-height:1.25;
  text-decoration:none;
}
.og-author-name:hover{
  color:#1478b2;
}
.og-author-body p{
  margin:0 0 9px;
  color:#74818d;
  font-size:10px;
  line-height:1.45;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.og-author-foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  font-size:9px;
}
.og-author-foot span{
  color:#8c97a1;
}
.og-author-foot a{
  color:#1478b2;
  font-weight:800;
  text-decoration:none;
  white-space:nowrap;
}
@media(max-width:1050px){
  .og-authors-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:650px){
  .og-authors-section{margin:28px 0 34px}
  .og-authors-head h2{font-size:21px}
  .og-authors-grid{
    display:flex;
    overflow-x:auto;
    gap:10px;
    padding-bottom:4px;
    scroll-snap-type:x mandatory;
  }
  .og-author-card{
    min-width:280px;
    scroll-snap-align:start;
  }
}
