/* Blog Template Styles */

        .Bblogs-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 12vh 0;
            text-align: center;
            border-radius: 10px;
            position: relative;
        }
        
        .Bblogs-intro::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, .8); /* Dark overlay */
        }
        
        .Bblogs-intro h1 {
            font-size: 3.5rem;
            font-weight: normal;
            margin-top: 0px;
            margin-bottom: 30px;
            color: #ffffff;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
            position: relative;
        }
        
        .Bblogs-intro p {
            margin: 0 25%;
            color: #ffffff;
            font-size: 1.2rem;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
            position: relative;
        }
        
        .Bblog-list {
            max-width: 1400px;
            display: grid;
            margin-top: 50px;
            gap: 40px;
            grid-template-columns: 1fr;
        }
        
        .Bblog-entry {
            background-color: #202020;
            padding: 100px 5% 50px 5%;
            border-radius: 12px;
        }
        
        .Bblog-entry h2 {
            text-align: left;
            font-size: 2.2rem;
            color: #e8e8e8;
            margin-bottom: 15px;
        }

        .Bblog-entry h3 {
            text-align: left;
            font-size: 1.8rem;
            font-weight: normal;
            color: #e8e8e8;
            margin-bottom: 15px;
        }
        
        .Bblog-entry .date {
            font-size: 1rem;
            color: #bbbbbb;
            margin-bottom: 20px;
        }
        
        .Bblog-entry p {
            text-align: left;
            line-height: 1.6;
            font-size: 1.2rem;
            color: #d0d0d0;
        }
        
        .Bblog-entry img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 10px;
        }
        
        .read-more {
            width: 10vw;
            padding: 12px 25px;
            margin-top: 30px;
            border: none;
            background-color: #FF0000;
            font-size: 1.2rem;
            color: #fff;
            cursor: pointer;
            border-radius: 8px;
            transition: background-color 0.3s ease, transform 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .read-more:hover {
            background-color: #FF4848;
            transform: scale(1.05);
        }

        .entryheading {
            display: flex;
            align-items: flex-end;
            flex-direction: row;
        }

        .entryheading p {
            margin-left: 20px;
            margin-bottom: 21px;
        }

/* Mobile */

@media (max-width: 768px) {
    .Bblogs-section h1 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .Bblog-entry {
        background-color: #202020;
        padding: 5% 0;
        border-radius: 0px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .read-more {
        width: 50vw;
        padding: 12px 25px;
        margin-top: 30px;
        border: none;
        background-color: #FF0000;
        font-size: 1.2rem;
        color: #fff;
        cursor: pointer;
        border-radius: 8px;
        transition: background-color 0.3s ease, transform 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .Bblogs-intro p {
        margin: 0;
        color: #ffffff;
        font-size: .9rem;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
        position: relative;
    }

    .Bblog-entry img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        /* object-position: 0px -650px; */
        border-radius: 0px;
    }

    .Bblog-entry h2 {
        font-size: 1.5rem;
        color: #e8e8e8;
        margin: 3% 0px 5% 3%;
    }

    .Bblog-entry p {
        line-height: 1.6;
        font-size: 0.9rem;
        color: #d0d0d0;
        padding: 0 3%;
    }

    .Bblogs-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10vh 0%;
        text-align: center;
        border-radius: 0px;
    }

    .Bblogs-p2 {
        margin: 20px 340px 0 340px;
        color: #7f7f7f;
        font-size: 0.9rem;
    }

    .Bblogs-p1 {
        margin: 20px 340px 0 340px;
        font-size: 0.9rem;
    }

    .Bblog-entry h3 {
        text-align: left;
        font-size: 1.3rem;
        font-weight: normal;
        color: #e8e8e8;
        margin: 3% 0px 5% 3%;
    }

    .entryheading p {
        margin-left: 20px;
        margin-bottom: 24px;
        text-align: right;
    }

    .entryheading {
        display: flex;
        align-items: flex-end;
        flex-direction: row;
        justify-content: space-between;
    }
}