/* -------------- FURTHERREADING.HTML -------------- */

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
}

@media (max-width: 675px) {
    main {
        margin-top: 0rem;
    }
}


/* ----- two map section ----- */

.twomaps {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
}
.twomaps .map {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.twomaps img {
    max-width: 30vw;
    max-height: 75vh;
}

.caption {
    font-size: 0.85rem;
    max-width: 28vw;
    text-align: center;
    line-height: 120%;
    margin-top: 1rem;
}

@media (max-width: 1000px) {
    .twomaps img {
        min-width: 275px;
        max-width: 40vw;
        max-height: 100%;
    }
    .caption {
        font-size: 0.8rem;
        max-width: 270px;
    }
}
@media (max-width: 675px) {
    .twomaps {
        flex-direction: column;
        gap: 1rem;
    }
    .twomaps img {
        width: 90%;
        max-width: 90%;
        max-height: 90%;
    }
    .caption {
        font-size: 0.8rem;
        max-width: 90%;
    }
}


/* ----- text sections ----- */

.furtherreading {
    max-width: 700px;
    font-size: 1.0625rem;
    line-height: 135%;
}

.conclusion { margin-top: 2rem; }

.furtherreading h2 { margin-top: 3rem; }

.furtherreading .sources { padding-left: 2rem; line-height: 125%; }
.furtherreading .sources p:first-letter { margin-left: -2rem; }

.visible-on-small { display: none; }

@media (max-width: 750px) {
    .furtherreading {
        max-width: 90%;
        font-size: 1rem;
    }
    .visible-on-small .conclusion {
        margin-bottom: 2rem;
    }
}

@media (max-width: 675px) {
    .visible-on-small { display: initial; }
    .visible-on-large { display: none; }
}


/* ----- credits ----- */

.credits {
    text-align: center;
    line-height: 135%;
    margin-top: 6rem;
    margin-bottom: 0.5rem;
}