.growth-progress-card {
    direction: rtl;
}

.growth-progress-card .card {
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.growth-progress-card .card-body {
    padding: 16px;
}

.growth-progress-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.growth-progress-card__title {
    margin: 0;
    color: #27173e;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.5;
}

.growth-progress-card__level {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f4efff;
    color: #6236ff;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.growth-progress-card__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

.growth-progress-card__meta {
    padding: 10px 12px;
    border-radius: 8px;
    background: #f8f7fc;
}

.growth-progress-card__meta--level {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 76px;
}

.growth-progress-card__meta-text {
    min-width: 0;
}

.growth-progress-card__badge {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    object-fit: contain;
}

.growth-progress-card__badge.is-muted {
    filter: grayscale(1) saturate(0) brightness(1.18);
    opacity: 0.62;
}

.growth-progress-card__label {
    color: #8f9bb3;
    font-size: 12px;
    line-height: 1.6;
}

.growth-progress-card__value {
    color: #27173e;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.7;
}

.growth-progress-card__unlocks {
    margin: 0 0 14px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #fff9ed;
    color: #6b4b00;
    font-size: 13px;
    line-height: 1.8;
}

.growth-progress-card__unlocks strong {
    display: block;
    color: #27173e;
    margin-bottom: 4px;
}

.growth-progress-card__progress-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.growth-progress-card__progress-item {
    display: block;
}

.growth-progress-card__progress-item.is-actionable {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    text-decoration: none;
}

.growth-progress-card__progress-item.is-actionable:active,
.growth-progress-card__progress-item.is-actionable:hover {
    background: transparent;
    color: inherit;
    text-decoration: none;
}

.growth-progress-card__progress-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
}

.growth-progress-card__progress-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #27173e;
    font-size: 13px;
    font-weight: 700;
}

.growth-progress-card__progress-check {
    flex: 0 0 auto;
    color: #1dcc70;
    font-size: 17px;
}

.growth-progress-card__progress-value {
    color: #6f7285;
    font-size: 12px;
    white-space: nowrap;
}

.growth-progress-card .progress {
    height: 8px;
    border-radius: 999px;
    background: #ebe7f7;
    direction: ltr;
}

.growth-progress-card .progress-bar {
    border-radius: 999px;
}

.growth-progress-card__progress-item.is-complete .progress-bar {
    background-color: #1dcc70;
}

.growth-progress-card__progress-item.is-complete .growth-progress-card__progress-value {
    color: #159957;
}

.growth-progress-card__progress-action {
    display: inline-flex;
    margin-top: 8px;
    color: #6236ff;
    font-size: 12px;
    font-weight: 800;
}

.growth-progress-card__state {
    padding: 18px 16px;
    color: #6f7285;
    text-align: center;
    line-height: 1.8;
}

.growth-progress-card__state .btn {
    margin-top: 10px;
}

.growth-progress-card__skeleton {
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f0eef7, #faf9fe, #f0eef7);
    background-size: 200% 100%;
    animation: growth-skeleton 1.15s linear infinite;
}

.growth-progress-card__skeleton.is-wide {
    height: 20px;
    width: 70%;
    margin-bottom: 14px;
}

.growth-progress-card__skeleton + .growth-progress-card__skeleton {
    margin-top: 10px;
}

@keyframes growth-skeleton {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
