/* ///////////////////////////////////////
==================== DESKTOP STYLING ====================
/////////////////////////////////////// */


/* ====================
///////////////////////////////////////
Page Elements Styling ///////////////////////////////////////
///////////////////////////////////////
==================== */

.auburn_winds_page_content{
    display: flex;
    flex-direction: column;

    flex-wrap: wrap;

    width: 100%;
}

/* ====================
///////////////////////////////////////
Featured image styling ///////////////////////////////////////
///////////////////////////////////////
==================== */
.auburn_winds_page_featured_img_container{
    display: flex;
    flex-direction: column;
    position: relative;

    justify-content: center;
    align-items: center;

    width: 100%;
    height: 15rem;

    margin-bottom: 2rem;

    border: 1px solid none;
    border-radius: 0px;
    overflow: hidden;

    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}

.auburn_winds_page_featured_img{
    display: flex;
    
    width: 100%;
    height: 100%;

    position: absolute;

    padding: 20px;
}


.auburn_winds_page_featured_img::before{
    content: "The image could not be loaded.";

    font-family: 'Lexend';
    font-weight: 400;
    font-size: 1rem;

    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;

    z-index: -1;
}


/* ====================
///////////////////////////////////////
Title container styling ///////////////////////////////////////
///////////////////////////////////////
==================== */
.auburn_winds_page_title_container{
    display: flex;
    flex-direction: column;

    width: 100%;
    height: auto;

    flex-wrap: wrap;
}


/* ====================
///////////////////////////////////////
Page Main content container styling ///////////////////////////////////////
///////////////////////////////////////
==================== */
.auburn_winds_page_main_content{
    display: flex;
    flex-direction: column;

    width: 100%;
    height: auto;

    margin: 0.5rem 0 0.5rem 0;
}