/**
 * About Story Widget Styles
 * 
 * @package PWZ_Theme
 * @since 1.0.0
 */

.pwz-about-story {
    padding: 100px 0;
}

.pwz-story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pwz-story-layout-right .pwz-story-content {
    order: 1;
}

.pwz-story-layout-right .pwz-story-image {
    order: 2;
}

.pwz-story-image img {
    width: 100%;
    height: auto;
    border-radius: var(--pwz-border-radius);
}

.pwz-story-subtitle {
    font-family: var(--pwz-font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--pwz-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.pwz-story-title {
    font-family: var(--pwz-font-heading);
    font-size: 42px;
    font-weight: 600;
    color: var(--pwz-primary-text);
    line-height: 1.2;
    margin-bottom: 20px;
}

.pwz-story-text {
    font-family: var(--pwz-font-body);
    font-size: 16px;
    color: var(--pwz-secondary-text);
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .pwz-about-story {
        padding: 60px 0;
    }
    
    .pwz-story-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pwz-story-layout-right .pwz-story-content {
        order: 1;
    }
    
    .pwz-story-layout-right .pwz-story-image {
        order: 2;
    }
    
    .pwz-story-title {
        font-size: 28px;
    }
}

