.cv-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cv-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid #1a1a1a;
}

.cv-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cv-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #555;
}

.cv-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 0;
    margin: 0;
}

.cv-row {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 10px;
}

.cv-row dt {
    font-size: 11px;
    font-weight: 400;
    color: #555;
    letter-spacing: 0.04em;
    white-space: nowrap;
    line-height: 1.6;
    padding-top: 1px;
}

.cv-row dd {
    font-size: 13px;
    font-weight: 300;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

.cv-row dd a {
    color: #ccc;
    border-bottom: 1px solid #333;
    padding-bottom: 1px;
    transition: color 0.2s;
}

.cv-row dd a:hover {
    color: #fff;
    opacity: 1;
}

@media (max-width: 480px) {
    .cv-row dd {
        font-size: 12px;
    }
}
