/**
 * Component Styles: Development Models
 *
 * Component-specific styling for the development-models component.
 * Shared tabs styling is in /inc/ui/tabs/tabs.css
 *
 * @package RIKAI_Marketing
 * @since 1.0.0
 */

/* Tab Header */
.tab-content--header {
    margin-bottom: 24px;
}

.tab-content--header-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.tab-content--header-subtitle {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
}

/* Tab Feature Image */
.tab-feature-image {
    width: 100%;
    height: 100%;
}

.tab-feature-image img {
    width: auto;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Tab Description */
.tab-description {
    max-width: 800px;
    margin: 0 auto;
}

.tab-description p {
    font-size: 16px;
    line-height: 1.7;
}

/* Features Label */
.features-label h4 {
    font-size: 20px;
    font-weight: 700;
    color: #3390d6;
    margin-bottom: 32px;
}

/* Feature Items */
.development-models-feature {
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--primary-border-color);
    height: 100%;
    transition: all 0.3s ease;
}

.development-models-feature:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.development-models-feature .feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
    margin-bottom: 20px;
}

.development-models-feature .feature-icon img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}

.development-models-feature .feature-description {
    font-size: 15.2px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* CTA Button */
.development-models-cta {
    margin-top: 32px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .development-models-features > .row > div {
        margin-top: 10px;
    }

    .development-models-feature {
        display: flex;
        gap: 20px;
        padding: 10px;
        align-items: center;
    }

    .development-models-feature .feature-icon {
        margin-bottom: 0px;
        min-height: unset;
    }

    .development-models-feature .feature-icon,
    .development-models-feature .feature-icon img {
        height: 60px;
        width: 60px;
    }

    .development-models-header h2 {
        font-size: 28px;
    }

    .tab-content--header-title {
        font-size: 24px;
    }

    .features-label h4 {
        font-size: 18px;
    }

    .development-models-feature .feature-description {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .development-models-header h2 {
        font-size: 24px;
    }

    .tab-content--header-title {
        font-size: 20px;
    }

    .development-models-feature {
        padding: 16px;
    }

    .development-models-feature .feature-icon {
        min-height: 60px;
    }

    .development-models-feature .feature-icon img {
        max-height: 80px;
    }

    .development-models-feature .feature-description {
        font-size: 14px;
    }

    .features-label h4 {
        font-size: 16px;
    }
}
