.__desktop {
    display: flex !important;
}

.__mobile {
    display: none !important;
}

@media only screen and (max-width: 650px) {
    .__desktop {
        display: none !important;
    }

    .__mobile {
        display: flex !important;
    }
}

.header-wrapper {
    margin-top: 50px;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

#blog-description {
    margin-top: 20px;
}

.blog-section {
    display: flex;
}

.blog-section > div {
    width: 50%;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.blog-section > div > img {
    width: 70%;
    height: 70%;
    object-fit: cover;
    border: 2px solid;
}

.button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 650px) {
    .header-wrapper {
        margin: 30px 0px;
        padding: 0px 20px;
    }

    .blog-section {
        margin-top: 20px;
        flex-direction: column;
        padding: 20px;
    }
    
    .blog-section > div {
        width: 100%;
        padding: 0;
    }

    .blog-section > div > img {
        width: 100%;
        height: 100%;
    }

    .blog-section > .text-part {
        margin-top: 20px;
    }
}


.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.blog-cell {
    border: 1px solid #e1e1e1;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
}

.blog-cell:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.blog-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 20px;
    margin-bottom: 5px;
}

.blog-subtitle {
    font-size: 14px;
    margin-bottom: 10px;
    color: #777;
}

.blog-container {
    padding: 20px;
    text-align: center;
}

.blog-headline {
    font-size: 32px;
    margin-bottom: 30px;
}

