.hdev-fullpage .row:has(.hdev-regional-linkage-wrapper),
.hdev-fullpage .row.has-hdev-regional-linkage {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hdev-fullpage .col:has(.hdev-regional-linkage-wrapper),
.hdev-fullpage .col.has-hdev-regional-linkage {
    padding-bottom: 0 !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
}

.hdev-regional-linkage-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    padding-left: 0;
}

.hdev-regional-linkage-content-panel {
    position: relative;
    z-index: 2;
    width: 35%;
    max-width: 535px;
    padding: 20px 20px 20px 5%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hdev-regional-linkage-inner {
    width: 100%;
}

.hdev-rl-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: 35px 0 5px 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.hdev-rl-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: 0;
    text-shadow: none;
    text-transform: none;
}

.hdev-rl-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hdev-rl-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hdev-rl-icon {
    width: var(--hdev-icon-size);
    height: var(--hdev-icon-size);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 5px;
}

.hdev-rl-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hdev-rl-icon .dashicons {
    color: #fff;
    font-size: 20px;
}

.hdev-rl-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 3px;
    font-weight: 800;
}

.hdev-rl-value {
    display: block;
    line-height: 1.3;
    font-size: 0.9em;
}

.hdev-regional-linkage-mobile-bg {
    display: none;
    width: 100%;
    background-size: cover;
    background-position: center;
}

@media (max-width: 1024px) {
    .hdev-regional-linkage-content-panel {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .hdev-regional-linkage-wrapper {
        min-height: auto;
        height: auto;
        padding: 0;
        flex-direction: column;
    }

    .hdev-regional-linkage-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-rl-list,
    .hdev-rl-item {
        justify-content: flex-start;
        text-align: left;
    }

    .hdev-rl-item {
        flex-direction: row;
        gap: 15px;
    }

    .hdev-rl-title {
        font-size: 1.8rem;
        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;
        margin-top: 0;
    }

    .hdev-rl-icon .dashicons {
        color: var(--hdev-color-primary);
        /* Change icon color for light bg */
    }

    .hdev-regional-linkage-mobile-bg {
        display: block;
        height: 50vh;
        min-height: 300px;
    }
}