.customer-spotlight-main {
    width: 100%;
    max-width: 1440px;
    padding: 0px 120px;
}

.customer-spotlight-head {
    width: 100%;
    color: var(--Text-gray-100, #1B1C1D);
    font-size: 32px;
    font-style: normal;
    font-weight: 350;
    line-height: 125%;
    margin-bottom: 24px;
    padding: 0 120px;
    /* margin-top: 40px; */
}

.customer-spotlight {
    padding: 0 120px;
    margin-bottom: 40px;
}

.customer-spotlight-item {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    border-radius: 4px;
    background: #00274D;
    overflow: hidden;
}

.customer-spotlight-left {
    padding: 24px;
}

a.customer-spotlight-title {
    color: var(--Text-white-text, #FFF);
    font-size: 24px;
    font-style: normal;
    font-weight: 350;
    line-height: 135%;
}

a.customer-spotlight-title:hover,
a.customer-spotlight-title.titlehover {
    text-decoration: underline !important;
    text-decoration-color: #C3C4C5 !important;
    text-decoration-thickness: 1px !important;
    text-underline-offset: 5px !important;
}

.titlehover {
    text-decoration: underline !important;
    text-decoration-color: #C3C4C5 !important;
    text-decoration-thickness: 1px !important;
    text-underline-offset: 5px !important;
}

.customer-spotlight-misc {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    margin-top: 16px;
}

.customer-spotlight-tag {
    font-weight: 400;
    font-size: 12px;
    height: 24px;
    line-height: 24px;
    display: block;
    letter-spacing: 0.02em;
    color: #00BCEB;
    border: 1px solid #00BCEB;
    border-radius: 2px;
    padding: 0px 8px;
}

.customer-spotlight-tag:hover,
.customer-spotlight-tag:focus {
    background-color: #0076D529;
}

a.customer-spotlight-link {
    display: block;
    width: 282px;
    height: 163px;
}

.customer-spotlight-contentType {
    color: var(--Text-white-text, #FFF);
    font-size: 12px;
    font-style: normal;
    font-weight: 350;
    line-height: 140%;
    letter-spacing: 0.24px;
}

.customer-spotlight-sepatator {
    color: var(--Text-white-text, #FFF);
    font-size: 12px;
    font-style: normal;
    font-weight: 350;
    line-height: 140%;
    letter-spacing: 0.24px;
}

.customer-spotlight-date {
    color: var(--Text-white-text, #FFF);
    font-size: 12px;
    font-style: normal;
    font-weight: 350;
    line-height: 140%;
    letter-spacing: 0.24px;
}


/* Media Queries */

@media screen and (min-width: 768px) and (max-width:1024px) {
    .customer-spotlight-head {
        padding: 0 48px;
        margin-top: 40px;
    }

    .customer-spotlight {
        padding: 0 48px;
    }

    .customer-spotlight-item {
        display: flex;
        align-items: baseline;
        flex-direction: column-reverse;
    }

    a.customer-spotlight-link {
        display: block;
        width: 180px;
        height: 104px;
        margin: 24px 0px 0px 24px;
    }
}

@media screen and (-webkit-min-device-pixel-ratio: 3) and (max-width: 767px) {

    .customer-spotlight-head {
        padding: 0 16px;
        font-size: 24px;
        margin-top: 40px;
    }

    .customer-spotlight {
        padding: 0 16px;
    }

    .customer-spotlight-item {
        display: flex;
        align-items: baseline;
        flex-direction: column-reverse;
    }

    a.customer-spotlight-title {
        font-size: 20px;
    }

    a.customer-spotlight-link {
        display: block;
        width: 120px;
        height: 70px;
        margin: 24px 0px 0px 24px;
    }
}

@media screen and (max-width: 767px) {
    .customer-spotlight-head {
        padding: 0 16px;
        font-size: 24px;
        margin-top: 40px;
    }

    .customer-spotlight {
        padding: 0 16px;
    }

    .customer-spotlight-item {
        display: flex;
        align-items: baseline;
        flex-direction: column-reverse;
    }

    a.customer-spotlight-title {
        font-size: 20px;
    }

    a.customer-spotlight-link {
        display: block;
        width: 120px;
        height: 70px;
        margin: 24px 0px 0px 24px;
    }
}