/* Header */
.wp-site-blocks {
    position: relative;
}

/* 404 and search pages */
body.error404 header > .digiblocks-row,
body.search header > .digiblocks-row {
    background-color: #fff;
    position: relative;
}

/* Hero header */
.digiblocks-highlight {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, #52fed0, #89dcc9);
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
}

.digiblocks-highlight:after {
    animation: underlineGrow 2s ease-out;
    background: linear-gradient(135deg, #52fed0, #89dcc9);
    border-radius: 4px;
    bottom: 8px;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
}

@keyframes underlineGrow {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

