body {
    overflow-x: hidden;
    margin: 0;
}

.cover {
    display: flex;
    justify-content: space-evenly;

    position: relative;
    top: 6rem;

    background: var(--dark-blue);
}

.cover-image {
    position: relative;
    max-height: 40vh;
    max-width: 100%;

    border-radius: 15px;
}

#article-body {
    position: relative;

    top: 6rem;
    height: fit-content;

    left: 5%;
    width: 90%;

    padding: 3rem;

    display: flex;
    flex-direction: row;
}

#article-body * {
    color: var(--dark-blue);
}

#article-header {
    font-size: 4rem;
    line-height: 4.5rem;
    margin-bottom: 0;
}

h3 {
    font-weight: 800 !important;
}

h2 {
    font-size: 2rem;
}

#article {
    width: 60%;
}

#article-details {
    width: 33%;
    padding-left: 3%;
    margin-top: 3rem;
}

#author-details {
    height: 11rem;
    width: 100%;

    color: var(--off-white-background);
    border-radius: 15px;
    background: var(--dark-blue);

    padding: 1rem;

    box-shadow: 3px 3px 3px var(--shadow);
}

#author-details * {
    color: white !important;
}

#personal-author-details {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#personal-author-details * {
    margin: 0.25rem;
}

.linkedin-icon {
    width: 2rem;
}

#author-section {
    margin-bottom: 2rem;
}

.author-img {
    border-radius: 100px;
    width: 4rem;
}

.author-description {
    margin-top: 1rem;
    line-height: 1.5rem;
}

.call-to-action {
    border-radius: 15px;
    padding: 1rem;

    background: var(--dark-blue);
    color: var(--off-white-background) !important;
}

.call-to-action-section {
    position: sticky;
    top: 15%;
    width: 97%;

    background: var(--dark-blue);
    color: var(--orange) !important;

    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    display: inline-block;
    text-align: center;
    font-weight: 1000;
    box-shadow: 3px 3px 3px var(--shadow);

    cursor: pointer;

    margin-bottom: 3rem;
}

.bottom-call-to-action {
    border: solid 2px var(--dark-blue);
    box-shadow: 3px 3px 3px var(--shadow);
    border-radius: 15px;
    padding: 1rem;
    line-height: 2rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.bottom-call-to-action a {
    text-decoration: underline !important;
}

.bottom-call-to-action a:hover {
    color: var(--orange) !important;
}

@media screen and (max-width: 1025px) {
    #article-body {
        left: 0;
        padding: 3%;
        width: 94%;
        flex-direction: column;
    }

    #article {
        width: 100%;
    }

    #article-header {
        font-size: 3rem;
    }

    #article-details {
        width: 80%;
    }

    .call-to-action-section {
        position: fixed;
        font-size: 0.8rem;
        width: 5rem;
        top: 85%;
        right: 5%;
        height: 5rem;
        padding: 0;
        border-radius: 12rem;
        line-height: 1rem;
        align-items: center;
        display: flex;
    }
}

@media screen and (max-width: 900px) {
    .cover {
        top: 5rem;
    }

    #article-body {
        top: 5rem;
    }
}
