.dyson-banner-content {
    position: relative;
}

.dyson-banner-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.dyson-banner-text {
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.4) 70%, rgba(255, 255, 255, 0) 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dyson-banner-logo {
    margin-bottom: 10px;
    img {
        max-width: 100%;
        height: auto;
    }
}

.dyson-banner-text-content {
    margin-bottom: 10px;
    p {
        font-size: 20px;
        line-height: 1.5;
        color: black;
    }
}

.dyson-banner-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.dyson-banner-tag {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 16px;
    color: #fff;
}

.dyson-banner-tag--blue-light {
    background-color: #0094E7;
    color: #fff;
}

.dyson-banner-tag--blue-dark {
    background-color: #1653A4;
    color: #fff;
}

.dyson-banner-tag--orange {
    background-color: #FD7528;
    color: #fff;
}

.dyson-banner-tag--teal {
    background-color: #43BD9E;
    color: #fff;
}

.dyson-banner-action-link {
    color: #fff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    background-color: #A1C900;
}

@media (max-width: 767px) {
    .dyson-banner {
        min-height: 400px;
    }

    .dyson-banner-text {
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1) 33%, rgba(255, 255, 255, 0.5) 100%);
    }
}

@media (min-width: 768px) {
    .dyson-banner {
        min-height: 445px;
    }

    .dyson-banner-text {
        width: 50%;
    }
}