/* Layout Wrapper */
.af-wrapper-a115d0a2 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
}

/* Image Column - Now stretches to match right side */
.af-image-col-a115d0a2 {
    flex: 1 1 400px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
    /* Force height stretch if inside flex container */
    display: flex;
}

/* Image covers the entire column height */
.af-main-img-a115d0a2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* Badge */
.af-badge-a115d0a2 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #f78c1e 0%, #e85d04 100%);
    color: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border: 2px solid rgba(255,255,255,0.4);
    z-index: 2; /* Ensure above absolute image */
}

.af-badge-icon-a115d0a2 {
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.af-badge-icon-a115d0a2 svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.af-badge-content-a115d0a2 {
    display: flex;
    flex-direction: column;
}

.af-badge-num-a115d0a2 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
}

.af-badge-text-a115d0a2 {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
}

/* Features Grid */
.af-features-a115d0a2 {
    flex: 2 1 500px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

/* Feature Item */
.af-feature-item-a115d0a2 {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.af-feature-item-a115d0a2:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.af-feature-icon-a115d0a2 {
    font-size: 28px;
    color: #e85d04;
    background: #fff4eb;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(232, 93, 4, 0.15);
}

.af-feature-icon-a115d0a2 svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.af-feature-text-a115d0a2 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.af-feature-title-a115d0a2 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.af-feature-desc-a115d0a2 {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .af-image-col-a115d0a2 {
        min-height: 350px;
    }
    .af-features-a115d0a2 {
        grid-template-columns: 1fr;
    }
}
