  /* ---------------------------------- */
/* BASE STYLES (Desktop/Tablet)       */
/* ---------------------------------- */

.WG-Highlight-Banner-advert {
    box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.16);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: row;
    position: relative;
    padding: 40px 48px; 
}

.WG-Highlight-Banner-advert:hover #WG-Highlight-Banner-arrow {
    right: 38px;
}

.WG-Highlight-Banner-advert:hover .WG-Highlight-Banner-tint {
    background: rgba(0, 0, 0, 0.7);
}

.WG-Highlight-Banner-tint {
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 1.5rem;
    transition: background 0.3s ease;
}

#WG-Highlight-Banner-arrow {
    background: url("https://www.woodplc.com/?a=251534");
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    right: 48px; 
    content: "";
    height: 48px;
    width: 48px;
    background-color: #fff;
    border-radius: 100%;
    z-index: 2;
    transition: right 0.3s ease;
}

.WG-Highlight-Banner-info {
    margin: 0; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    flex-grow: 1; /* Takes up available space */
}

.WG-Highlight-Banner-title {
    color: #fff;
    font-size: 2rem; /*48px;*/
    line-height: 2.5rem; /*69px;*/
    font-weight: bold;
}

.WG-Highlight-Banner-tagline {
    margin-top: 16px;
    font-size: 20px;
    color: #fff;
    line-height: 29px;
}


/* ---------------------------------- */
/* MOBILE STYLES (Below 768px)        */
/* ---------------------------------- */
@media only screen and (max-width: 768px) {
    .WG-Highlight-Banner-advert {
        width: 100%;
        margin: 0px;
        flex-direction: column;
        height: 180px;
        padding: 20px 24px; 
    }

    .WG-Highlight-Banner-info {
        margin: 0; 
        display: flex;
        flex-direction: column;
        justify-content: flex-start; 
        z-index: 2;
    }

    .WG-Highlight-Banner-title {
        color: #fff;
        font-size: 1.5rem;
        line-height: 2rem;
        font-weight: bold;
        margin-top: 0; /* Starts from the top of the padding */
    }
    
    .WG-Highlight-Banner-tagline {
        margin-top: 8px;
        font-size: 1rem;
        color: #fff;
        line-height: 23px;
    }

    #WG-Highlight-Banner-arrow {
        bottom: 8px;
        right: 8px;
        /* Reverted hover to avoid issues in column layout */
        transition: none; 
    }
    .WG-Highlight-Banner-advert:hover #WG-Highlight-Banner-arrow {
        right: 8px;
    }
}
