
    .weblog-container {
        margin: 4rem 0;
    }

    .weblog-entry {
        background: #2c2c2c;
        border-radius: 12px;
        box-shadow: 0 1px 6px rgba(0,0,0,0.04);
        padding: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .weblog-entry-image {
        width: 100%;
        height: 30rem;
        object-fit: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 8px;
        margin-bottom: 12px;
    }

    .weblog-entry-title-btn {
        background: transparent;
        color: #fff;
        border: none;
        border-radius: 6px;
        padding: 8px 12px;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 10px;
        transition: background 0.2s;
    }

    .weblog-entry-excerpt {
        font-size: 1.3rem;
        color: #fcfcfc;
        margin-bottom: 14px;
        text-align: center;
        max-width: 33rem;
    }

    .weblog-entry-readmore {
        color: #6274d0;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.2rem;
        transition: color 0.2s;
    }
    .weblog-entry-readmore:hover {
        color: #7e8fe2;
    }
    
    
    .weblog-entries {
        padding-right: 2rem;
        padding-left: 2rem;
    }
        
    @media (min-width: 768px) {
        .weblog-entries {
            grid-template-columns: auto auto;
            gap: 32px;
            justify-items: center;
            justify-content: center;
            display: grid;
        }
        .weblog-entry {
            max-width: 550px !important;
        }

    }
    
    @media (max-width: 767px) {
        .weblog-entries {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            justify-items: center;
        }
        .weblog-entry {
            max-width: 350px;
        }
    }
    
    @media (min-width: 1200) {
        .weblog-entries {
            grid-template-columns: auto auto;
            gap: 32px;
            justify-items: center;
            justify-content: center;
            display: grid;
        }
        .weblog-entry {
            max-width: 550px !important;
        }
    }
    
    @media (min-width: 1500px) {
        .weblog-entries {
            grid-template-columns: auto auto auto auto;
            gap: 32px;
            justify-items: center;
            justify-content: center;
            display: grid;
        }
        .weblog-entry {
            max-width: 550px !important;
        }
    }
    
    .weblog-slide {
        position: fixed;
        top: 0;
        right: -100vw;
        width: 100vw;
        height: 100vh;
        background: #232323;
        color: #fff;
        z-index: 9999;
        transition: right 0.4s cubic-bezier(.4,0,.2,1);
        box-shadow: -2px 0 16px #0006;
        padding: 40px 24px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .weblog-slide.active {
        right: 0;
    }
    .close-slide {
        background: #6274d0;
        color: #fff;
        border: none;
        border-radius: 6px;
        padding: 8px 18px;
        font-size: 1.1rem;
        margin-bottom: 24px;
        cursor: pointer;
        align-self: flex-end;
    }
    
    @media screen and (min-width: 900px) {
        .weblog-container {
            margin-top: 14rem !important;
        }
    }