.page-breadcrumb {
    margin: 50px 0 10px 0;
}

.page-title {
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 20px;
    max-width: 800px;
}

.page-subtitle {
    font-size: 16px;
    opacity: 0.8;
    font-style: italic;
}

.about-content {
    margin-top: 40px;
}

.about-content, .about-content * {
    font-size: 20px !important;
    line-height: 34px !important;
}

.about-image {
    width: 400px;
    object-fit: contain;
    margin: -100px 0 30px 30px;
    aspect-ratio: 3 / 5;
    transform: rotateY(30deg);
    transition: .3s ease transform;
    animation: book-rotate;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.amazon-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    height: 80px;
    border-radius: 100px;
    background-color: var(--text-color);
    border: 2px solid #f8991c;
    color: white;
    gap: 12px;
    max-width: 365px;
    box-shadow: none;
    transition: .2s ease box-shadow;
    margin: 0 15px 30px 0;
}

.amazon-button:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.amazon-button > span {
    font-size: 13px !important;
    line-height: 10px !important;
}

.amazon-button > img {
    height: 35px;
}

.image-content {
    float: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

@keyframes book-rotate {
    from {
        transform: rotateY(30deg);
    }

    to {
        transform: rotateY(0deg);
    }
}

@media screen and (max-width: 1200px) {
    .about-content {
        font-size: 18px;
        line-height: 28px;
    }
}

@media screen and (max-width: 950px) {
    .page-breadcrumb {
        margin-top: 20px;
        margin-bottom: 0;
    }

    .about-content {
        display: flex;
        flex-direction: column;
    }

    .image-content {
        align-items: center;
    }

    .about-image {
        width: 100%;
        max-width: 300px;
        float: none;
        margin: 0 0 20px 0;
    }

    .amazon-button {
        width: 100%;
        min-width: unset;
        margin: 30px 0 20px 0;
    }
}