.about-me-page {
    padding: 0 0 48px;
}

.about-me-shell {
    max-width: 980px;
    margin: 0 auto;
}

.about-me-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.about-me-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid rgba(47, 125, 246, 0.16);
    border-radius: 14px;
    color: var(--muted);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.about-me-step--done,
.about-me-step--active {
    color: var(--text);
}

.about-me-step--done {
    background: linear-gradient(180deg, #ffffff 0%, #f2f7ff 100%);
}

.about-me-step--active {
    border-color: rgba(47, 125, 246, 0.38);
    background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

.about-me-step__icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--soft);
    font-size: 18px;
    flex-shrink: 0;
}

.about-me-step strong,
.about-me-step span {
    display: block;
}

.about-me-step strong {
    font-size: 14px;
}

.about-me-step div span {
    font-size: 12px;
}

.about-me-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.about-me-section-title {
    padding: 12px 18px;
    background: linear-gradient(90deg, #0d5fc6 0%, #2f7df6 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.about-me-body {
    padding: 18px;
}

.about-me-field {
    display: grid;
    gap: 8px;
}

.about-me-field label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.about-me-field label span {
    color: #ff6b6b;
}

.editor-box {
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.editor-toolbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background: #f8fbff;
}

.editor-toolbar__btn {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 10px;
    background: #fff;
    color: var(--text);
    cursor: pointer;
}

.editor-toolbar__btn:hover {
    border-color: rgba(47, 125, 246, 0.35);
    color: var(--primary-2);
}

.editor-box textarea {
    width: 100%;
    min-height: 320px;
    padding: 14px;
    border: none;
    resize: vertical;
    outline: none;
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
}

.about-me-video-upload {
    position: relative;
    border: 2px dashed #f0bf55;
    border-radius: 14px;
    background: #fffdfa;
    overflow: hidden;
}

.about-me-video-upload__input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.about-me-video-upload__label {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px;
    text-align: center;
    color: var(--muted);
}

.about-me-video-upload__icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(47, 125, 246, 0.08);
    font-size: 24px;
}

.about-me-video-status,
.about-me-video-note {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f8fbff;
    color: var(--primary-2);
    font-size: 13px;
    font-weight: 600;
}

.about-me-video-preview {
    width: 100%;
    margin-top: 12px;
    border-radius: 14px;
    background: #000;
}

.about-me-warning {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #ffe3e8;
    color: #b55168;
    font-size: 14px;
    font-weight: 600;
}

.toggle-list {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.toggle-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.toggle-item input {
    display: none;
}

.toggle-item__switch {
    position: relative;
    width: 42px;
    height: 24px;
    border-radius: 999px;
    background: #d1d9e6;
    transition: 0.2s ease;
}

.toggle-item__switch::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.16);
    transition: 0.2s ease;
}

.toggle-item input:checked + .toggle-item__switch {
    background: #23b38a;
}

.toggle-item input:checked + .toggle-item__switch::after {
    transform: translateX(18px);
}

.about-me-actions {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

@media (max-width: 720px) {
    .about-me-steps {
        grid-template-columns: 1fr;
    }

    .about-me-actions {
        flex-direction: column-reverse;
    }

    .about-me-actions .btn {
        width: 100%;
    }
}
