.je-locked {
    max-width: 480px;
    margin: 4rem auto;
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--it-color-surface);
    border: 1px solid var(--it-color-border);
    border-radius: var(--it-radius-md);
    box-shadow: var(--it-shadow-sm);
}

.je-locked__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--it-color-primary-light);
    color: var(--it-color-primary);
    font-size: 1.5rem;
}

.je-locked__title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.je-locked__desc {
    color: var(--it-color-text-muted);
    margin-bottom: 1.5rem;
}

.je-doc-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.je-doc-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: var(--it-color-surface);
    border: 1px solid var(--it-color-border);
    border-radius: var(--it-radius-md);
    box-shadow: var(--it-shadow-sm);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.je-doc-card:hover {
    box-shadow: var(--it-shadow-lg);
    transform: translateY(-2px);
}

.je-doc-card__icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--it-color-primary-light);
    color: var(--it-color-primary);
    font-size: 1.25rem;
}

.je-doc-card__body {
    flex: 1;
    min-width: 0;
}

.je-doc-card__title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--it-color-text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.je-doc-card__meta {
    font-size: 0.8rem;
    color: var(--it-color-text-muted);
    margin-top: 0.15rem;
}

.je-doc-card__download {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--it-color-primary);
    color: #ffffff;
    text-decoration: none;
    transition: background 0.2s ease;
}

.je-doc-card__download:hover {
    background: var(--it-color-primary-dark);
    color: #ffffff;
}
