.rensi-downloads {
    margin: 2rem 0;
    padding: 1.5rem;

    border-radius: 8px;
}
.rensi-downloads__title {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}
.rensi-downloads__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}
.rensi-downloads__card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #495057;
    transition: all 0.2s ease;
}
.rensi-downloads__card:hover {
    border-color: #adb5bd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    color: #212529;
}
.rensi-downloads__card-thumb {
    background: #f8f9fa;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 180px;
    overflow: hidden;
}
.rensi-downloads__card-thumb img {
    max-width: 100%;
    max-height: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 2px;
}
.rensi-downloads__card-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    flex-wrap: wrap;
}
.rensi-downloads__card-name {
    font-size: 0.9rem;
    font-weight: 500;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.rensi-downloads__card-type {
    font-size: 0.7rem;
    font-weight: 600;
    color: #6c757d;
    background: #e9ecef;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    letter-spacing: 0.03em;
}
.rensi-downloads__card--no-thumb .rensi-downloads__card-info {
    padding: 1.25rem 1rem;
}
.rensi-downloads__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.rensi-downloads__rich {
    line-height: 1.6;
}
.rensi-downloads__rich a {
    color: #0066cc;
}
.rensi-downloads__rich img {
    max-width: 300px;
    height: auto;
    border-radius: 4px;
}
.rensi-downloads__rich h2,
.rensi-downloads__rich h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.rensi-downloads__rich hr {
    margin: 1.5rem 0;
    border: none;
    border-top: 1px solid #dee2e6;
}
