/**
 * Component Styles: Main Service Lineup
 *
 * Component-specific styling for the main-service-lineup component.
 * Shared tabs styling is in /inc/ui/tabs/tabs.css
 *
 * @package RIKAI_Marketing
 * @since 1.0.0
 */

.service-header {
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    gap: 20px;
}

.service-header--title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
}

.service-header--subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-color);
    margin-top: 4px;
}

.feature-image img {
    width: 400px;
    height: auto;
    margin: 0 auto;
}

/* Feature Cards */
.feature-card {
    background: var(--secondary-color-lightest);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    height: 100%;
    transition: all 0.3s ease;
}

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

.feature-card .card-title {
    font-size: 18px;
    font-weight: 700;
    color: #3390d6;
    margin-bottom: 12px;
    text-align: center;
}

.feature-card .card-title::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #3390d6;
    margin-top: 8px;
}

.feature-card .card-description {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.development-case-studies {
    border-bottom: 1px solid var(--dark-color);
    padding: 20px 30px 40px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .feature-image {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .feature-card {
        padding: 16px;
    }

    .feature-card .card-title {
        font-size: 16px;
    }

    .feature-card .card-description {
        font-size: 13.6px;
    }
}
