/* Piano Art Features Styles */
.piano-art-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
    position: relative;
}

/* Horizontal divider line */
.piano-art-container::before {
    content: '';
    display: block;
    width: 600px;
    height: 1px;
    background-color: #e5e5e5;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.piano-art-wrapper {
    display: flex;
    align-items: flex-start;
}

.piano-art-header {
    width: 30%;
    padding-right: 20px;
}

.piano-art-title {
    font-size: 29px;
    color: #C9A55D;
    margin-bottom: 10px;
    font-weight: 500;
}

.piano-art-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-family: inherit; /* Use theme's font */
}

/* Features layout for desktop-first design */
.piano-art-features {
    display: flex;
    width: 70%;
    justify-content: space-between;
}

.piano-art-feature {
    display: flex;
    flex-direction: row; /* Changed from column to row */
    align-items: center; /* Align items vertically in the center */
    text-align: left; /* Changed from center to left */
    width: 33.333%;
    padding: 0 10px;
}

.piano-art-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px; /* Changed from margin-bottom to margin-right */
    height: 50px;
    min-width: 40px; /* Added min-width to ensure icon has space */
}

.piano-art-icon,
.piano-art-default-icon {
    width: 40px;
    height: 40px;
}

.piano-art-png-icon {
    width: 40px;
    height: auto;
    max-height: 40px;
    object-fit: contain;
}

.piano-art-feature-content {
    text-align: left; /* Changed from center to left */
}

.piano-art-feature-title {
    font-size: 16px;
    color: #C9A55D;
    margin: 0 0 5px 0;
    font-weight: 500;
    text-transform: uppercase;
}

.piano-art-feature-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-family: inherit; /* Use theme's font */
}

/* Mobile view */
@media (max-width: 767px) {
    .piano-art-wrapper {
        flex-direction: column;
    }
    
    .piano-art-header {
        width: 100%;
        padding-right: 0;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .piano-art-features {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    
    .piano-art-feature {
        width: 100%;
        max-width: 300px;
        margin-bottom: 30px;
        /* Add this to center the feature items */
        justify-content: center;
        text-align: center;
    }
    
    /* Add this to center the text content */
    .piano-art-feature-content {
        text-align: center;
    }
    
    .piano-art-title {
        font-size: 22px;
    }
    
    .piano-art-subtitle {
        font-size: 14px;
    }
}