.bhd-container {
    position: relative;
    width: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    color: #fff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.bhd-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.bhd-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    height: 100%;
    box-sizing: border-box;
    align-items: center;
}

.bhd-left-col {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.bhd-right-col {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
    /* Increased padding to make content narrower */
    box-sizing: border-box;
    text-align: center;
    /* Center align text */
    align-items: center;
    /* Center align flex items */
}

.bhd-feature-image {
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.bhd-title {
    font-size: 1.8em;
    margin: 0 0 10px 0;
    color: #fff;
    line-height: 1.2;
}

.bhd-date {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 20px;
    /* text-transform: uppercase; */
    font-style: italic;
    font-weight: 300;
    letter-spacing: 1px;
}

.bhd-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #eee;
}

.bhd-button {
    display: inline-block;
    padding: 10px 0;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid #fff;
    transition: opacity 0.3s;
    align-self: center;
    /* Ensure button is centered */
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.bhd-button:hover {
    opacity: 0.8;
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 1000px) {
    .bhd-content-wrapper {
        flex-direction: column;
        padding: 30px 20px;
    }

    .bhd-left-col {
        display: none;
    }

    .bhd-right-col {
        flex: 1;
        max-width: 100%;
        width: 100%;
        text-align: center;
        align-items: center;
        padding: 0;
        /* Reset padding on mobile */
    }

    .bhd-title {
        font-size: 2rem;
    }

    .bhd-button {
        align-self: center;
    }
}