#biome-in-the-wild {
    padding: 20px;
    padding-top: 0px;
}

#bitw-header {
    display: none;
    padding: 20px;
    opacity: 0.5;
    text-align: center;
    text-transform: uppercase;
}

#bitw-statement {
    margin: 80px 20px;
    margin-bottom: 40px;
    font-size: 200%;
    text-align: center;
}

#bitw-statement > .accent-font-italic {
    color: rgba(var(--brand-dark), 0.6);
}

#bitw-social-container {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    height: calc(96vh + 80px);
    gap: 10px;
}

.bitw-social-small, .bitw-social-big {
    box-sizing: border-box;
    width: calc((100% - 10px) / 2);
    display: flex;
    flex-direction: column;
    background-color: rgba(var(--brand-stone-light), 0.15);
    background-color: var(--brand-dialog);
    border-radius: 10px;
    padding: 10px;
    break-inside: avoid;
    gap: 10px;
}

.bitw-social-small {
    height: calc((48svh - 20px)/3);
    justify-content: center;
    color: rgba(var(--brand-dark), 1.0);
    /*box-shadow: 4px 4px 10px 0px rgba(var(--brand-dark), 0.1);*/
}

.bitw-social-big {
    height: 48svh;
    justify-content: end;
    background-size: cover;
    background-position: 50%;
    color: white;
    font-size: 125%;
}

.bitw-social-post {
    font-size: 65%;
    line-height: 135%;
    color: rgba(var(--brand-dark), 0.6);
}

.bitw-social-user {
    display: flex;
    align-items: center;
    font-size: 60%;
}

.bitw-social-profile {
    height: 12px;
    margin-right: 10px;
}

.bitw-social-small .bitw-social-name {
    font-weight: 500;
}

.bitw-social-location {
    font-size: 90%;
    color: rgb(160,160,160);
    color: color-mix(in hsl, rgb(var(--brand-dark)) 35%, white 65%)
}


.bitw-social-small .bitw-social-location {
    color: rgba(var(--brand-dark), 0.6);
}

#bitw-post-1 {
    order: 1;
    background-image: linear-gradient(210deg, transparent 50%, rgba(0,0,0,0.5) 90%), url('/images/bitw-one.webp');
    background-position: 70% 50%;
}

#bitw-text-1 {
    order: 2;
}

#bitw-post-3 {
    order: 3;
    background-image: linear-gradient(210deg, transparent 50%, rgba(0,0,0,0.5) 90%), url('/images/bitw-three.webp');
    background-position: 15% 50%;
    height: calc((2.0 * 48svh - 10px)/3);
    filter: hue-rotate(18deg) saturate(0.8);
}

#bitw-text-2 {
    order: 4;
}

#bitw-text-3 {
    order: 5;
}

#bitw-post-4 {
    order: 6;
    background-image: linear-gradient(210deg, transparent 50%, rgba(0,0,0,0.5) 90%), url('/images/bitw-four.webp');
    background-position: 70% 50%;
}

#bitw-text-4 {
    order: 7;
}

#profile-cloudflare {
    filter: saturate(0.0) brightness(0.5);
}

@media screen and (min-width: 800px) {
    #biome-in-the-wild {
        padding: 0px 20px;
    }
    
    #bitw-statement {
        margin: 120px 15%;
        font-size: 320%;
        margin-bottom: 60px;
    }

    #bitw-social-container {
        font-size: 135%;
        height: calc(80vh + 60px);
    }

    .bitw-social-small, .bitw-social-big {
        width: calc((100% - 20px) / 3);
        padding: 20px;
    }

    .bitw-social-big {
        height: 60svh;
    }

    .bitw-social-small {
        height: calc((60svh - 20px) / 3);
    }

    #bitw-text-2 {
        order: 3;
    }

    #bitw-post-3 {
        order: 4;
        height: calc((2.0 * 60svh - 10px) / 3);
    }

    #bitw-text-4 {
        order: 6;
    }

    #bitw-post-4 {
        order: 7;
    }
}