:root {
    --dpm-text: #4b4b4b;
    --dpm-muted: #8a8a8a;
    --dpm-line: #ececec;
    --dpm-card-radius: 6px;
    --dpm-gap: 12px;
    --dpm-page-pad: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: #e9e9e9;
    color: var(--dpm-text);
    font-family: 'Roboto', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { max-width: 100%; }

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}


.dpm-header {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) minmax(260px, 440px) minmax(120px, 1fr);
    align-items: center;
    gap: 24px;
    min-height: 150px;
    padding: 30px var(--dpm-page-pad) 24px;
    background: #e9e9e9;
}
.dpm-header__left {
    justify-self: start;
    display: flex;
    align-items: center;
    min-width: 0;
}
.dpm-header__center {
    justify-self: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}
.dpm-header__right {
    justify-self: end;
    display: flex;
    align-items: center;
}
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo {
    display: block;
    max-width: 170px;
    max-height: 76px;
    width: auto;
    height: auto;
}
.dpm-site-name {
    font-weight: 700;
    font-size: 21px;
    letter-spacing: .02em;
    color: #444;
}
.dpm-portfolio-brand { display: inline-flex; justify-content: center; max-width: 100%; }
.dpm-portfolio-artwork {
    display: block;
    max-width: min(380px, 100%);
    max-height: 92px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.dpm-portfolio-fallback {
    display: block;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: .19em;
    color: #353535;
    padding-left: .19em;
}
.dpm-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
    margin-top: 13px;
    min-height: 26px;
}
.dpm-social-link {
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #696969;
    opacity: .92;
    transition: color .18s ease, opacity .18s ease, transform .18s ease;
}
.dpm-social-link svg {
    width: 21px;
    height: 21px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.dpm-social-link--facebook svg,
.dpm-social-link--behance svg { fill: currentColor; stroke: none; }
.dpm-social-link--youtube .dpm-social-icon__play { fill: currentColor; stroke: none; }
.dpm-social-icon__dot { fill: currentColor; stroke: none; }
.dpm-social-link:hover {
    color: #222;
    opacity: 1;
    transform: translateY(-2px);
}

.dpm-filter-toggle {
    appearance: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    padding: 9px;
    cursor: pointer;
    color: #555;
    display: grid;
    place-items: center;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}
.dpm-filter-toggle:hover,
.dpm-filter-toggle[aria-expanded="true"] {
    background: rgba(255,255,255,.72);
    color: #222;
}
.dpm-filter-toggle:active { transform: scale(.96); }
.dpm-filter-toggle svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
}

.dpm-filter-panel {
    padding: 0 var(--dpm-page-pad) 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.dpm-filter-panel[hidden] { display: none; }
.dpm-filter-chip {
    border: 1px solid #dedede;
    background: #fff;
    color: #555;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: .2s ease;
}
.dpm-filter-chip:hover, .dpm-filter-chip.is-active { background: #444; color: #fff; border-color: #444; }

.dpm-main { padding: 0 var(--dpm-page-pad) 50px; }
.dpm-masonry { position: relative; width: 100%; min-height: 200px; }
.dpm-card {
    position: absolute;
    margin: 0;
    background: #fff;
    border: 1px solid var(--dpm-line);
    border-radius: var(--dpm-card-radius);
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.035);
    transition: opacity .2s ease, transform .2s ease;
}
.dpm-card.is-entering { opacity: 0; transform: translateY(8px); }
.dpm-card__media { position: relative; overflow: hidden; background: #f2f2f2; }
.dpm-card__post-link { display: block; position: relative; }
.dpm-card__post-link::after {
    content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background .22s ease;
}
.dpm-card__image { display: block; width: 100%; height: auto; }
.dpm-card__placeholder { aspect-ratio: 4 / 3; background: #efefef; }
.dpm-card__zoom {
    position: absolute;
    left: 50%; top: 50%;
    width: 46px; height: 46px;
    margin: -23px 0 0 -23px;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 50%;
    background: rgba(0,0,0,.18);
    color: #fff;
    display: grid;
    place-items: center;
    opacity: 0;
    transform: scale(.88);
    transition: .22s ease;
    cursor: pointer;
    z-index: 2;
}
.dpm-card__zoom svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; }
.dpm-card__media:hover .dpm-card__post-link::after { background: rgba(0,0,0,.24); }
.dpm-card__media:hover .dpm-card__zoom { opacity: 1; transform: scale(1); }

.dpm-card__body { padding: 11px 12px 12px; }
.dpm-card__title { margin: 0; font-size: 14px; line-height: 1.45; font-weight: 400; color: #4b4b4b; }
.dpm-card__title a:hover { color: #111; }
.dpm-card__terms { display: flex; gap: 6px; align-items: flex-start; border-top: 1px solid #eee; margin-top: 10px; padding-top: 8px; color: #d95a5a; font-size: 12px; line-height: 1.45; }
.dpm-card__tag-icon { flex: 0 0 14px; color: #aaa; margin-top: 1px; }
.dpm-card__tag-icon svg { width: 14px; height: 14px; fill: currentColor; display: block; }
.dpm-card__term-links { flex: 1; }
.dpm-inline-filter { padding: 0; border: 0; background: transparent; color: inherit; cursor: pointer; }
.dpm-inline-filter:hover { text-decoration: underline; }

.dpm-loadmore-wrap { display: flex; justify-content: center; padding: 34px 0 8px; }
.dpm-loadmore {
    border: 1px solid #444; background: #fff; color: #444; border-radius: 999px; padding: 11px 22px; cursor: pointer;
    font-weight: 500; transition: .2s ease;
}
.dpm-loadmore:hover { background: #444; color: #fff; }
.dpm-loadmore[disabled] { opacity: .55; cursor: wait; }

.dpm-backtotop {
    position: fixed; right: 22px; bottom: 22px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid #d8d8d8;
    background: rgba(255,255,255,.94); color: #555; display: grid; place-items: center; cursor: pointer; z-index: 60;
    opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.dpm-backtotop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.dpm-backtotop svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.dpm-lightbox {
    position: fixed; inset: 0; background: rgba(0,0,0,.9); z-index: 9999; display: none; align-items: center; justify-content: center;
}
.dpm-lightbox.is-open { display: flex; }
.dpm-lightbox__stage { width: min(88vw, 1500px); height: 88vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.dpm-lightbox__image { max-width: 100%; max-height: calc(88vh - 54px); object-fit: contain; display: block; }
.dpm-lightbox__meta { width: 100%; min-height: 42px; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: #fff; padding-top: 12px; font-size: 13px; }
.dpm-lightbox__title { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dpm-lightbox__counter { flex: 0 0 auto; color: #ccc; }
.dpm-lightbox__close, .dpm-lightbox__prev, .dpm-lightbox__next {
    position: fixed; border: 0; background: transparent; color: #fff; cursor: pointer; z-index: 2;
}
.dpm-lightbox__close { right: 22px; top: 14px; font-size: 44px; line-height: 1; }
.dpm-lightbox__prev, .dpm-lightbox__next { top: 50%; transform: translateY(-50%); font-size: 64px; line-height: 1; padding: 12px; }
.dpm-lightbox__prev { left: 10px; }
.dpm-lightbox__next { right: 10px; }
body.dpm-lightbox-open { overflow: hidden; }
body.dpm-lightbox-open .dpm-backtotop { opacity: 0 !important; visibility: hidden !important; }

.dpm-single { width: min(1100px, calc(100% - 36px)); margin: 20px auto 70px; }
.dpm-single__header { margin-bottom: 24px; }
.dpm-single__header h1 { margin: 0 0 8px; font-size: clamp(24px, 4vw, 42px); font-weight: 500; color: #333; }
.dpm-single__terms { color: #888; font-size: 13px; }
.dpm-single__content { font-size: 15px; line-height: 1.7; color: #555; }
.dpm-single__content img { display: block; max-width: 100%; height: auto; margin: 0 auto 16px; }

@media (max-width: 767px) {
    :root { --dpm-page-pad: 10px; --dpm-gap: 8px; }
    .dpm-header { grid-template-columns: minmax(72px,1fr) minmax(140px,1.7fr) minmax(72px,1fr); min-height: 112px; padding-top: 16px; padding-bottom: 16px; gap: 8px; }
    .custom-logo { max-width: 105px; max-height: 50px; }
    .dpm-site-name { font-size: 15px; }
    .dpm-portfolio-artwork { max-width: 190px; max-height: 58px; }
    .dpm-portfolio-fallback { font-size: 23px; letter-spacing: .12em; padding-left: .12em; }
    .dpm-socials { gap: 8px; margin-top: 8px; min-height: 22px; }
    .dpm-social-link { width: 22px; height: 22px; }
    .dpm-social-link svg { width: 18px; height: 18px; }
    .dpm-filter-toggle { width: 38px; height: 38px; padding: 7px; }
    .dpm-filter-toggle svg { width: 24px; height: 24px; }
    .dpm-card__body { padding: 8px 9px 9px; }
    .dpm-card__title { font-size: 12px; }
    .dpm-card__terms { font-size: 10px; gap: 4px; margin-top: 7px; padding-top: 6px; }
    .dpm-card__zoom { opacity: 1; transform: scale(1); width: 38px; height: 38px; margin: -19px 0 0 -19px; background: rgba(0,0,0,.22); }
    .dpm-card__zoom svg { width: 20px; height: 20px; }
    .dpm-backtotop { right: 14px; bottom: 14px; width: 40px; height: 40px; }
    .dpm-lightbox__prev, .dpm-lightbox__next { font-size: 48px; padding: 6px; }
    .dpm-lightbox__stage { width: 92vw; height: 84vh; }
    .dpm-lightbox__image { max-height: calc(84vh - 54px); }
    .dpm-lightbox__title { max-width: 70vw; }
}

/* v0.1.3 — centered profile header */
.dpm-header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 0;
    padding: 167px var(--dpm-page-pad) 167px;
    background: #e9e9e9;
}

.dpm-header__center {
    width: min(100%, 620px);
    justify-self: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

.dpm-avatar {
    display: block;
    width: 112px;
    height: 112px;
    margin: 0 0 28px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.dpm-portfolio-brand {
    display: inline-flex;
    justify-content: center;
    max-width: 100%;
}

.dpm-portfolio-artwork {
    display: block;
    max-width: min(470px, 100%);
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.dpm-socials {
    gap: 14px;
    margin-top: 18px;
}

.dpm-social-link {
    width: 27px;
    height: 27px;
}

.dpm-social-link svg {
    width: 22px;
    height: 22px;
}

.dpm-social-link--zalo svg,
.dpm-social-link--tiktok svg {
    fill: none;
    stroke: currentColor;
}

.dpm-social-link--tiktok svg path {
    fill: currentColor;
    stroke: none;
}

.dpm-filter-toggle {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 20;
}

/* Footer shown only when the current portfolio list is fully loaded. */
.dpm-end-footer {
    display: none;
    padding: 56px var(--dpm-page-pad) 92px;
    background: #e9e9e9;
    text-align: center;
}

.dpm-end-footer.is-visible {
    display: block;
}

.dpm-end-footer__inner {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.dpm-end-footer__title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.dpm-end-footer__line {
    display: block;
    flex: 1 1 auto;
    height: 1px;
    background: #cfcfcf;
}

.dpm-end-footer__title {
    flex: 0 0 auto;
    color: #606060;
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: .03em;
}

.dpm-end-footer__about {
    display: inline-block;
    margin-top: 24px;
    color: #555;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    transition: color .18s ease, border-color .18s ease;
}

.dpm-end-footer__about:hover {
    color: #111;
    border-bottom-color: currentColor;
}

@media (max-width: 767px) {
    .dpm-header {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .dpm-filter-toggle {
        top: 20px;
        right: 20px;
    }

    .dpm-avatar {
        width: 88px;
        height: 88px;
        margin-bottom: 22px;
    }

    .dpm-portfolio-artwork {
        max-width: min(360px, 90vw);
        max-height: 100px;
    }

    .dpm-socials {
        margin-top: 15px;
        gap: 12px;
    }

    .dpm-end-footer {
        padding-top: 44px;
        padding-bottom: 72px;
    }

    .dpm-end-footer__title-row {
        gap: 16px;
    }
}

/* v0.1.5 — Single Portfolio */
.single-portfolio .dpm-header {
    padding-top: 72px;
    padding-bottom: 72px;
}
.single-portfolio .dpm-avatar {
    width: 82px;
    height: 82px;
    margin-bottom: 20px;
}
.single-portfolio .dpm-portfolio-artwork {
    max-width: min(390px, 86vw);
    max-height: 96px;
}
.single-portfolio .dpm-socials {
    margin-top: 14px;
}
.single-portfolio .dpm-filter-toggle {
    display: none;
}
.single-portfolio .dpm-end-footer {
    display: none !important;
}

.dpm-single {
    width: min(1240px, calc(100% - 36px));
    margin: 0 auto 88px;
}

.dpm-single__article {
    background: #fff;
    border: 1px solid rgba(0,0,0,.055);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.035);
}

.dpm-single__topbar {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0 30px;
    border-bottom: 1px solid #ededed;
}

.dpm-single__back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #777;
    font-size: 13px;
    font-weight: 500;
    transition: color .18s ease;
}
.dpm-single__back:hover { color: #222; }
.dpm-single__back svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dpm-single__header {
    margin: 0;
    padding: 38px 40px 30px;
    text-align: center;
    border-bottom: 1px solid #ededed;
}
.dpm-single__header h1 {
    margin: 0;
    color: #3f3f3f;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.22;
    font-weight: 500;
    letter-spacing: -.015em;
}
.dpm-single__terms {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    color: #d95a5a;
    font-size: 13px;
    line-height: 1.45;
}
.dpm-single__tag-icon {
    flex: 0 0 14px;
    color: #aaa;
    margin-top: 2px;
}
.dpm-single__tag-icon svg {
    display: block;
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.dpm-single__content {
    padding: 38px 40px 48px;
    color: #555;
    font-size: 15px;
    line-height: 1.78;
}
.dpm-single__content > :first-child { margin-top: 0; }
.dpm-single__content > :last-child { margin-bottom: 0; }
.dpm-single__content p,
.dpm-single__content div {
    max-width: 100%;
}
.dpm-single__content p {
    margin: 0 0 18px;
}
.dpm-single__content h2,
.dpm-single__content h3,
.dpm-single__content h4 {
    color: #3d3d3d;
    line-height: 1.3;
    font-weight: 500;
}
.dpm-single__content a:not(:has(img)) {
    color: #d95a5a;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.dpm-single__content img {
    display: block;
    max-width: 100% !important;
    height: auto !important;
    margin: 24px auto;
    border-radius: 4px;
}
.dpm-single__content img.dpm-single__gallery-image {
    cursor: zoom-in;
}
.dpm-single__content .separator,
.dpm-single__content [style*="text-align: center"] {
    max-width: 100%;
}
.dpm-single__content iframe,
.dpm-single__content video {
    max-width: 100%;
}

.dpm-project-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr);
    align-items: stretch;
    gap: 12px;
    margin-top: 18px;
}
.dpm-project-nav__item,
.dpm-project-nav__home {
    min-height: 82px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.055);
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0,0,0,.025);
}
.dpm-project-nav__item a {
    display: flex;
    height: 100%;
    min-height: 82px;
    flex-direction: column;
    justify-content: center;
    padding: 14px 18px;
    transition: background .18s ease;
}
.dpm-project-nav__item a:hover { background: #fafafa; }
.dpm-project-nav__item--next { text-align: right; }
.dpm-project-nav__label {
    display: block;
    margin-bottom: 5px;
    color: #999;
    font-size: 11px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .07em;
}
.dpm-project-nav__item strong {
    color: #505050;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
}
.dpm-project-nav__home {
    display: grid;
    place-items: center;
    color: #777;
    transition: color .18s ease, background .18s ease;
}
.dpm-project-nav__home:hover {
    color: #222;
    background: #fff;
}
.dpm-project-nav__home svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
}

@media (max-width: 767px) {
    .single-portfolio .dpm-header {
        padding-top: 52px;
        padding-bottom: 52px;
    }
    .single-portfolio .dpm-avatar {
        width: 70px;
        height: 70px;
        margin-bottom: 16px;
    }
    .single-portfolio .dpm-portfolio-artwork {
        max-width: min(310px, 84vw);
    }
    .dpm-single {
        width: min(100% - 20px, 1240px);
        margin-bottom: 56px;
    }
    .dpm-single__topbar {
        min-height: 48px;
        padding: 0 18px;
    }
    .dpm-single__header {
        padding: 28px 20px 24px;
    }
    .dpm-single__header h1 {
        font-size: clamp(23px, 7vw, 31px);
    }
    .dpm-single__content {
        padding: 24px 16px 32px;
        font-size: 14px;
        line-height: 1.72;
    }
    .dpm-single__content img {
        margin: 16px auto;
        border-radius: 3px;
    }
    .dpm-project-nav {
        grid-template-columns: 1fr 44px 1fr;
        gap: 8px;
        margin-top: 10px;
    }
    .dpm-project-nav__item,
    .dpm-project-nav__home,
    .dpm-project-nav__item a {
        min-height: 68px;
    }
    .dpm-project-nav__item a {
        padding: 10px 11px;
    }
    .dpm-project-nav__item strong {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 11px;
    }
    .dpm-project-nav__label {
        font-size: 9px;
    }
}

/* Single portfolio category links */
.dpm-single__term-link {
    color: inherit;
    text-decoration: none;
    transition: color .18s ease;
}

.dpm-single__term-link:hover,
.dpm-single__term-link:focus-visible {
    color: #555;
    text-decoration: underline;
}


/* Footer WordPress menu */
.dpm-footer-menu {
    margin-top: 24px;
}

.dpm-footer-menu__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dpm-footer-menu__list > li {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.dpm-footer-menu__list > li + li::before {
    content: "|";
    display: inline-block;
    margin: 0 12px;
    color: #969696;
    font-weight: 400;
}

.dpm-footer-menu__list a {
    color: #555;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .06em;
    text-decoration: none;
    transition: color .18s ease;
}

.dpm-footer-menu__list a:hover,
.dpm-footer-menu__list a:focus-visible,
.dpm-footer-menu__list .current-menu-item > a {
    color: #111;
}

/* Base styling for normal WordPress Pages. Individual page templates can override this. */
.dpm-page {
    width: min(1100px, calc(100% - 36px));
    margin: 30px auto 90px;
}

.dpm-page__article {
    background: #fff;
    border-radius: 8px;
    padding: clamp(24px, 4vw, 56px);
}

.dpm-page__header {
    margin-bottom: 28px;
}

.dpm-page__title {
    margin: 0;
    color: #3f3f3f;
    font-size: clamp(30px, 5vw, 54px);
    font-weight: 500;
    line-height: 1.1;
}

.dpm-page__content {
    color: #555;
    font-size: 15px;
    line-height: 1.75;
}

.dpm-page__content img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .dpm-footer-menu__list > li + li::before {
        margin: 0 8px;
    }

    .dpm-footer-menu__list a {
        font-size: 12px;
    }

    .dpm-page {
        width: min(100% - 24px, 1100px);
        margin-bottom: 60px;
    }

    .dpm-page__article {
        padding: 24px 18px;
    }
}

/* ========================================================================
   ABOUT ME / PROFILE PAGE
   ======================================================================== */
.dpm-about-page {
    background: #e9e9e9;
}

.dpm-about {
    width: min(1320px, calc(100% - 36px));
    margin: 28px auto 80px;
}

.dpm-about-profile {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,.04);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,.035);
}

.dpm-about-cover {
    position: relative;
    height: clamp(230px, 29vw, 390px);
    background: linear-gradient(135deg, #d9d9d9, #f3f3f3);
    overflow: hidden;
}

.dpm-about-cover__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dpm-about-profile__body {
    position: relative;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 26px;
    min-height: 190px;
    padding: 0 42px 34px;
}

.dpm-about-avatar-wrap {
    position: relative;
    min-height: 1px;
}

.dpm-about-avatar {
    position: absolute;
    left: 0;
    top: -92px;
    width: 168px;
    height: 168px;
    object-fit: cover;
    border: 6px solid #fff;
    border-radius: 50%;
    background: #eee;
    box-shadow: 0 5px 18px rgba(0,0,0,.12);
}

.dpm-about-avatar--empty {
    display: block;
}

.dpm-about-profile__copy {
    padding-top: 24px;
}

.dpm-about-name {
    margin: 0;
    color: #363636;
    font-size: clamp(30px, 3.3vw, 48px);
    font-weight: 700;
    line-height: 1.06;
}

.dpm-about-role {
    margin-top: 8px;
    color: #666;
    font-size: 16px;
    font-weight: 500;
}

.dpm-about-summary {
    max-width: 820px;
    margin: 15px 0 0;
    color: #686868;
    font-size: 14px;
    line-height: 1.7;
}

.dpm-about-basics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 18px;
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

.dpm-about-basic {
    color: inherit;
}

.dpm-about-basic strong {
    color: #4c4c4c;
    font-weight: 500;
}

.dpm-about-basic[href]:hover {
    color: #111;
}

.dpm-about-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    margin-top: 22px;
}

.dpm-about-sidebar {
    position: sticky;
    top: 24px;
}

.dpm-about-sidebar__inner {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,.045);
    border-radius: 10px;
    box-shadow: 0 1px 5px rgba(0,0,0,.025);
}

.dpm-about-nav {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 17px;
    border: 0;
    border-bottom: 1px solid #eee;
    background: #fff;
    color: #5a5a5a;
    text-align: left;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, padding-left .18s ease;
}

.dpm-about-nav:last-child {
    border-bottom: 0;
}

.dpm-about-nav:hover {
    color: #222;
    background: #fafafa;
}

.dpm-about-nav.is-active {
    color: #222;
    background: #f7f7f7;
    padding-left: 22px;
    font-weight: 500;
}

.dpm-about-nav__mark {
    flex: 0 0 auto;
    color: #aaa;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    transition: transform .2s ease, color .2s ease;
}

.dpm-about-nav.is-active .dpm-about-nav__mark {
    color: #444;
    transform: rotate(45deg);
}

.dpm-about-content {
    min-width: 0;
}

.dpm-about-section {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,.045);
    border-radius: 10px;
    box-shadow: 0 1px 5px rgba(0,0,0,.025);
    opacity: 1;
}

.dpm-about-section[hidden] {
    display: none;
}

.dpm-about-section__header {
    padding: 28px 32px 0;
}

.dpm-about-section__header h2 {
    margin: 0;
    color: #3e3e3e;
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 500;
    line-height: 1.15;
}

.dpm-about-section__body {
    padding: 22px 32px 34px;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.dpm-about-section__body > :first-child {
    margin-top: 0;
}

.dpm-about-section__body > :last-child {
    margin-bottom: 0;
}

.dpm-about-section__body h3,
.dpm-about-section__body h4 {
    color: #3f3f3f;
    line-height: 1.3;
}

.dpm-about-section__body img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.dpm-about-section__body a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.dpm-about-page .dpm-end-footer {
    margin-top: 0;
}

@media (max-width: 900px) {
    .dpm-about {
        width: min(100% - 24px, 1320px);
        margin-top: 12px;
    }

    .dpm-about-cover {
        height: clamp(200px, 42vw, 320px);
    }

    .dpm-about-profile__body {
        grid-template-columns: 146px minmax(0, 1fr);
        gap: 18px;
        padding: 0 24px 28px;
    }

    .dpm-about-avatar {
        top: -70px;
        width: 128px;
        height: 128px;
        border-width: 5px;
    }

    .dpm-about-layout {
        grid-template-columns: 210px minmax(0, 1fr);
        gap: 14px;
    }

    .dpm-about-section__header {
        padding: 24px 24px 0;
    }

    .dpm-about-section__body {
        padding: 18px 24px 28px;
    }
}

@media (max-width: 680px) {
    .dpm-about {
        width: 100%;
        margin: 0 auto 56px;
    }

    .dpm-about-profile {
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }

    .dpm-about-cover {
        height: 210px;
    }

    .dpm-about-profile__body {
        display: block;
        padding: 0 18px 24px;
    }

    .dpm-about-avatar-wrap {
        height: 62px;
    }

    .dpm-about-avatar {
        top: -58px;
        width: 116px;
        height: 116px;
        border-width: 5px;
    }

    .dpm-about-profile__copy {
        padding-top: 4px;
    }

    .dpm-about-name {
        font-size: 30px;
    }

    .dpm-about-basics {
        display: grid;
        gap: 6px;
    }

    .dpm-about-layout {
        display: block;
        margin-top: 12px;
    }

    .dpm-about-sidebar {
        position: sticky;
        top: 0;
        z-index: 25;
        padding: 8px 10px;
        background: rgba(233,233,233,.94);
        backdrop-filter: blur(8px);
    }

    .dpm-about-sidebar__inner {
        display: flex;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        border-radius: 999px;
        scrollbar-width: none;
    }

    .dpm-about-sidebar__inner::-webkit-scrollbar {
        display: none;
    }

    .dpm-about-nav {
        width: auto;
        min-width: max-content;
        min-height: 42px;
        padding: 10px 14px;
        border-right: 1px solid #eee;
        border-bottom: 0;
        font-size: 13px;
    }

    .dpm-about-nav.is-active {
        padding-left: 14px;
        background: #444;
        color: #fff;
    }

    .dpm-about-nav__mark {
        display: none;
    }

    .dpm-about-content {
        padding: 0 10px;
    }

    .dpm-about-section {
        border-radius: 8px;
    }

    .dpm-about-section__header {
        padding: 22px 20px 0;
    }

    .dpm-about-section__body {
        padding: 16px 20px 26px;
        font-size: 14px;
    }
}

/* ========================================================================
   v0.2.1 — About Me profile refresh
   ======================================================================== */
.dpm-about-profile__body {
    display: grid;
    grid-template-columns: 154px minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    min-height: 190px;
    padding: 28px 42px;
}

.dpm-about-avatar-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 154px;
}

.dpm-about-avatar {
    position: static;
    width: 154px;
    height: 154px;
    border: 5px solid #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,.10);
}

.dpm-about-profile__copy {
    min-width: 0;
    padding-top: 0;
    align-self: center;
}

.dpm-about-name {
    font-size: clamp(30px, 3vw, 44px);
}

.dpm-about-summary {
    margin-top: 12px;
}

.dpm-about-basics {
    margin-top: 14px;
}

.dpm-about-profile__actions {
    min-width: 190px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
}

.dpm-about-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.dpm-about-social {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #676767;
    border: 1px solid #dfdfdf;
    border-radius: 50%;
    background: #fff;
    transition: color .18s ease, border-color .18s ease, transform .18s ease, background .18s ease;
}

.dpm-about-social:hover,
.dpm-about-social:focus-visible {
    color: #111;
    border-color: #bdbdbd;
    background: #fafafa;
    transform: translateY(-1px);
}

.dpm-about-social svg,
.dpm-about-social .dpm-about-icon,
.dpm-about-social .dpm-about-icon svg {
    width: 17px;
    height: 17px;
}

.dpm-about-social svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dpm-about-social--facebook svg,
.dpm-about-social--behance svg,
.dpm-about-social--tiktok svg {
    fill: currentColor;
    stroke: none;
}

.dpm-about-social--zalo svg path,
.dpm-about-social--youtube svg rect {
    fill: none;
    stroke: currentColor;
}

.dpm-about-social--youtube .dpm-social-icon__play {
    fill: currentColor;
    stroke: none;
}

.dpm-about-cv-button {
    min-width: 148px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    color: var(--dpm-about-cv-text, #000);
    background: var(--dpm-about-cv-bg, #fdda16);
    border-radius: 7px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    text-decoration: none;
    transition: filter .18s ease, transform .18s ease;
}

.dpm-about-cv-button:hover,
.dpm-about-cv-button:focus-visible {
    color: var(--dpm-about-cv-text, #000);
    filter: brightness(.96);
    transform: translateY(-1px);
}

.dpm-about-nav__main {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 11px;
}

.dpm-about-icon {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    display: inline-grid;
    place-items: center;
}

.dpm-about-icon svg {
    display: block;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dpm-about-nav.is-active {
    color: #000;
    background: var(--dpm-about-primary, #fdda16);
    padding-left: 17px;
    font-weight: 500;
}

.dpm-about-nav.is-active .dpm-about-nav__mark {
    color: #000;
}

.dpm-about-nav.is-active .dpm-about-icon {
    color: #000;
}

@media (max-width: 900px) {
    .dpm-about-profile__body {
        grid-template-columns: 124px minmax(0, 1fr) auto;
        gap: 20px;
        min-height: 154px;
        padding: 22px 24px;
    }

    .dpm-about-avatar-wrap {
        min-height: 124px;
    }

    .dpm-about-avatar {
        width: 124px;
        height: 124px;
        border-width: 4px;
    }

    .dpm-about-profile__actions {
        min-width: 160px;
        gap: 13px;
    }

    .dpm-about-social {
        width: 32px;
        height: 32px;
    }

    .dpm-about-cv-button {
        min-width: 132px;
        min-height: 40px;
        padding: 9px 18px;
        font-size: 14px;
    }
}

@media (max-width: 680px) {
    .dpm-about-profile__body {
        display: grid;
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 16px;
        padding: 18px;
    }

    .dpm-about-avatar-wrap {
        height: auto;
        min-height: 92px;
        align-self: start;
    }

    .dpm-about-avatar {
        position: static;
        width: 92px;
        height: 92px;
        border-width: 4px;
    }

    .dpm-about-profile__copy {
        padding-top: 0;
    }

    .dpm-about-name {
        font-size: 28px;
    }

    .dpm-about-role {
        margin-top: 5px;
        font-size: 14px;
    }

    .dpm-about-summary {
        grid-column: 1 / -1;
        font-size: 13px;
    }

    .dpm-about-basics {
        font-size: 12px;
    }

    .dpm-about-profile__actions {
        grid-column: 1 / -1;
        min-width: 0;
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding-top: 2px;
    }

    .dpm-about-socials {
        justify-content: flex-start;
        gap: 8px;
    }

    .dpm-about-social {
        width: 31px;
        height: 31px;
    }

    .dpm-about-cv-button {
        min-width: 112px;
        min-height: 38px;
        padding: 8px 14px;
        font-size: 13px;
    }

    .dpm-about-nav.is-active {
        color: #000;
        background: var(--dpm-about-primary, #fdda16);
        padding-left: 14px;
    }

    .dpm-about-nav__main {
        gap: 7px;
    }

    .dpm-about-nav .dpm-about-icon {
        flex-basis: 16px;
        width: 16px;
        height: 16px;
    }

    .dpm-about-nav .dpm-about-icon svg {
        width: 15px;
        height: 15px;
    }
}


/* ========================================================================
   v0.2.3 — About Me compact profile list + compact action buttons
   ======================================================================== */
@media (min-width: 901px) {
    .dpm-about-profile__body {
        grid-template-columns: 185px minmax(0, 1fr) auto;
        gap: 32px;
        min-height: 220px;
    }

    .dpm-about-avatar-wrap {
        min-height: 185px;
    }

    .dpm-about-avatar {
        width: 185px;
        height: 185px;
    }
}

.dpm-about-profile__copy {
    align-self: center;
}

.dpm-about-basics {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.3;
}

.dpm-about-basic {
    display: block;
    width: fit-content;
    margin: 0;
    color: #666;
    text-decoration: none;
}

.dpm-about-basic:hover,
.dpm-about-basic:focus-visible {
    color: #222;
}

.dpm-about-basic--role {
    color: #555;
}

.dpm-about-action-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    flex-wrap: wrap;
}

.dpm-about-cv-button {
    flex: 0 0 auto;
    min-width: 0;
    width: auto;
    min-height: 38px;
    padding: 8px 14px;
    font-size: 14px;
    white-space: nowrap;
}

.dpm-about-portfolio-button {
    color: var(--dpm-about-cv-text, #000);
    background: var(--dpm-about-cv-bg, #fdda16);
}

@media (max-width: 900px) and (min-width: 681px) {
    .dpm-about-profile__body {
        grid-template-columns: 149px minmax(0, 1fr) auto;
        gap: 22px;
        min-height: 176px;
    }

    .dpm-about-avatar-wrap {
        min-height: 149px;
    }

    .dpm-about-avatar {
        width: 149px;
        height: 149px;
    }

    .dpm-about-profile__actions {
        min-width: 180px;
    }

    .dpm-about-basics {
        gap: 2px;
        font-size: 13px;
    }

    .dpm-about-cv-button {
        min-width: 0;
        min-height: 37px;
        padding: 8px 12px;
        font-size: 13px;
    }
}

@media (max-width: 680px) {
    .dpm-about-profile__body {
        grid-template-columns: 110px minmax(0, 1fr);
    }

    .dpm-about-avatar-wrap {
        min-height: 110px;
    }

    .dpm-about-avatar {
        width: 110px;
        height: 110px;
    }

    .dpm-about-basics {
        gap: 1px;
        margin-top: 7px;
        font-size: 12px;
        line-height: 1.28;
    }

    .dpm-about-profile__actions {
        align-items: flex-start;
    }

    .dpm-about-action-buttons {
        justify-content: flex-end;
    }

    .dpm-about-cv-button {
        min-width: 0;
        min-height: 35px;
        padding: 7px 11px;
        font-size: 12px;
    }
}


/* --------------------------------------------------------------------------
   v0.2.4 — About Me field icons + action button order
   -------------------------------------------------------------------------- */
.dpm-about-basic__icon {
    display: inline-block;
    margin-right: 6px;
    line-height: 1;
    vertical-align: -0.05em;
}

.dpm-about-cv-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.dpm-about-button-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}

/* --------------------------------------------------------------------------
   v0.2.6 — About Me: tinh chỉnh Giới thiệu + Kỹ năng
   -------------------------------------------------------------------------- */

/* Section headings get a compact accent line without changing editor content. */
.dpm-about-section--gioi-thieu .dpm-about-section__header h2,
.dpm-about-section--ky-nang .dpm-about-section__header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 11px;
    font-weight: 700;
    letter-spacing: -.02em;
}

.dpm-about-section--gioi-thieu .dpm-about-section__header h2::after,
.dpm-about-section--ky-nang .dpm-about-section__header h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 4px;
    border-radius: 999px;
    background: var(--dpm-about-primary, #fdda16);
}

/* INTRO / GIỚI THIỆU */
.dpm-about-section--gioi-thieu {
    background:
        radial-gradient(circle at 92% 12%, color-mix(in srgb, var(--dpm-about-primary, #fdda16) 18%, transparent), transparent 28%),
        #fff;
}

.dpm-about-section--gioi-thieu .dpm-about-section__body {
    padding-top: 24px;
}

.dpm-about-section--gioi-thieu .dpm-about-section__body > p:first-of-type {
    position: relative;
    width: 100%;
    max-width: none;
    margin-bottom: 24px;
    padding: 18px 20px 18px 24px;
    color: #303030;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(0,0,0,.055);
    border-left: 5px solid var(--dpm-about-primary, #fdda16);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.035);
    font-size: inherit;
    font-weight: 700;
    line-height: inherit;
}

.dpm-about-section--gioi-thieu .dpm-about-section__body > p:not(:first-of-type) {
    max-width: 900px;
    color: #5a5a5a;
    font-size: 15px;
    line-height: 1.9;
}

.dpm-about-section--gioi-thieu .dpm-about-section__body ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.dpm-about-section--gioi-thieu .dpm-about-section__body li {
    position: relative;
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 11px 14px 11px 42px;
    color: #454545;
    background: #f7f7f7;
    border: 1px solid #ececec;
    border-radius: 9px;
    line-height: 1.45;
}

.dpm-about-section--gioi-thieu .dpm-about-section__body li::before {
    content: "✓";
    position: absolute;
    left: 13px;
    top: 50%;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    color: #000;
    background: var(--dpm-about-primary, #fdda16);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
}

.dpm-about-section--gioi-thieu .dpm-about-section__body blockquote {
    margin: 28px 0 0;
    padding: 18px 22px;
    color: #4c4c4c;
    background: #fafafa;
    border: 0;
    border-radius: 9px;
    font-size: 16px;
    font-style: italic;
}

/* SKILLS / KỸ NĂNG */
.dpm-about-section--ky-nang .dpm-about-section__body {
    padding-top: 20px;
}

.dpm-about-skills-intro {
    max-width: 920px;
    margin-bottom: 26px;
    color: #646464;
    line-height: 1.75;
}

.dpm-about-skills-intro > :first-child {
    margin-top: 0;
}

.dpm-about-skills-intro > :last-child {
    margin-bottom: 0;
}

.dpm-skill-groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 42px;
}

.dpm-skill-groups--single {
    grid-template-columns: 1fr;
}

.dpm-skill-group {
    min-width: 0;
}

.dpm-skill-group__title {
    margin: 0 0 26px;
    padding-left: 18px;
    border-left: 4px solid var(--dpm-about-primary, #fdda16);
    color: #2f2f2f;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
}

.dpm-skill-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.dpm-skill-list--two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 36px;
}

.dpm-skill-bar-item {
    min-width: 0;
}

.dpm-skill-bar-item__name {
    margin-bottom: 10px;
    color: #2f2f2f;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}

.dpm-skill-bar {
    position: relative;
    height: 24px;
    border: 2px solid #6b6b6b;
    background: #fff;
    overflow: hidden;
}

.dpm-skill-bar span {
    display: block;
    height: calc(100% - 4px);
    margin: 2px;
    background: var(--dpm-about-primary, #fdda16);
}

@media (max-width: 980px) {
    .dpm-skill-groups,
    .dpm-skill-groups--single {
        grid-template-columns: 1fr;
    }

    .dpm-skill-list--two-col {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

@media (max-width: 680px) {
    .dpm-about-section--gioi-thieu .dpm-about-section__body > p:first-of-type {
        padding: 15px 16px 15px 19px;
        font-size: inherit;
        line-height: inherit;
    }

    .dpm-about-section--gioi-thieu .dpm-about-section__body ul {
        grid-template-columns: 1fr;
    }

    .dpm-skill-groups {
        gap: 26px;
    }

    .dpm-skill-group__title {
        margin-bottom: 20px;
        font-size: 22px;
        padding-left: 14px;
    }

    .dpm-skill-list,
    .dpm-skill-list--two-col {
        gap: 18px;
    }

    .dpm-skill-bar-item__name {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .dpm-skill-bar {
        height: 20px;
    }
}

/* --------------------------------------------------------------------------
   v0.2.7 — About Me: Học vấn + tiêu đề section thống nhất
   -------------------------------------------------------------------------- */

/* Tất cả đề mục About Me dùng cùng style với Giới thiệu. */
.dpm-about-section__header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 11px;
    font-weight: 700;
    letter-spacing: -.02em;
}

.dpm-about-section__header h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 4px;
    border-radius: 999px;
    background: var(--dpm-about-primary, #fdda16);
}

/* HỌC VẤN
   Cách nhập trong Page editor:
   H2: Học vấn
   H3: TÊN TRƯỜNG / ĐƠN VỊ
   Paragraph: nội dung khóa học / bằng cấp
   H3 tiếp theo sẽ tự tạo một section mới và có line ngăn cách.
*/
.dpm-about-section--hoc-van .dpm-about-section__body {
    padding-top: 20px;
}

.dpm-about-section--hoc-van .dpm-about-section__body h3 {
    margin: 0 0 6px;
    padding: 0;
    color: #2f2f2f;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: .01em;
    text-transform: uppercase;
}

/* Line chỉ nằm giữa các section học vấn, không nằm trước section đầu tiên. */
.dpm-about-section--hoc-van .dpm-about-section__body h3 ~ h3 {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid var(--dpm-about-primary, #fdda16);
}

.dpm-about-section--hoc-van .dpm-about-section__body p {
    margin: 0 0 5px;
    color: #626262;
    font-size: inherit;
    font-weight: 400;
    line-height: 1.65;
    text-transform: none;
}

.dpm-about-section--hoc-van .dpm-about-section__body h3 + p {
    margin-top: 0;
}

.dpm-about-section--hoc-van .dpm-about-section__body ul,
.dpm-about-section--hoc-van .dpm-about-section__body ol {
    margin: 7px 0 0;
    padding-left: 20px;
    color: #626262;
    line-height: 1.65;
}

.dpm-about-section--hoc-van .dpm-about-section__body li + li {
    margin-top: 3px;
}

@media (max-width: 680px) {
    .dpm-about-section--hoc-van .dpm-about-section__body h3 {
        font-size: 15px;
    }

    .dpm-about-section--hoc-van .dpm-about-section__body h3 ~ h3 {
        margin-top: 22px;
        padding-top: 20px;
    }
}

/* --------------------------------------------------------------------------
   v0.2.8 — About Me: Kinh nghiệm timeline
   -------------------------------------------------------------------------- */

/*
 * Cách nhập trong Page editor:
 * H2: Kinh nghiệm
 * H3: 2019 - nay | TÊN CÔNG TY / NƠI LÀM VIỆC
 * H4: Vị trí / chức danh
 * Paragraph/List: mô tả kinh nghiệm làm việc
 */
.dpm-about-section--kinh-nghiem .dpm-about-section__body {
    padding-top: 20px;
}

.dpm-about-experience-intro {
    margin-bottom: 24px;
    color: #626262;
    line-height: 1.65;
}

.dpm-experience-timeline {
    width: 100%;
    max-width: 100%;
}

.dpm-experience-item {
    position: relative;
    padding: 0 0 42px 58px;
}

.dpm-experience-item:last-child {
    padding-bottom: 0;
}

/* Sổ dọc của timeline. */
.dpm-experience-item:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 18px;
    bottom: -2px;
    width: 3px;
    background: var(--dpm-about-primary, #fdda16);
    opacity: .24;
    border-radius: 999px;
}

/* Dấu chấm timeline. */
.dpm-experience-item__dot {
    position: absolute;
    left: 2px;
    top: 7px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--dpm-about-primary, #fdda16);
    box-shadow: 0 0 0 5px #fff;
    z-index: 2;
}

.dpm-experience-item__content {
    position: relative;
    min-width: 0;
}

/* Đường nối ngắn từ dot sang shape năm. */
.dpm-experience-item__content::before {
    content: "";
    position: absolute;
    left: -38px;
    top: 16px;
    width: 38px;
    height: 2px;
    background: var(--dpm-about-primary, #fdda16);
    opacity: .32;
}

/* Shape năm dùng Primary. */
.dpm-experience-year {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    margin: 0 0 20px;
    padding: 7px 22px 7px 28px;
    background: var(--dpm-about-primary, #fdda16);
    color: #000;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .015em;
    clip-path: polygon(10px 0, 100% 0, 100% 100%, 10px 100%, 10px 12px, 0 0);
}

/* Tên nơi làm việc: in hoa + đậm. */
.dpm-experience-company {
    margin: 0 0 7px !important;
    padding: 0 !important;
    border: 0 !important;
    color: #252525 !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    letter-spacing: .005em !important;
    text-transform: uppercase !important;
}

/* Vị trí làm việc: thường + nghiêng + Secondary. */
.dpm-experience-role {
    margin: 0 0 12px;
    color: var(--dpm-about-secondary, #e18424);
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.45;
}

/* Nội dung kinh nghiệm: body text thường. */
.dpm-experience-description {
    color: #626262;
    font-size: inherit;
    font-weight: 400;
    line-height: 1.65;
}

.dpm-experience-description > :first-child {
    margin-top: 0;
}

.dpm-experience-description > :last-child {
    margin-bottom: 0;
}

.dpm-experience-description p {
    margin: 0 0 7px;
}

.dpm-experience-description ul,
.dpm-experience-description ol {
    margin: 8px 0 0;
    padding-left: 20px;
}

.dpm-experience-description li + li {
    margin-top: 4px;
}

@media (max-width: 680px) {
    .dpm-experience-item {
        padding-left: 45px;
        padding-bottom: 32px;
    }

    .dpm-experience-item:not(:last-child)::before {
        left: 8px;
    }

    .dpm-experience-item__dot {
        left: 0;
        width: 18px;
        height: 18px;
    }

    .dpm-experience-item__content::before {
        left: -29px;
        width: 29px;
    }

    .dpm-experience-year {
        min-height: 34px;
        margin-bottom: 16px;
        padding: 6px 17px 6px 23px;
        font-size: 13px;
    }

    .dpm-experience-company {
        font-size: 16px !important;
    }

    .dpm-experience-role {
        font-size: 15px;
    }
}
