.ljesh-card {
    --ljesh-g1: #c00000;
    --ljesh-g2: #d70010;
    --ljesh-text: #ffffff;
    --ljesh-meta: rgba(255,255,255,0.9);
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 24px;
    width: 100%;
    padding: 34px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--ljesh-g1) 0%, var(--ljesh-g2) 100%);
    color: var(--ljesh-text);
}

.ljesh-alert {
    position: relative;
    z-index: 2;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 14px;
    border-radius: 16px;
    background: #f04438;
    color: #fff;
    word-break: break-word;
}

.ljesh-alert-icon,
.ljesh-main-icon {
    line-height: 1;
}

.ljesh-alert-icon i,
.ljesh-alert-icon svg,
.ljesh-main-icon i,
.ljesh-main-icon svg {
    display: block;
    width: 1em;
    height: 1em;
}

.ljesh-alert-icon {
    font-size: 18px;
}

.ljesh-alert-text {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.ljesh-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-width: 0;
    width: 100%;
}

.ljesh-header-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.ljesh-main-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    font-size: 30px;
    color: #fff;
    background: rgba(255,255,255,0.12);
}

.ljesh-content-stack {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.ljesh-section-label {
    color: var(--ljesh-meta);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.ljesh-title {
    margin: 0;
    color: var(--ljesh-text);
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.02;
    font-weight: 800;
}

.ljesh-count {
    color: var(--ljesh-meta);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
}

.ljesh-description {
    color: var(--ljesh-text);
    font-size: 18px;
    line-height: 1.5;
    max-width: 980px;
}

.ljesh-description p {
    margin: 0 0 0.8em;
}

.ljesh-description p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .ljesh-card {
        flex-direction: column;
        gap: 16px;
        padding: 22px;
    }

    .ljesh-alert {
        min-width: 100% !important;
    }

    .ljesh-main-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .ljesh-title {
        font-size: 28px;
    }

    .ljesh-description {
        font-size: 16px;
    }
}
