.author-info-container {
    background-color: var(--card-color);
    border: 1px solid var(--line-color);
    border-bottom: none;
    border-left: none;
    border-top: none;
    font-size: 1.0625rem;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 20px 100px;
    gap: 20px;
}

.author-info-container > img {
    margin-bottom: 20px;
    margin-top: 10px;
    width: 140px;
    height: 140px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}

.author-description-container {
    width: 60%;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    color: white;
}

.author-description-container h1 {
    color: white;
    font-size: calc(1.5rem + 0.6vw);
    margin-top: 0;
    margin-bottom: 0;
}

.author-description-container p {
    font-family: "Georgia", sans-serif;
}

.author-description-container a {
    color: white;
    text-decoration: none;
}

.author-description {
    line-height: 1.5;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.8);
}

.authors-tools-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 25px;
    padding-bottom: 17px;
    border-top: 1px solid var(--line-color);
}

.authors-tools-container h2 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0;
    text-align: center;
    width: 100%;
}

.author-tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 45%;
}

.author-tool-item h3 {
    margin-top: 3px;
    margin-bottom: 10px;
    text-wrap: nowrap;
    overflow: hidden;
    color: white;
}

.author-tool-item h3 a {
    text-decoration: none;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
}

.author-tool-item h3 a:hover {
    color: #f1e739;
}

.author-tool-item > a {
    width: 100%;
}

.author-tool-item a img {
    aspect-ratio: 2 / 1;
    width: 100%;
}

.more-tools {
    display: block;
    text-align: center;
    text-decoration: none;
    width: 90%;
    font-size: 1.3125rem;
    font-weight: bold;
    padding: 15px;
    margin: 0 auto 10px;
    color: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px 0 rgba(126, 52, 161, 0.65);
    background-size: 200% 100%;
    background-image: linear-gradient(to right, #9b79ff, #815eff, #653dff);
}

.more-tools:hover {
    background-position: 90% 10%;
    transition: all .4s ease-in-out;
}

@media screen and (max-width: 1023px) {
    .author-info-container {
        border-bottom: 1px solid var(--line-color);
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .author-info-container {
        flex-direction: column;
        align-items: center;
    }
    .author-info-container img {
        margin-bottom: 0;
    }
    .author-description-container {
        margin-top: 0;
        width: 100%;
    }
    .author-description-container h1, .author-description-container p, .author-description-container a {
        text-align: center;
    }
}

@media screen and (max-width: 500px) {
    .author-tool-item {
        width: 90%;
    }
}


