/**
 * BFD Single Product Functions - Brand Description Styles
 * 
 * @package BFDSingleProductFunctions
 */

.brand-info-container {
    display: flex;
    flex-direction: row-reverse;
    gap: 80px;
}

.brand-image-column {
    width: 50%;
}

.brand-image img {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    object-fit: cover;
}

.brand-content-column {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.brand-heading {
    font-size: 32px;
    font-weight: 600;
    color: #000C5E;
    line-height: 116%;
}

.brand-sub-heading {
    font-size: 20px;
    font-weight: 600;
    color: #000C5E;
    line-height: 120%;
}

@media (max-width: 1024px) {
    .brand-info-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .brand-image-column, .brand-content-column {
        width: 100%;
    }
    
    .brand-heading {
        font-size: 26px;
        font-weight: 500;
        line-height: 120%;
    }
    
    .brand-sub-heading {
        font-size: 16px;
        font-weight: 600;
        line-height: 120%;
    }
    
    .brand-description {
        font-size: 14px;
        font-weight: 300;
        line-height: 140%;
    }
}
