.factions-image {
    display: block;
    margin: auto;
    height: auto;
    max-height: 400px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    object-position: center;
}

.span-box-c {
    display: flex;
    /* flex-direction: column; */
    flex: 50%;
    width: 100%;
    /* max-height: 800px; */
    padding-bottom: 50px;
    font-size: 25px;
    font-family: caslon-antique;
    overflow-x: hidden;
    overflow-y: auto;
    background: transparent;
}

.col {
    display: flex;
    flex-direction: column;
    flex: 60%;
    width: 60%;
    max-height: 400px;
    font-size: 25px;
    font-family: caslon-antique;
    overflow-x: hidden;
    overflow-y: scroll;
    /* background: transparent; */
}

.col-1 {
    display: flex;
    flex-direction: column;
    flex: 25%;
    width: 25%;
    /* max-height: 1000px; */
    font-size: 25px;
    font-family: caslon-antique;
    overflow-x: hidden;
    overflow-y: auto;
    /* border-bottom: 2px dotted #593A26; */
    /* background: transparent; */
}

.col-2 {
    display: flex;
    flex-direction: column;
    flex: 75%;
    width: 75%;
    /* max-height: 1000px; */
    font-size: 25px;
    font-family: caslon-antique;
    overflow-x: hidden;
    overflow-y: auto;
    /* background: transparent; */
    border-left: 2px dotted #593A26;
    padding: 2%;
}

.default-lore {
    display: block;
}

.mb-lore {
    display: none;
}

.hq-lore {
    display: none;
}

.gc-lore {
    display: none;
}

.ws-lore {
    display: none;
}

.mobile-column {
    display: none;
    width: 100%;
    font-size: 25px;
    font-family: caslon-antique;
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 50px;
    /* background: transparent; */
}

@media screen and (max-width: 600px) {
    .span-box-c {
        flex-direction: column;
        max-height: none;
        display: none;
    }

    .col {
        width: 100%;
    }

    .mobile-column {
        flex-direction: column;
        display: flex;
        width: 100%;
    }

}

