.regedit {
    padding: 40px 0;
}

.regedit__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

@media (max-width: 992px) {
    margin-top: 16px;
}

.regedit__card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #E9ECEF;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 524px;
}

.regedit__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.regedit__content {
    padding: 23px;
}

.regedit__title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.regedit__description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.regedit__registry-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.regedit__coat-arms {
    width: 50px;
    height: 50px;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIHZpZXdCb3g9IjAgMCA1MCA1MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMjUiIGN5PSIyNSIgcj0iMjUiIGZpbGw9IiNGRkQ3MDAiLz4KPHN2ZyB4PSIxMCIgeT0iMTAiIHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIj4KPHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyIDJMMTMuMDkgOC4yNkwyMCA5TDEzLjA5IDE1Ljc0TDEyIDIyTDEwLjkxIDE1Ljc0TDQgOUwxMC45MSA4LjI2TDEyIDJaIiBmaWxsPSIjRkZGRkZGIi8+Cjwvc3ZnPgo8L3N2Zz4KPC9zdmc+') center/contain no-repeat;
    flex-shrink: 0;
}

.regedit__registry-info {
    flex: 1;
}

.regedit__registry-title {
    font-size: 16px;
    font-weight: 700;
    color: #242440;
    line-height: 20px;
    margin-bottom: 6px;
}

.regedit__registry-link {
    color: #0FC4AC;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.regedit__registry-link:hover {
    color: #0a9d8a;
    text-decoration: underline;
}

.regedit__preview img{
    width: 64px;
    height: 64px;
}


@media (max-width: 768px) {
    .regedit__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .regedit__card{
        border:none;
    }
    .regedit__content{
        padding: 0;
    }
    .regedit__registry-title{
        font-size: 14px;
    }
    .regedit__registry-link{
        font-size: 14px;
    }
    .regedit__registry-content {
        gap: 16px;
    }
}
