/**
 * تایتل ماژول‌های HPB — کاروسل / گرید / اسلایدر
 */

.hpb-module {
    direction: rtl;
    width: 100%;
    max-width: 100%;
}

.hpb-module-title {
    margin: 0 0 24px;
    padding: 0;
}

.hpb-module-title__row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hpb-module-title--align-right .hpb-module-title__row {
    justify-content: flex-start;
}

.hpb-module-title--align-center .hpb-module-title__row {
    justify-content: center;
}

.hpb-module-title--align-left .hpb-module-title__row {
    justify-content: flex-end;
}

.hpb-module-title__heading {
    margin: 0;
    padding: 0;
    font-weight: 700;
    line-height: 1.45;
    font-family: inherit;
}

.hpb-module-title--size-sm .hpb-module-title__heading {
    font-size: 1.125rem;
}

.hpb-module-title--size-md .hpb-module-title__heading {
    font-size: 1.5rem;
}

.hpb-module-title--size-lg .hpb-module-title__heading {
    font-size: 1.875rem;
}

.hpb-module-title__highlight {
    color: var(--hpb-title-highlight, #00c896);
}

.hpb-module-title__rest {
    color: var(--hpb-title-rest, #333333);
}

.hpb-module-title__subtitle {
    margin: 10px 0 0;
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.7;
}

.hpb-module-title__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    color: var(--hpb-title-highlight, #00c896);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.hpb-module-title__link:hover {
    color: var(--hpb-title-accent, #00c896);
    text-decoration: underline;
}

.hpb-module-title--split-pill .hpb-module-title__pill {
    display: inline-block;
    width: 42px;
    height: 10px;
    border-radius: 999px;
    background: var(--hpb-title-accent, #00c896);
    flex: 0 0 auto;
}

.hpb-module-title--underline .hpb-module-title__heading {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.hpb-module-title--underline .hpb-module-title__heading::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 72px;
    height: 4px;
    border-radius: 999px;
    background: var(--hpb-title-accent, #00c896);
}

.hpb-module-title--underline.hpb-module-title--align-center .hpb-module-title__heading::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

.hpb-module-title--underline.hpb-module-title--align-left .hpb-module-title__heading::after {
    right: auto;
    left: 0;
}

.hpb-module-title--center-line .hpb-module-title__row {
    width: 100%;
}

.hpb-module-title--center-line .hpb-module-title__line {
    flex: 1 1 40px;
    height: 2px;
    background: linear-gradient(to left, var(--hpb-title-accent, #00c896), transparent);
    border-radius: 999px;
}

.hpb-module-title--center-line .hpb-module-title__line--after {
    background: linear-gradient(to right, var(--hpb-title-accent, #00c896), transparent);
}

.hpb-module-title--center-line .hpb-module-title__heading {
    flex: 0 1 auto;
    white-space: nowrap;
}

.hpb-module-title--badge .hpb-module-title__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.hpb-module-title--badge.hpb-module-title--align-center .hpb-module-title__row {
    align-items: center;
}

.hpb-module-title--badge.hpb-module-title--align-left .hpb-module-title__row {
    align-items: flex-end;
}

.hpb-module-title__badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(0, 200, 150, 0.12);
    color: var(--hpb-title-highlight, #00c896);
    font-size: 0.75rem;
    font-weight: 700;
}

.hpb-module-title--minimal .hpb-module-title__rest {
    color: var(--hpb-title-highlight, #00c896);
}

@media (max-width: 767px) {
    .hpb-module-title--size-lg .hpb-module-title__heading {
        font-size: 1.375rem;
    }

    .hpb-module-title--size-md .hpb-module-title__heading {
        font-size: 1.25rem;
    }

    .hpb-module-title--center-line .hpb-module-title__line {
        display: none;
    }
}
