
/* Breadcrumb Section Styles ==========================================================================================================*/
.breadcrumb-section {
    position: relative;
    background-image: url('https://cdn.prod.website-files.com/64ef35c66e6766a880f6171c/666149f537851cea43c3b5e7_664b1cc42e5279a4846acf74_660cfd5b64cd19be5c0c4728_Blog-Page-Banner-3.jpeg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Overlay */
.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

/* Content */
.breadcrumb-content {
    position: relative;
    z-index: 2;
    padding: 1rem;
}

    .breadcrumb-content h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

.breadcrumb-nav {
    font-size: 0.95rem;
}

    .breadcrumb-nav a {
        color: #fff;
        text-decoration: none;
        margin: 0 5px;
    }

    .breadcrumb-nav span {
        margin: 0 5px;
    }

/* Breadcrum Responsive Styles */
@media (min-width: 576px) {
    .breadcrumb-section {
        height: 150px;
    }

    .breadcrumb-content h1 {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .breadcrumb-section {
        height: 200px;
    }

    .breadcrumb-content h1 {
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    .breadcrumb-section {
        height: 300px;
    }
}

@media (min-width: 1200px) {
    .breadcrumb-content h1 {
        font-size: 3.5rem;
    }
}

.recent-stories-container {
    padding: 3.5rem 1rem 4rem;
    background-color: white;
}

    .recent-stories-container h2 {
        font-size: 3rem;
        font-weight: 700;
        text-align: center;
        color: #36949E;
        margin-bottom: 2rem;
    }

.recent-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background-color: #f2fafa;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 500px;
}

    .card img {
        width: 100%;
        height: 12rem;
        object-fit: cover;
    }

.card-content {
    padding: 1.5rem;
    overflow-y: auto;
    height: 100%;
    max-height: 280px;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

    .card-content::-webkit-scrollbar {
        width: 6px;
    }

    .card-content::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 4px;
    }

.card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #36949E;
    margin-bottom: 1rem;
}

.card p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

.footer2 {
/*    position:absolute;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 0 1rem;
    border-radius: 0 0 1rem 1rem;
    margin-top: auto;
}

    .footer2 span {
        font-size: 0.875rem;
        color: black;
    }

    .footer2 i {
        font-size: 1.25rem;
        cursor: pointer;
        color: navajowhite;
    }

        .footer2 i:hover {
            color: black;
        }

/* Responsive */
@media screen and (max-width: 768px) {
    .recent-stories-container h2 {
        font-size: 2rem;
    }

    .card-content {
        max-height: 220px;
    }
}

@media screen and (max-width: 480px) {
    .card h3 {
        font-size: 1rem;
    }

    .card-content {
        padding: 1rem;
        max-height: 200px;
    }
}

