/* Color Palette: Burgundy/Wine (#a60c32), Dark Charcoal (#333333), Light Gray (#e0e0e0) */

.client-wins-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.client-wins-heading {
    font-size: 24px;
    font-weight: 500;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.client-wins-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .client-wins-grid {
        grid-template-columns: 1fr;
    }
}

/* Card Outer Frame */
.client-win-card {
    display: flex;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
	padding:10px;
    box-sizing: border-box;
}

/* Left Image Container */
.client-win-image {
    width: 60%;
    min-height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
}

.card-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Right Content Area */
.client-win-content {
    width: 40%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
}

/* Badge */
.client-win-category {
    background-color: #a60c32;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    margin-bottom: 12px;
    display: inline-block;
}

/* Title */
.client-win-title {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
    margin: 0 0 10px 0;
}

.client-win-title a {
    color: #a60c32;
    text-decoration: none;
}

.client-win-title a:hover {
    text-decoration: underline;
}

/* Excerpt */
.client-win-excerpt {
    font-size: 13px;
    line-height: 1.5;
    color: #666666;
    margin: 0 0 16px 0;
    flex-grow: 1;
}

/* Date */
.client-win-date {
    font-size: 12px;
    color: #777777;
}

/* View More Button Container */
.client-wins-button-wrapper {
   display: flex;
    justify-content: center;
    margin-top: 32px;
    border-top: 2px solid #7e7b7b;
    padding: 30px;
}

/* View More Button */
#client-wins-load-more {
    background: transparent;
    color: #333333;
    border: 3px solid #a60c32;
    padding: 12px 36px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

#client-wins-load-more:hover {
    background-color: #a60c32;
    color: #ffffff;
}