.podcast-image img{
	width: 100%;
}


.podcast-content h5 a {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	webkit-line-clamp: 1;
	overflow: hidden;
}

@media (max-width: 991.98px) {
    .header-navbar.navbar {
        flex-direction: column;
        align-items: center;
    }

    .header-navbar .navbar-brand {
        margin-bottom: 10px; /* Add some space below the logo */
    }

    .header-navbar .navbar-collapse {
        display: block; /* Ensure the collapse content is visible */
        width: 100%;
        flex-basis: auto;
        flex-grow: 1;
    }

    .header-navbar .navbar-nav {
        flex-direction: row; /* Arrange nav items horizontally */
        width: auto;
        justify-content: space-around; /* Distribute items evenly */
    }

    .header-navbar .navbar-nav .nav-item {
        /* width: 100%; */ /* Remove full width for horizontal layout */
        /* text-align: left; */ /* Remove text alignment for horizontal layout */
        padding: 0 10px; /* Add horizontal padding for spacing between items */
    }

    .header-navbar .navbar-nav .nav-link {
        padding: 10px 0; /* Adjust padding for better spacing */
    }

    /* Ensure the dropdown is visible and correctly positioned */
    .header-navbar .navbar-nav .nav-item.dropdown {
        display: block; /* Keep the dropdown visible */
        width: auto; /* Allow dropdown to take natural width */
        margin-left: auto; /* Push dropdown to the right */
    }

    .header-navbar .navbar-nav .nav-item.dropdown .dropdown-content {
        position: static; /* Make dropdown content flow naturally */
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
    }
}


