/* Deal Grid Styles */
.deal-grid-container {
    display: flex;
    gap: 70px;
    max-width: 100%;
    margin: 0 auto;
}

.deal-filter-sidebar {
    flex: 0 0 25%;
    border-radius: 8px;
}

.deal-filter-sidebar h3 {
    margin: 0 0 23px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.deal-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deal-filter-list li {
    margin-bottom: 20px;
}

.deal-filter-list a {
    display: block;
    padding: 0px 40px 10px 0px;
    text-decoration: none;
    color: #646E84;
    cursor: pointer;
    border-bottom: solid 3px transparent;
    font-size: 24px;
}

.deal-filter-list a:hover,
.deal-filter-list a.active {
    color: #A3B48D;
	border-bottom: solid 3px #A3B48D;
	background: url(/wp-content/uploads/2025/06/Group-36.svg) center right no-repeat;
}
.deal-filter-list a.view-all {
    letter-spacing: 8px;
}

.deal-content-area {
    flex: 0 0 75%;
}
.deal-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: #EBEBF2A6;
    border-radius: 20px;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

.deal-item.hidden {
    display: none;
}

.deal-image-column {
    flex: 0 0 30%;
    background-size: cover;
    background-position: center;
    min-height: 316px;
    border-radius: 20px;
}

.deal-image-column img {
    width: 100%;
    height: 316px;
    object-fit: cover;
    border-radius: 20px;
}

.deal-content-column {
    padding: 20px 25px 45px 20px;
}

.deal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: solid 1px #858EA24A;
    padding-bottom: 20px;
}

.deal-industry-tag {
    color: #477691;
    font-weight: 700;
    font-size: 26px;
}

.deal-enquire-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #A3B48D !important;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
    font-size: 22px;
    min-width: 145px;
    justify-content: space-between;
}
.deal-enquire-btn img {
    width: 19px;
    height: 21px;
}

.deal-bottom-area {
    display: flex;
    gap: 20px;
}

.deal-strengths,
.deal-opportunities {
    flex: 1;
}

.deal-strengths h4,
.deal-opportunities h4 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 700;
    color: #333740;
}
.deal-strengths p,
.deal-opportunities p {
    margin: 0;
    line-height: 1.5;
}

.no-deals {
    text-align: center;
    padding: 40px;
    color: #666;
    display: none;
}

.deals-count {
    margin-bottom: 20px;
    color: #636E86;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .deal-grid-container {
        flex-direction: column;
    }
    
    .deal-filter-sidebar,
    .deal-content-area {
        flex: none;
    }
    
    .deal-item {
        flex-direction: column;
    }
    
    .deal-image-column,
    .deal-content-column {
        flex: none;
    }
    
    .deal-bottom-area {
        flex-direction: column;
    }
}