.aboutAuthorWrapper {
    background-image: url("/assets/images/aboutAuthorBackground.jpeg");
    background-size: cover;
}

.aboutAuthorWrapper .wrapperCover {
    background-color: rgba(256, 256, 256, 0.8);
    padding-top: 30px;
    padding-bottom: 100px;
}

.aboutAuthorWrapper h3 {
    font-family: KoskoBold, sans-serif;
    font-size: 50px;
    text-align: center;
    color: var(--color-orange);
    position: relative;
}

.aboutAuthorWrapper h3:before,
.aboutAuthorWrapper h3:after {
    content: "";
    width: calc(100dvw / 2 - 200px);
    height: 1px;
    background-color: var(--color-orange);
    position: absolute;
    top: 50%;
}

.aboutAuthorWrapper h3:before {
    left: 0;
}

.aboutAuthorWrapper h3:after {
    right: 0;
}

.aboutAuthorBlock {
    margin: 30px auto 0 auto;
    width: 85%;
    max-width: 1200px;
    display: flex;
    border: 1px solid var(--color-orange);
    border-radius: 30px;
}

.aboutAuthorBlock img {
    width: auto;
    height: 400px;
    margin: auto 0;
    border-right: 1px solid var(--color-orange);
    border-radius: 30px;
}

.aboutAuthorText {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 45px 30px;
}

.aboutAuthorText p:nth-child(1) {
    font-size: 40px;
    font-family: KoskoBold, sans-serif;
    color: var(--color-orange);
}

.aboutAuthorText p:nth-child(2) {
    font-family: Nunito, sans-serif;
    color: var(--color-dark-green);
    font-size: 25px;
    letter-spacing: 1px;
}

.aboutAuthorText p:nth-child(2) span {
    color: var(--color-orange);
    font-family: KoskoBold, sans-serif;
}

.aboutAuthorText p:nth-child(3),
.aboutAuthorText p:nth-child(4){
    margin-top: 15px;
    color: var(--color-dark-green);
    font-family: Nunito, sans-serif;
}

.aboutAuthorText p:nth-child(3) a {
    color: var(--color-dark-green);
    text-decoration: underline;
}

.aboutAuthorText p:nth-child(3) a:visited {
    color: var(--color-dark-green);
}

.aboutAuthorText #aboutAuthorReadMoreButton {
    width: 120px;
    font-family: Nunito, sans-serif;
    color: #7F7F7F;
    text-decoration: underline;
    margin-top: 15px;
}

.aboutAuthorBottomImage {
    margin: 80px 0;
    width: 100%;
    height: 180px;
}

@media screen and (max-width: 1000px) {
    .aboutAuthorBlock {
        width: 85%;
        flex-direction: column;
    }

    .aboutAuthorBlock img {
        width: 50%;
        height: auto;
        border: 1px solid var(--color-orange);
        border-top: none;
        margin: 0 auto;
    }
}

@media screen and (max-width: 600px) {
    .aboutAuthorWrapper h3 {
        font-size: 28px;
    }

    .aboutAuthorWrapper h3:before,
    .aboutAuthorWrapper h3:after {
        width: calc(100dvw / 2 - 100px);
    }

    .aboutAuthorBlock img {
        width: 100%;
        border-left: none;
        border-right: none;
    }

    .aboutAuthorText {
        padding: 15px;
    }

    .aboutAuthorText p:nth-child(1) {
        font-size: 20px;
    }

    .aboutAuthorText p:nth-child(2) {
        margin-top: 15px;
        font-size: 20px;
    }
}
