.msb-support-request-item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all .4s;
    cursor: pointer;
    box-shadow: 0px 0px 4px 0px #1D293926;
    backdrop-filter: blur(24px);
    border: 1px solid transparent;
}

.msb-support-request-item:hover {
    /* transform: translateY(-4px); */
    box-shadow: 0px 0px 8px 0px #1D293926;
    border: 1px solid #F4600C;
}

.msb-support-request-item__image {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #F5F5F5;
    aspect-ratio: 16/10;
}

.msb-support-request-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s;
}

.msb-support-request-item:hover .msb-support-request-item__image img {
    transform: scale(1.2);
}

.msb-support-request-item__content {
    padding: 12px;
    flex: 1;
}

.msb-support-request-item__title {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--title-color);
}

.msb-support-request-item__description {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--description-color);
}

/* Popup Styles */
.msb-support-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: c;
}

.msb-support-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.msb-support-popup__container {
    position: relative;
    max-width: 1000px;
    max-height: 90vh;
    margin: 5vh auto;
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.msb-support-popup__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #DEE5EF;
}

.msb-support-popup__title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #091E42;
    flex: 1;
}

.msb-support-popup__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #091E42;
    transition: color 0.2s ease;
    flex-shrink: 0;
    margin: 0;
}

.msb-support-popup__close:hover {
    color: #091E42;
}

.msb-support-popup__body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.msb-support-popup__footer {
    display: none;
    padding: 16px;
    border-top: 1px solid #DEE5EF;
}

.msb-support-popup__button {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(324.32deg, #E45F35 20.9%, #FFA95A 110.29%);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.msb-support-popup__button:hover {
    opacity: 0.9;
}

.msb-support-popup__body p {
    margin: 0 0 16px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #626F86;
}

.msb-support-popup__body p:last-child {
    margin-bottom: 0;
}

.msb-support-popup__body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
}

.msb-support-popup__body ul,
.msb-support-popup__body ol {
    margin: 0 0 16px 0;
    padding-left: 24px;
}

.msb-support-popup__body li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: #626F86;
}

@media (max-width: 991px) {
    .msb-support-request-item__title {
        font-size: 18px;
    }

    .msb-support-request-item__description {
        font-size: 14px;
    }

    .msb-support-popup__container {
        max-width: 90%;
    }

    .msb-support-popup__title {
        font-size: 20px;
    }
}

@media (max-width: 767px) {

    .msb-support-popup {
        display: flex;
        align-items: flex-end;
    }

    .msb-support-request-item__content {
        padding: 20px;
    }

    .msb-support-request-item__title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .msb-support-request-item__description {
        font-size: 14px;
    }

    .msb-support-popup__container {
        max-width: 100%;
        height: 100vh !important;
        margin: 0 !important;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }

    .msb-support-popup__header,
    .msb-support-popup__body {
        padding: 16px;
    }

    .msb-support-popup__title {
        font-size: 18px;
    }

    .msb-support-popup__footer {
        display: block;
    }
}
