/* Product Grid Section Styles - Shared between all pages */

/* Product Grid Section */
.product-grid-section {
    padding: 0 20px;
}

.product-grid-section--alt {
    background: #f9fafb;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 0;
    gap: 20px;
}

.section-header__content {
    flex: 1;
}

/* Section Title */
.section-title {
    font-size: 28px;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 4px 0;
    line-height: 1.2;
    text-align: left;
}

/* Section Subtitle */
.section-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* View All Link */
.view-all-link {
    color: var(--ub-magenta, #CE2984);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.view-all-link:hover {
    color: #2d3e54;
    text-decoration: none;
}

/* Product Grid Container */
.product-grid-container .product-grid .row {
    justify-content: center;
}

/* Responsive adjustments for product grid sections */
@media (max-width: 767px) {
    .product-grid-section {
        padding: 0 15px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
    }
}
