/* Deal modal: company header + deal image layout */
.deal-modal-company-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.deal-modal-company-logo {
    max-height: 50px;
    height: auto;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.deal-modal-company-name {
    margin: 0 !important;
    font-family: 'Roboto Condensed', sans-serif !important;
    font-weight: 500;
    color: #000;
    line-height: 1.3;
}

/* Hide legacy floating mobile logo — logo now sits beside company name */
.categoryModal_MobileImg_container {
    display: none !important;
}

.categoryModal_deal_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.categoryModal_img_container {
    max-width: 50%;
    width: 50%;
    height: auto;
    flex-shrink: 0;
    display: block !important;
}

.categoryModal_img_container img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.categoryModal_btn_container {
    flex: 1 1 50%;
    max-width: 50%;
    width: 50%;
}

@media (max-width: 782px) {
    .categoryModal_deal_section {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .categoryModal_img_container {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }

    .categoryModal_img_container img {
        max-height: none;
        width: 100%;
    }

    .categoryModal_btn_container {
        flex: 1 1 auto;
        max-width: 100%;
        width: 100%;
    }
}
