.author-box {
    width: 100%;
    margin-bottom: 30px
}

.author-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 15px;
    border: 1px solid #d9d9d9;
    overflow: hidden;
}

.author-photo-wrapper {
    flex: 0 0 326px;
    background: linear-gradient(142.71deg, #3652ff 10.21%, #00cbe2 93.04%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.author-photo-bg {
    width: 224px;
    height: 224px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    padding: 30px;
    flex-grow: 1;
}

.author-info .author-name a {
    color: #000000;
    font-size: 24px;
}

.author-info .author-name {
    font-size: 34px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.author-info .author-title {
    color: #1b74e4;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 20px 0;
}

.author-info .author-bio {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 30px;
}

.author-info .btn-primary {
    background-color: #1b74e4;
    border-color: #1b74e4;
}

.social-media {
    display: flex;
    gap: 16px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: #f3f1ff;
    border-radius: 8px;
}

.social-icon i {
    color: #1b74e4;
}

@media (max-width: 768px) {
    .author-box .author-card {
        display: grid;
    }

    .author-box .author-card .author-photo-wrapper {
        padding: 10px;
    }

    .author-info {
        padding: 10px;
    }

    .author-info .author-title,
    .author-info .author-bio {
        margin-bottom: 0;
    }
}