/* Divine Authors */

.da-authors {
    display: grid;
    gap: 24px;
    margin: 0 0 32px;
}

@media (min-width: 782px) {
    .da-authors--cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .da-authors--cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.da-author {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px;
    background: #F9F1FF;
    border-radius: 12px;
}

.da-author__avatar {
    flex: 0 0 auto;
    display: block;
    line-height: 0;
}

.da-author__avatar img {
    display: block;
    border-radius: 999px;
    height: auto;
}

.da-author__text {
    flex: 1 1 auto;
    min-width: 0;
}

.da-author__name {
    margin: 0 0 4px;
    font-size: 20px;
    line-height: 1.3;
}

.da-author__name a {
    text-decoration: none;
}

.da-author__name a:hover,
.da-author__name a:focus {
    text-decoration: underline;
}

.da-author__count {
    margin: 0 0 10px;
    font-size: 13px;
    opacity: .7;
}

.da-author__bio {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.55;
}

.da-author__more {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.da-empty {
    opacity: .7;
}

@media (max-width: 600px) {
    .da-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
}
