.elementor-440 .elementor-element.elementor-element-db6ca6b{--display:flex;overflow:visible;}/* Start custom CSS for html, class: .elementor-element-49e7082 */:root{
  --mdd-primary:#4C206D;
  --mdd-accent:#3034C8;
  --mdd-text:#7A7A7A;
  --mdd-bg:#f7f7fb;
  --mdd-card:#ffffff;
  --mdd-line:#ece7f4;
}

.mdd-authors-grid{
  background:var(--mdd-bg);
  padding:60px 0;
}

.mdd-authors-container{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

.mdd-authors-title{
  text-align:center;
  font-size:36px;
  margin-bottom:40px;
}

/* GRID */
.mdd-authors-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

/* CARD */
.mdd-author-card{
  background:var(--mdd-card);
  border:1px solid var(--mdd-line);
  border-radius:20px;
  padding:24px;
  text-align:center;
  transition:0.3s ease;
}

.mdd-author-card:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 28px rgba(76,32,109,0.08);
}

/* IMAGE */
.mdd-author-card img{
  width:100px;
  height:100px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:16px;
}

/* NAME */
.mdd-author-card h3{
  font-size:20px;
  margin-bottom:6px;
}

/* ROLE */
.mdd-author-role{
  font-size:14px;
  color:var(--mdd-text);
  margin-bottom:12px;
}

/* TAGS */
.mdd-author-tags{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:6px;
  margin-bottom:14px;
}

.mdd-author-tags span{
  font-size:12px;
  padding:6px 10px;
  border-radius:8px;
  background:#f3f3f8;
  border:1px solid var(--mdd-line);
}

/* LINK */
.mdd-author-link{
  display:inline-block;
  font-size:14px;
  font-weight:600;
  color:var(--mdd-primary);
  text-decoration:none;
}

.mdd-author-link:hover{
  color:var(--mdd-accent);
}

/* RESPONSIVE */
@media (max-width: 900px){
  .mdd-authors-list{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 600px){
  .mdd-authors-list{
    grid-template-columns:1fr;
  }
}/* End custom CSS */