.stories-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 100px;
    max-width: 1366px;
    margin: auto;
}

.stories-section .story-title {
    font-family: 'Sohne';
    font-weight: 300;
    font-size: 32px;
    line-height: 40px;
    margin: 0;
}

.story-select {
    display: flex;
    justify-content: end;
    align-items: center;
    flex-grow: 1;
    gap: 16px;
}

#filter-by-content-type {
    min-width: 230px;
}
 
/*  Medium devices (tablets, less than 992px) */
@media (max-width: 992px) {  

    .stories-section {
        flex-direction: column;
        padding: 40px 42px 40px 52px;
    }

    .stories-section .story-title {
        margin-bottom: 44px;
    } 

}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 768px) {  
    .stories-section  {
        flex-direction: column;
        padding: 40px 16px; 
    } 
    
    .stories-section .story-title {
        margin-bottom: 44px;
    } 

    .story-select { 
        width: 80%;
    }

    .story-select select {
        font-size: 12px;
        line-height: 16px;  
        width: 50%;
    }
}

/*  X-Small devices (portrait phones, less than 576px) */
@media (max-width: 576px) {  
    .stories-section  {
        flex-direction: column;
        padding: 40px 16px; 
    } 

    .stories-section .story-title {
        margin-bottom: 44px;
    } 
    
    .story-select { 
        width: 100%;
    }

    .story-select select {
        font-size: 12px;
        line-height: 16px;  
        width: 50%;
    }

    #filter-by-content-type {
        min-width: unset;
    }
}