/*
 * 50 Page dental imaging software.
 * Load order: content-style.css -> css/10-content-patterns.css -> css/15-woocommerce.css -> css/20-page-patterns.css -> css/20-support-pages.css -> style.css -> css/pages/50-page-*.css.
 * Purpose: Dental Imaging Software page-only section overrides loaded on page ID 2.
 * Related files: content-style.css holds tokens/base utilities; css/10-content-patterns.css holds reusable components.
 * Scope: these rules were moved from style.css and target .dmax-dis-* classes.
 */

:root {
    --dmax-color-success: #2e7d32;
}

/* Dental Imaging Software — S2 Feature Cards */
.dmax-dis-features-title {
    margin-bottom: 3.5rem;
}

.dmax-dis-features-grid .kt-row-column-wrap {
    /* gap: 3.5rem; */
}

.dmax-dis-feature-card {
    background: #f0f8ff;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
}

.dmax-dis-feature-icon {
    height: 3.8125rem;
    display: flex;
    align-items: center;
    margin-bottom: 1.875rem;
}

.dmax-dis-feature-icon i {
    font-size: 3.5rem;
    color: var(--global-palette3, #3cbce6);
}

.dmax-dis-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.875rem;
    margin-bottom: 0.75rem;
}

.dmax-dis-feature-card p {
    margin-bottom: 0;
    font-size: 1rem;
}

@media (max-width: 767px) {
    .dmax-dis-features-grid .kt-row-column-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 479px) {
    .dmax-dis-features-grid .kt-row-column-wrap {
        grid-template-columns: 1fr;
    }
}

/* Dental Imaging Software — S3 Integration (bgImg pattern) */
.dmax-dis-integration-section {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.dmax-dis-integration-title {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.3);
}

.dmax-dis-integration-copy {
    color: #ffffff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.2);
    max-width: 500px;
}

/* Button colors handled by per-block attrs (color + borderStyle on singlebtn) — works in both frontend AND editor */

/* Dental Imaging Software — S6 Already Have Imaging */
.dmax-dis-already-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Dental Imaging Software — S7 Comparison Table — mobile padding handled by column mobilePadding attr */

/* Comparison Table Green Check Icons */
.dmax-dis-compare-section .dmax-table-check,
.editor-styles-wrapper .dmax-dis-compare-section .dmax-table-check {
    color: var(--dmax-color-success, #2e7d32);
}