/* -------------------------- */
/* Sister Projects */
/* -------------------------- */

.sister-project {
    display: flex;
    gap: 5%;
    align-items: center;
    margin-bottom: 50px;
}

.sister-project .sister-logo {
    flex: 1;
    display: flex;
    justify-content: center;
}

.sister-project .sister-logo img {
    width: 100%;
    max-width: 320px;
    max-height: 150px;
    object-fit: contain;
}

.sister-project .sister-content {
    flex: 2;
}

.sister-project .sister-content a {
    font-weight: bold;
    color: var(--main-color-deepblue);
}

@media screen and (max-width: 750px) {
    .sister-project {
        flex-direction: column;
        gap: 30px;
    }

    .sister-project .sister-logo {
        width: 100%;
    }

    .sister-project .sister-content {
        width: 100%;
        text-align: justify;
    }
}
