
.metalworking-challenges-module {
    width: 100%;
    background-color: #f9fafb;
    border-radius: 24px;
    margin: 24px 0;
    direction: rtl;
}
.metalworking-challenges-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px;
    box-sizing: border-box;
}
.section-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #222222;
    text-align: center;
    margin-bottom: 8px;
}
.plain-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.45;
    color: #555555;
    text-align: right; /* محاذاة النص لليمين للغة العربية */
}
.plain-text strong {
    color: #0047AB;
    font-weight: 600;
}
.plain-text p {
    margin-bottom: 10px;
}
.plain-text p:last-child {
    margin-bottom: 0;
}
.factors-group,
.tasks-group {
    margin-top: 16px;
}
.group-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #0047AB;
    text-align: center;
    margin-bottom: 8px;
}
.key-factors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.factor-tag {
    background: #ffffff;
    border: 1px solid #0047AB;
    border-radius: 40px;
    padding: 4px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #0047AB;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.task-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.task-tag {
    background: #ffffff;
    border: 1px solid #0047AB;
    border-radius: 40px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    color: #0047AB;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .metalworking-challenges-inner {
        padding: 16px 20px;
    }
    .section-title {
        font-size: 24px;
        margin-bottom: 6px;
    }
    .plain-text {
        font-size: 14px;
    }
    .plain-text p {
        margin-bottom: 8px;
    }
    .group-title {
        font-size: 14px;
        margin-bottom: 6px;
    }
    .factor-tag {
        font-size: 12px;
        padding: 3px 12px;
    }
    .task-tag {
        font-size: 11px;
        padding: 3px 10px;
    }
}
@media (max-width: 640px) {
    .metalworking-challenges-inner {
        padding: 14px 16px;
    }
    .factor-tag,
    .task-tag {
        white-space: normal;
        text-align: center;
    }
}
