.icd-changelog-section {
    padding: 28px 0 42px;
}

.icd-changelog-current {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
    padding: 18px 20px;
    border: 1px solid #d4e2f1;
    border-radius: 4px;
    background: #eef4fb;
}

.icd-changelog-current-label {
    display: block;
    margin-bottom: 4px;
    color: #667085;
    font-size: 13px;
    font-weight: 600;
}

.icd-changelog-current strong {
    color: #1f5f9f;
    font-size: 22px;
}

.icd-changelog-current-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.icd-changelog-current-meta span,
.icd-changelog-status {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 4px;
    background: #ffffff;
    color: #344054;
    font-size: 13px;
    font-weight: 600;
}

.icd-changelog-list {
    display: grid;
    gap: 18px;
}

.icd-changelog-release {
    overflow: hidden;
    border: 1px solid #dfe6ee;
    border-radius: 4px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 35, 55, .05);
}

.icd-changelog-release-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #e7edf3;
}

.icd-changelog-version {
    margin-bottom: 5px;
    color: #1f5f9f;
    font-size: 14px;
    font-weight: 700;
}

.icd-changelog-release-head h2 {
    margin: 0;
    color: #333333;
    font-size: 22px;
    line-height: 1.3;
}

.icd-changelog-release-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.icd-changelog-release-meta > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 4px;
    background: #f4f6f8;
    color: #667085;
    font-size: 13px;
}

.icd-changelog-changes {
    display: grid;
}

.icd-changelog-change {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 14px 20px;
    border-bottom: 1px solid #eef2f6;
}

.icd-changelog-change:last-child {
    border-bottom: 0;
}

.icd-changelog-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 0 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.icd-changelog-type--added {
    background: #eaf7ee;
    color: #237a3b;
}

.icd-changelog-type--changed {
    background: #eef4fb;
    color: #1f5f9f;
}

.icd-changelog-type--fixed {
    background: #fff3df;
    color: #9a5c00;
}

.icd-changelog-type--removed {
    background: #fcebea;
    color: #b42318;
}

.icd-changelog-type--security {
    background: #f2ecff;
    color: #6941c6;
}

.icd-changelog-text {
    color: #344054;
    line-height: 1.6;
}