/**
 * Strength of Competence Component Styles
 *
 * Component-specific styles that extend Bootstrap 5.
 * Uses global CSS variables from the main stylesheet.
 *
 * @package RIKAI_Marketing
 * @since 1.0.0
 */

/* Strength of Competence Section */

/* Strength Card */
.strength-card {
    border-bottom: 2px solid var(--primary-color);
}

.strength-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* Strength Icon */
.strength-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.strength-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: var(--filter-drop-shadow);
}

/* Strength Number Badge */
.strength-number {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bolder;
    margin-right: 20px;
}

/* Strength Title */
.strength-title {
    color: var(--primary-text-color);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
    flex: 1;
}

/* Strength Description */
.strength-description {
    color: var(--muted-text-color);
    font-size: 16px;
    line-height: 1.3;
    text-align: left;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .strength-icon {
        width: 60px;
        height: 60px;
    }
}
@media (max-width: 768px) {
    .strength-card {
        margin-bottom: 16px;
    }

    .strength-title {
        font-size: 16px;
    }

    .strength-description {
        font-size: 14.4px;
    }
}
