.dab-author-box {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 15px 10px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  width: max-content;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.dab-author-avatar {
  display: flex;
  justify-content: center;
}

.dab-author-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.dab-author-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  align-items: flex-start;
}

.dab-author-name {
  font-weight: 700;
  font-size: 16px;
  color: #2d2d2d;
  line-height: 28px;
  text-align: center;
}

.dab-author-designation {
  font-weight: 500;
  font-size: 16px;
  color: #666;
  line-height: 28px;
  margin: 0;
  text-align: center;
}

.dab-connect-button {
  background: linear-gradient(90deg, #2370e7 0%, #109b9e 100%);
  color: #fff;
  font-size: 16px;
  line-height: 36px;
  text-decoration: none;
  padding: 5px 15px;
  border-radius: 8px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.dab-connect-button:hover {
  opacity: 0.9;
  color: white;
}

.dab-author-box i {
  transform: rotate(315deg);
}

@media (max-width: 768px) {
  .dab-author-box {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    gap: 8px;
  }
  .dab-author-name {
    font-size: 16px;
    line-height: 28px;
  }
  .dab-author-designation {
    font-size: 14px;
    line-height: 28px;
  }

  .dab-author-avatar {
    justify-content: center;
  }

  .dab-author-details {
    text-align: center;
    align-items: center;
    gap: 0;
  }

  .dab-connect-button {
    font-size: 14px;
    line-height: 28px;
    margin-top: 4px;
    align-self: center;
  }
}
