.hdev-overview-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    padding-left: 0;
}

.hdev-overview-content-panel {
    position: relative;
    z-index: 2;
    width: 30%;
    max-width: 450px;
    padding: 20px 20px 20px 5%;
    background: rgba(81, 81, 81, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hdev-overview-inner {
    width: 100%;
}

.hdev-ov-title {
    font-family: var(--hdev-font-heading);
    font-size: var(--hdev-fs-heading-opt);
    background: var(--hdev-color-heading-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    margin: 0 0 5px 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.hdev-ov-subtitle {
    font-family: var(--hdev-font-subheading);
    font-size: var(--hdev-fs-subheading-opt);
    color: var(--hdev-gold);
    font-weight: 300;
    font-style: italic;
    margin-top: -10px;
    margin-bottom: 10px;
    text-shadow: none;
    text-transform: none;
}

.hdev-ov-divider {
    width: 50px;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
    margin: 20px 0 30px 0;
}

.hdev-ov-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.hdev-ov-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hdev-ov-icon {
    width: var(--hdev-icon-size);
    height: var(--hdev-icon-size);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hdev-ov-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hdev-ov-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 3px;
    font-weight: 800;
}

.hdev-ov-value {
    display: block;
    line-height: 1.3;
    font-size: 0.9em;
}

.hdev-overview-mobile-bg {
    display: none;
    width: 100%;
    background-size: cover;
    background-position: center;
}

@media (max-width: 1024px) {
    .hdev-overview-content-panel {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .hdev-overview-wrapper {
        min-height: auto;
        height: auto;
        padding: 0;
        flex-direction: column;
    }

    .hdev-overview-content-panel {
        width: 100%;
        max-width: 100%;
        background: #fff;
        color: #333;
        /* Ensure dark text on white bg */
        padding: 30px 20px;
        border-radius: 0;
        text-align: left;
    }

    .hdev-ov-list {
        align-items: flex-start;
    }

    .hdev-ov-item {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        gap: 15px;
    }

    .hdev-ov-title {
        font-size: 2rem;
        text-align: left;
        background: var(--hdev-color-heading-text);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        display: inline-block;
        /* Ensure dark title */
    }

    .hdev-overview-mobile-bg {
        display: block;
        height: 50vh;
        min-height: 300px;
    }
}