/* Custom styling for blog cards */
.cust_blogteaser {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}

    .cust_blogteaser:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    /* Blog image adjustments */
    .cust_blogteaser img {
        border-bottom: 5px solid var(--bs-warning);
        object-fit: cover;
        width: 100%;
        height: 200px;
    }

    /* Blog title styling */
    .cust_blogteaser h3 {
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        font-weight: 700;
        margin: 20px 0;
        padding: 0 15px;
        color: #333;
    }

    /* Blog paragraph and icon */
    .cust_blogteaser p {
        font-family: 'Open Sans', sans-serif;
        font-size: 14px;
        color: #777;
        padding: 0 15px;
        line-height: 1.6;
    }

    .cust_blogteaser a.h2 {
        color: var(--bs-warning);
        text-decoration: none;
        font-size: 1.5rem;
        margin-left: 15px;
    }

        .cust_blogteaser a.h2:hover {
            color: #ffcc00;
        }

/* Section styling */
.container {
    padding-top: 30px;
    padding-bottom: 50px;
}

.cust_bloglistintro {
    margin-bottom: 30px;
    text-align: center;
}

    .cust_bloglistintro p {
        font-size: 16px;
        color: #777;
    }

/* Heading styling */
h1.text-center {
    color: #000;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}
