/* ================================
   AB Performance - Home Story CSS
   Clean Professional Layout
   ================================ */

.ab-performance-story-section {
    background-color: #1a1a1a;
    padding: 100px 20px;
}

.ab-performance-story-container {
    max-width: 1280px;
    margin: 0 auto;
}

.ab-performance-story-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* --------------------------------
   Image
   -------------------------------- */
.ab-performance-story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* --------------------------------
   Text
   -------------------------------- */
.ab-performance-story-text {
    color: #ffffff;
}

.ab-performance-story-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #E9A329;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
}

/* Heading */
.ab-performance-story-text h2 {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 24px;
    padding-bottom: 18px;
    position: relative;
}

.ab-performance-story-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #e1303a, #E9A329);
    border-radius: 2px;
}

/* Body Paragraphs */
.ab-performance-story-text > p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Quote */
.ab-performance-story-quote {
    font-size: 16px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 28px 0;
    padding: 20px 24px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    border-left: 3px solid #e1303a;
}

.ab-performance-story-quote cite {
    display: block;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    color: #E9A329;
    margin-top: 10px;
}

/* Clients line */
.ab-performance-story-clients {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin: 0;
}

.ab-performance-story-clients strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* ================================
   Responsive Design
   ================================ */

@media (max-width: 968px) {
    .ab-performance-story-section {
        padding: 80px 20px;
    }
    
    .ab-performance-story-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .ab-performance-story-image {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .ab-performance-story-text {
        text-align: center;
    }
    
    .ab-performance-story-text h2 {
        font-size: 30px;
    }
    
    .ab-performance-story-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .ab-performance-story-quote {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .ab-performance-story-section {
        padding: 70px 20px;
    }
    
    .ab-performance-story-content {
        gap: 40px;
    }
    
    .ab-performance-story-text h2 {
        font-size: 26px;
        padding-bottom: 14px;
        margin-bottom: 20px;
    }
    
    .ab-performance-story-text h2::after {
        width: 40px;
    }
    
    .ab-performance-story-text > p {
        font-size: 15px;
    }
    
    .ab-performance-story-quote {
        font-size: 15px;
        padding: 18px 20px;
        margin: 24px 0;
    }
    
    .ab-performance-story-clients {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .ab-performance-story-section {
        padding: 60px 15px;
    }
    
    .ab-performance-story-image {
        max-width: 100%;
    }
    
    .ab-performance-story-text h2 {
        font-size: 24px;
    }
    
    .ab-performance-story-text > p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .ab-performance-story-quote {
        font-size: 14px;
        padding: 16px 18px;
    }
    
    .ab-performance-story-quote cite {
        font-size: 12px;
    }
    
    .ab-performance-story-clients {
        font-size: 12px;
        line-height: 2;
    }
}