@charset "UTF-8";
/* CSS Document */

/* ========== GLOBAL ========== */
body, .container, 
.filter-select, .filter-input,
.select2-selection, 
.select2-results__option,
.select2-selection__rendered,
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    font-family: "Futura", Arial, sans-serif;
}

/* ========== INPUTS & BUTTONS ========== 
.filter-select, 
.filter-input, 
.filter-button {
    border: 2px solid black !important;
    border-radius: 0 !important;
    height: 42px;
} */

.filter-button {
    background-color: black;
    color: white;
    font-weight: bold;
}

.filter-button:hover {
    background-color: #222;
}

/* ========== BLOG POST PREVIEW ========== */
.post-preview {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    border: 2px solid black;
    border-radius: 0;
    margin-bottom: 1.5rem;
    padding: 1rem;
}

.post-img-wrapper {
    flex: 0 0 9rem;
    height: 9rem;
    max-width: 9rem;
    margin-right: 1rem;
    border: 1px solid black;
    overflow: hidden;
}

.post-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 576px) {
    .post-img-wrapper {
        flex: 0 0 3rem;
        height: 3rem;
        max-width: 3rem;
    }
}

/* ========== SELECT2 STYLING ========== */

/* Select2 container */
.select2-container--bootstrap4 .select2-selection {
    border: 3px solid black !important;
    border-radius: 0 !important;
    min-height: 2.6rem;
    padding: 0.4rem;
}

/* Match select2 container height/width with native input */
.filter-select2 + .select2-container,
.filter-select2-single + .select2-container,
.filter-select, 
.filter-input, 
.filter-button{
    border: 2px solid black;
    border-radius: 0 !important;
    height: 42px;
}

/* Selection box styling */
.select2-container--default .select2-selection--multiple,
.select2-container--default .select2-selection--single {
    display: flex;
    align-items: center;
    height: 100% !important;
    border: none !important;
    padding: 4px 8px;
    line-height: 1.2 !important;
}

/* Selected tags */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: black;
    color: white;
    border: none;
    border-radius: 0;
    padding: 2px 6px;
    margin-top: 2px;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Dropdown (options list) */
.select2-dropdown {
    border: 3px solid black !important;
    border-radius: 0 !important;
}

.select2-container--default .select2-results__option {
    font-size: 14px;
}

/* Rendered selections - prevent overflow distortion */
.select2-selection__rendered {
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    white-space: nowrap;
    text-overflow: ellipsis;
}
