/* ================================
   AB Performance - Home Story CSS
   ================================ */

.ab-performance-home-story-section {
    background-color: #f8f8f8;
    padding: 80px 20px;
}

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

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

/* Image Column */
.ab-performance-home-story-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.ab-performance-home-story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.ab-performance-home-story-image:hover img {
    transform: scale(1.05);
}

/* Text Column */
.ab-performance-home-story-text h2 {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.ab-performance-home-story-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #e1303a;
}

.ab-performance-home-story-text p {
    font-size: 17px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.ab-performance-home-story-text p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .ab-performance-home-story-section {
        padding: 60px 20px;
    }
    
    .ab-performance-home-story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ab-performance-home-story-text h2 {
        font-size: 32px;
    }
    
    .ab-performance-home-story-text p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .ab-performance-home-story-section {
        padding: 40px 20px;
    }
    
    .ab-performance-home-story-text h2 {
        font-size: 28px;
    }
    
    .ab-performance-home-story-text p {
        font-size: 15px;
    }
}