:root {
    --color-white: #FFFFFF;
    --color-text-primary: #000000;
    --color-text-secondary: #333333;
    --color-link: #1F2C3D;
    --color-link-hover: #13AFF0;
    --color-link-navigation: #1F2C3D;
    --color-link-footer: #999999;
    --color-link-footer-hover: #13AFF0;
    --color-border: #2A2A2A2A;
    --color-header-background: #FFFFFF;
    --color-navigation-background: #1F2C3D;
    --color-blog-post-tag-background: #1F2C3D;

    --color-logo-dark-blue: #162351;
    --color-logo-dark-orange: #F46309;
    --color-logo-anhrazit: #4D4D4D;

    --max-width: 1400px;

    --z-index-header: 100;
    --z-index-overlay: 99;

    --swiper-theme-color: #2a2a2a;
}
main {
    padding: 2vh 0 10vh 0
}

.blog-actions {
    display: flex;
    flex-direction: column;
    margin-top: 0!important;
}

.blog-search-container {
    height: 30dvh;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
}

.blog-posts-container {
    gap: 20px;
    flex-wrap: wrap;
    transition: all 150ms linear;
    display: grid;

    grid-template-columns: 1fr;

    @media screen and (min-width: 768px) {
        grid-template-columns: repeat(2, 1fr);
    }

    @media screen and (min-width: 1024px) {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-filters-container {
    display: flex;
    gap: 20px;
    padding: 30px 0;
    flex-wrap: wrap;
}

.blog-filter {
    background-color: white;
    color: #f5851e;
    border: 2px solid #f5851e;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: capitalize;
}

.blog-filter[active] {
    background-color: #f5851e;
    color: white;
}

.blog-filter:hover {
    background-color: var(--color-blog-post-tag-background);
    color: var(--color-white);
    border-color: var(--color-blog-post-tag-background);
}

.blog-post {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    color: var(--color-blog-post-tag-background);
    min-width: 300px;
    max-width: 100%;
    justify-content: space-between;
    transition: all 200ms ease-in;
}

.icon {
    transition: all 200ms ease-in;
    width: 24px;
    height: 24px;
    margin: 0;
    color: inherit;
}

.blog-post:hover {
    color: var(--color-blog-post-tag-background);
}

.blog-post__image {
    display: flex;
    border: 1px solid transparent;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.blog-post-tag {
    text-transform: capitalize;
    background-color: var(--color-blog-post-tag-background);
    color: white;
    display: flex;
    font-size: 0.8rem;
    justify-content: center;
    border-radius: 12px;
    padding: 5px 10px;
    font-weight: 500;
}

.blog-post-header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    max-height: 46px;
}

.blog-post-image {
    height: 300px;
}

.blog-post-title {
    font-size: 2rem;
    display: flex;
    padding: 10px;
}

.blog-post__button {
    border-top: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}