/*
Theme Name: Donald Girardin Portfolio
Theme URI: http://donaldgirardin.com/
Author: Donald Girardin
Author URI: http://donaldgirardin.com/
Description: Modern light WordPress portfolio theme tailored for Donald Girardin. It keeps classic WordPress compatibility while providing a brighter, cleaner CV and portfolio presentation.
Version: 1.0.12
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
Text Domain: donaldgirardin-portfolio-light
*/

:root {
    --dg-bg: #fffdf8;
    --dg-bg-soft: #fff8e8;
    --dg-surface: #ffffff;
    --dg-surface-soft: #fffdf6;
    --dg-border: #eadfbc;
    --dg-border-strong: #d7c486;
    --dg-text: #3d3825;
    --dg-text-soft: #6b644d;
    --dg-title: #6c5b1f;
    --dg-accent: #caa63d;
    --dg-accent-strong: #af8c2e;
    --dg-accent-soft: #f4e8b4;
    --dg-shadow: 0 18px 48px rgba(106, 89, 33, 0.08);
    --dg-shadow-soft: 0 10px 26px rgba(106, 89, 33, 0.06);
    --dg-radius-lg: 22px;
    --dg-radius-md: 16px;
    --dg-radius-sm: 12px;
    --dg-content-width: clamp(1220px, 88vw, 1430px);
    --dg-gap: 24px;
    --dg-content-max: 760px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--dg-text);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    line-height: 1.7;
    background:
        radial-gradient(circle at top left, rgba(244, 232, 180, 0.45), transparent 32%),
        linear-gradient(180deg, #fffefb 0%, var(--dg-bg) 100%);
}

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

a {
    color: var(--dg-accent-strong);
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

.screen-reader-text {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}

.site-shell {
    width: min(calc(100% - 28px), var(--dg-content-width));
    margin: 0 auto;
    padding: 24px 0 42px;
}

.site-header {
    margin-bottom: 26px;
}

.site-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 20px;
    border: 1px solid rgba(215, 196, 134, 0.7);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    box-shadow: var(--dg-shadow-soft);
}

.branding {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.branding__mark {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 18px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 30% 30%, #fff7d7, #efd98b);
    color: var(--dg-title);
    font-size: 1.25rem;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(191, 154, 52, 0.18);
}

.branding__mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.branding__content {
    min-width: 0;
}

.site-title {
    margin: 0;
    font-size: 1.55rem;
    line-height: 1.1;
    color: var(--dg-title);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.site-title a,
.site-title a:visited,
.site-title a:hover,
.site-title a:focus {
    color: #6c5b1f;
	font-weight: 700;
    text-decoration: none;
}

.site-description {
    margin: 4px 0 0;
    color: var(--dg-text-soft);
    font-size: 0.96rem;
}

.primary-navigation {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: auto;
}

.primary-navigation ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.primary-navigation li {
    margin: 0;
}

.primary-navigation a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    color: var(--dg-title);
    text-decoration: none;
    border: 1px solid transparent;
    font-weight: 700;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.primary-navigation a:hover,
.primary-navigation a:focus,
.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a,
.primary-navigation .current-menu-ancestor > a {
    background: #fff8dc;
    border-color: rgba(202, 166, 61, 0.25);
    color: var(--dg-accent-strong);
    text-decoration: none;
}

.primary-navigation a:hover {
    transform: translateY(-1px);
}

.header-search {
    margin-left: auto;
}

.header-search .search-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-field,
.search-submit,
button,
input,
textarea,
select {
    font: inherit;
}

.search-field,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
textarea {
    width: 100%;
    padding: 6px 12px;
    border-radius: 14px;
    border: 1px solid var(--dg-border);
    background: rgba(255, 255, 255, 0.92);
    color: var(--dg-text);
}

.search-field:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--dg-accent);
    box-shadow: 0 0 0 4px rgba(202, 166, 61, 0.12);
}

.search-submit,
.button,
button,
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    background: linear-gradient(180deg, #dabb58 0%, #bf9a34 100%);
    color: #fffef7;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(191, 154, 52, 0.18);
}

.search-submit:hover,
.button:hover,
button:hover,
input[type="submit"]:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.site-main {
    display: block;
}

.page-grid,
.default-grid,
.blog-grid,
.archive-grid,
.search-grid,
.error-grid,
.single-grid {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.sidebar-column {
    position: sticky;
    top: 20px;
    display: grid;
    gap: 18px;
}

.panel,
.widget,
.card,
.entry-card,
.content-card,
.comment-respond,
.comments-area {
    background: var(--dg-surface);
    border: 1px solid rgba(234, 223, 188, 0.95);
    border-radius: var(--dg-radius-lg);
    box-shadow: var(--dg-shadow);
}

.panel,
.widget,
.content-card,
.comment-respond,
.comments-area {
    overflow: hidden;
}

.panel__body,
.widget,
.content-card,
.comment-respond,
.comments-area,
.entry-card {
	padding: 0;
}

.profile-panel {
    background: linear-gradient(180deg, rgba(255, 248, 232, 0.96) 0%, rgba(255, 255, 255, 1) 100%);
    text-align: center;
}

.profile-avatar {
    width: 118px;
    height: 118px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 12px 24px rgba(191, 154, 52, 0.18);
    background: radial-gradient(circle at 30% 30%, #fff7d7, #efd98b);
    display: grid;
    place-items: center;
    color: var(--dg-title);
    font-weight: 800;
    font-size: 2rem;
}

.profile-panel h2,
.profile-panel h3 {
    margin: 0 0 8px;
    color: var(--dg-title);
}

.profile-panel p {
    margin: 0;
    color: var(--dg-text-soft);
}

.stack-list,
.contact-list,
.archive-list,
.meta-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.stack-item,
.contact-item,
.archive-item,
.meta-item {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 12px;
    padding: 6px 12px;
    border-radius: 14px;
    background: var(--dg-surface-soft);
    border: 1px solid rgba(234, 223, 188, 0.92);
}

.stack-item span:first-child,
.contact-item span:first-child,
.archive-item span:first-child,
.meta-item span:first-child {
    color: var(--dg-text-soft);
    font-size: 0.92rem;
}

.stack-item strong,
.contact-item strong,
.archive-item strong,
.meta-item strong {
    color: var(--dg-title);
    text-align: right;
    font-size: 0.95rem;
}

.main-column {
    display: grid;
    gap: 22px;
    min-width: 0;
}

.hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 34px;
    border: 1px solid rgba(215, 196, 134, 0.75);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 252, 242, 0.98) 0%, rgba(255, 247, 221, 0.92) 100%);
    box-shadow: var(--dg-shadow);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -80px -80px auto;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(202, 166, 61, 0.14), transparent 68%);
    pointer-events: none;
}

.hero__eyebrow,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border: 1px solid rgba(202, 166, 61, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--dg-accent-strong);
    font-size: 1em;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero__title,
.page-title,
.entry-title,
.section-title {
    margin: 16px 0 12px;
    color: var(--dg-title);
    letter-spacing: -0.03em;
}

.hero__title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 0.98;
}

.hero__text,
.page-intro,
.entry-summary,
.entry-excerpt {
    color: var(--dg-text-soft);
}

p.hero__text {
	text-align: justify;
}

.hero__content {
    min-width: 0;
}

.hero-widget {
    min-width: 0;
}

.hero-widget + .hero-widget {
    margin-top: 0;
}

.hero .widget_dgpl_hero_positioning_widget {
    margin-top: 0;
}

.hero__intro {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    margin-top: 10px;
}

.hero__intro-image {
    display: block;
    width: 96px;
    height: 96px;
    object-fit: contain;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 248, 224, 0.92) 100%);
    border: 1px solid rgba(215, 196, 134, 0.55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 8px 0 rgba(196, 165, 73, 0.18), 0 18px 30px rgba(106, 89, 33, 0.14);
    padding: 10px;
}

.hero__intro-copy {
    min-width: 0;
}

.hero__intro-copy .hero__title {
    margin-top: 0;
}

.hero__content > .hero-card {
    margin-top: 10px;
}

.hero__positioning-label {
    margin-top: 24px;
}

.button-secondary {
    background: rgba(255, 255, 255, 0.78);
    color: var(--dg-title);
    border: 1px solid rgba(215, 196, 134, 0.75);
    box-shadow: none;
}

.button-secondary:hover {
    background: #fff8dc;
}

.hero-card {
    align-self: stretch;
    display: grid;
    gap: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
}

.hero-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

.hero-card-grid > .metric:nth-child(4) {
    grid-column: 1 / -1;
}

.metric {
    min-width: 0;
    min-height: 96px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px 16px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 254, 249, 0.98) 0%, rgba(255, 250, 236, 0.94) 100%);
    border: 1px solid rgba(215, 196, 134, 0.38);
    box-shadow: 0 10px 24px rgba(106, 89, 33, 0.05);
}

.metric strong,
.metric span {
    overflow-wrap: anywhere;
}

.metric strong {
    display: block;
    margin-bottom: 5px;
    font-size: clamp(1.05rem, 1rem + 0.45vw, 1.14rem);
    line-height: 1.2;
    color: var(--dg-title);
}

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.card-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.entry-card {
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: 18px;
    border: 1px solid rgba(234, 223, 188, 0.95);
    background: linear-gradient(180deg, #fffefd 0%, #fffdf8 52%, #fbf7eb 100%);
    box-shadow: var(--dg-shadow);
}

.entry-card h2,
.entry-card h3,
.entry-card h4 {
    margin: 0;
    color: var(--dg-title);
}

.entry-card p {
    margin: 0;
    color: var(--dg-text-soft);
    margin-top: 10px;
}

.tax-list,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tax-list a,
.tag-list a,
.tag {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(215, 196, 134, 0.8);
    color: var(--dg-accent-strong);
    font-size: 0.7rem;
    font-weight: 700;
    text-decoration: none;
}

.tax-list a:hover,
.tag-list a:hover {
    background: #fff8dc;
}

.entry-meta {
    position: relative;
    margin: 0;
    padding: 14px 18px 14px 52px;
    border: 1px solid rgba(215, 196, 134, 0.9);
    border-left: 4px solid var(--dg-accent-strong);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 252, 242, 0.98) 0%, rgba(255, 247, 221, 0.92) 100%);
    box-shadow: 0 10px 24px rgba(106, 89, 33, 0.06);
    color: var(--dg-title);
    font-size: 0.95rem;
    line-height: 1.7;
}

.entry-meta::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 18px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b8891f' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='7' width='10' height='10' rx='1.5'/%3E%3Cpath d='M9 1v4M15 1v4M9 19v4M15 19v4M19 9h4M19 15h4M1 9h4M1 15h4'/%3E%3Cpath d='M10 10h4v4h-4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.95;
}

.entry-meta span {
    display: inline;
}

.entry-meta span + span::before {
    content: " • ";
    color: rgba(61, 56, 37, 0.45);
}

.entry-meta a {
    color: var(--dg-title);
}

.entry-thumbnail {
    overflow: hidden;
    border-radius: 18px;
}

.entry-thumbnail img {
    display: block;
    width: 100%;
}

.entry-content {
	margin-left: 1em;
	margin-right: 1em;
}

.content-card .entry-content > *:first-child,
.entry-card > *:first-child,
.entry-content > *:first-child {
    margin-top: 0;
}

.content-card .entry-content > *:last-child,
.entry-card > *:last-child,
.entry-content > *:last-child {
    margin-bottom: 0;
}

.timeline {
    display: grid;
    gap: 14px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(234, 223, 188, 0.95);
    background: linear-gradient(180deg, #ffffff 0%, #fffdf7 100%);
    box-shadow: var(--dg-shadow);
}

.timeline-date {
    font-weight: 800;
    color: var(--dg-accent-strong);
    font-size: 0.95rem;
}

.timeline-item h3,
.timeline-item h4 {
    margin: 0 0 8px;
    color: var(--dg-title);
}

.timeline-item p {
    margin: 0;
    color: var(--dg-text-soft);
}

.archive-header,
.page-header,
.search-header,
.error-header {
    padding: 0;
    overflow: hidden;
}

.page-header,
.archive-header {
    display: block;
}

.page-header .page-title,
.archive-header .page-title,
.search-header .page-title,
.error-header .page-title {
    display: block;
    margin: 0;
    padding: 16px 22px 15px;
    color: #7a5e15;
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
    background: linear-gradient(180deg, #f8ecbd 0%, #efd98f 52%, #e5c15e 100%);
    border: 1px solid rgba(201, 165, 64, 0.45);
    border-bottom-color: rgba(178, 134, 36, 0.35);
    border-radius: 18px 18px 0 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 1px 0 rgba(255, 252, 240, 0.65);
}

.page-header .page-intro,
.archive-header .page-intro,
.search-header .page-intro,
.error-header .page-intro {
    margin: 0;
    padding: 16px 22px 18px;
    color: var(--dg-text-soft);
    line-height: 1.7;
}

.page-header .page-intro > :first-child,
.archive-header .page-intro > :first-child,
.search-header .page-intro > :first-child,
.error-header .page-intro > :first-child {
    margin-top: 0;
}

.page-header .page-intro > :last-child,
.archive-header .page-intro > :last-child,
.search-header .page-intro > :last-child,
.error-header .page-intro > :last-child {
    margin-bottom: 0;
}

.content-card--page-body,
article.content-card--page-body,
.main-column > article.content-card--page-body,
.page .content-card--page-body,
.page-template-default .content-card--page-body {
    padding-top: 22px;
    background: linear-gradient(
        180deg,
        rgba(255, 254, 250, 0.99) 0%,
        rgba(255, 252, 244, 0.98) 42%,
        rgba(250, 243, 223, 0.96) 100%
    ) !important;
    border-color: rgba(215, 196, 134, 0.98);
}

.content-card--page-body > .entry-content {
    background: transparent;
}

.loop-stack {
    display: grid;
    gap: 16px;
}

.loop-stack .entry-card {
    padding: 22px;
}

.pagination {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
}

.pagination .nav-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(215, 196, 134, 0.8);
    color: var(--dg-title);
    text-decoration: none;
    font-weight: 700;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: #fff8dc;
    color: var(--dg-accent-strong);
}

.panel:not(.profile-panel),
.widget {
    background: linear-gradient(180deg, rgba(255, 248, 232, 0.96) 0%, rgba(255, 255, 255, 1) 100%);
}

.panel:not(.profile-panel) .panel__body,
.widget .widget__inner {
    padding: 0 0 22px;
}

.panel:not(.profile-panel) .widget-title,
.widget-title,
.comment-reply-title,
.comments-title {
    display: block;
    margin: 0;
    padding: 16px 22px 15px;
    color: #7a5e15;
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
    background: linear-gradient(180deg, #f8ecbd 0%, #efd98f 52%, #e5c15e 100%);
    border: 1px solid rgba(201, 165, 64, 0.45);
    border-bottom-color: rgba(178, 134, 36, 0.35);
    border-radius: 18px 18px 0 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 1px 0 rgba(255, 252, 240, 0.65);
}

.panel:not(.profile-panel) .widget-title + *,
.widget .widget__inner > :not(.widget-title):first-child {
    margin-top: 18px;
}

.panel:not(.profile-panel) .contact-list,
.panel:not(.profile-panel) .stack-list,
.panel:not(.profile-panel) .archive-list,
.panel:not(.profile-panel) .meta-list {
    padding: 0 22px;
}

.widget .widget__inner > :not(.widget-title) {
    margin-left: 12px;
    margin-right: 12px;
}

.widget .widget__inner > :last-child {
    margin-bottom: 0;
}

.widget ul,
.widget ol {
    padding-left: 40px;
    margin-top: 0;
    margin-bottom: 0;
}

.widget li + li {
    margin-top: 8px;
}

.footer-panel {
    margin-top: 28px;
}

.footer-panel__inner {
    display: grid;
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(215, 196, 134, 0.7);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--dg-shadow-soft);
}

.footer-panel__widgets {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.footer-panel__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: var(--dg-text-soft);
    font-size: 0.94rem;
}

.footer-navigation ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-navigation a {
    text-decoration: none;
    color: var(--dg-text-soft);
}

.footer-navigation a:hover {
    color: var(--dg-accent-strong);
}

.wp-block-group,
.wp-block-cover,
.wp-block-columns,
.wp-block-image,
.wp-block-quote,
.wp-block-table,
.wp-block-media-text,
.wp-block-gallery {
    margin-bottom: 1.5rem;
}

blockquote {
    margin: 1.5rem 0;
    padding: 18px 20px;
    border-left: 4px solid var(--dg-accent);
    background: #fffaf0;
    border-radius: 0 16px 16px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 12px;
    border: 1px solid var(--dg-border);
    text-align: left;
}

pre,
code {
    font-family: Consolas, "Courier New", monospace;
}

pre {
    padding: 18px;
    overflow: auto;
    border-radius: 16px;
    background: #fffaf0;
    border: 1px solid var(--dg-border);
}

.not-found {
    text-align: center;
}

@media (max-width: 1120px) {
    .hero,
    .page-grid,
    .default-grid,
    .blog-grid,
    .archive-grid,
    .search-grid,
    .error-grid,
    .single-grid,
    .card-grid,
    .card-grid--two,
    .footer-panel__widgets {
        grid-template-columns: 1fr;
    }

    .sidebar-column {
        position: static;
        order: 2;
    }

    .header-search {
        width: 100%;
        margin-left: 0;
    }

    .site-topbar {
        flex-wrap: wrap;
    }
}

@media (max-width: 720px) {
    .site-shell {
        width: min(calc(100% - 20px), var(--dg-content-width));
        padding-top: 16px;
    }

    .site-topbar,
    .content-card,
    .entry-card,
    .archive-header,
    .page-header,
    .search-header,
    .error-header,
    .panel__body,
    .widget,
    .comment-respond,
    .comments-area,
    .hero {
        padding: 20px;
    }

    .hero-card-grid,
    .hero__actions,
    .section-header,
    .footer-panel__bottom {
        display: grid;
    }

    .hero-card-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .primary-navigation,
    .primary-navigation ul {
        width: 100%;
    }

    .primary-navigation a {
        width: 100%;
        justify-content: flex-start;
    }
}

.widget_dgpl_contact_card_widget .widget__inner,
.widget_dgpl_contact_card_widget {
    background: linear-gradient(180deg, rgba(255, 249, 236, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.dgpl-contact-card {
    display: grid;
    gap: 12px;
    padding: 0 22px 22px;
}

.contact-item--icon {
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
}

.contact-content {
    min-width: 0;
    flex: 1 1 auto;
}

.contact-item--icon strong,
.contact-item--icon .contact-link,
.contact-item--icon .contact-link strong {
    display: block;
    width: 100%;
    min-width: 0;
    color: var(--dg-title);
    font-weight: 700;
    line-height: 1.45;
    text-align: left;
    text-decoration: none;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-item--icon .contact-link:hover,
.contact-item--icon .contact-link:hover strong {
    color: var(--dg-accent-strong);
}

/* Optional pale brown utility style for manually chosen contact items. */
.contact-item.light,
.contact-item.light strong,
.contact-item.light a,
.contact-item.light a strong,
.contact-item .light,
.contact-item .light strong,
.contact-item strong.light,
.contact-item a.light,
.contact-item a.light strong {
    color: #aa935e !important;
}

.contact-item.light a:hover,
.contact-item.light a:hover strong,
.contact-item .light:hover,
.contact-item .light:hover strong,
.contact-item a.light:hover,
.contact-item a.light:hover strong {
    color: #8e7745 !important;
}


.entry-career-details {
    display: grid;
    gap: 4px;
    margin: 10px 0 0;
}

.entry-career-details--header {
    margin-top: 0;
}

.entry-title--career {
    margin: 0;
}

.entry-period {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin: 0 0 10px;
    padding: 10px 16px 9px;
    color: #7a5e15;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
    background: linear-gradient(180deg, #f8ecbd 0%, #efd98f 52%, #e5c15e 100%);
    border: 1px solid rgba(201, 165, 64, 0.45);
    border-bottom-color: rgba(178, 134, 36, 0.35);
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 1px 0 rgba(255, 252, 240, 0.65);
}

.entry-period > :first-child,
.entry-period > :last-child {
    margin-top: 0;
    margin-bottom: 0;
}

.entry-period a,
.entry-period a:visited,
.entry-period a:hover,
.entry-period a:focus {
    color: inherit;
    text-decoration: none;
}

.entry-period p {
    margin: 0;
}

.entry-project {
    color: rgba(61, 56, 37, 0.58);
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}
.entry-role > :first-child,
.entry-work-type > :first-child,
.entry-project > :first-child {
    margin-top: 0;
}

.entry-role > :last-child,
.entry-work-type > :last-child,
.entry-project > :last-child {
    margin-bottom: 0;
}

.entry-project {
    margin-top: -6px;
}


.entry-project p,
.entry-role p,
.entry-work-type p {
    margin: 0;
}


.entry-employer {
    color: var(--dg-title);
    font-size: 1.34rem;
    font-weight: 800;
    line-height: 1.25;
}

.entry-role-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    flex-wrap: wrap;
}

.entry-role {
    color: var(--dg-title);
    font-size: 1.22rem;
    font-weight: 800;
    line-height: 1.26;
    min-width: 0;
    flex: 1 1 260px;
}

.entry-work-type {
    color: var(--dg-title);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: right;
    flex: 0 1 auto;
    margin-left: auto;
    padding: 2px 10px;
    border: 1px solid rgba(215, 196, 134, 0.92);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 252, 242, 0.98) 0%, rgba(255, 247, 221, 0.92) 100%);
    box-shadow: 0 6px 16px rgba(106, 89, 33, 0.05);
    white-space: nowrap;
}

.entry-career-summary {
    margin: 0;
    color: var(--dg-text-soft);
    line-height: 1.75;
}

.entry-career-expertise {
    margin: 2px 0 0;
    padding: 12px 16px;
    border: 1px solid rgba(215, 196, 134, 0.9);
    border-left: 4px solid var(--dg-accent-strong);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 252, 242, 0.98) 0%, rgba(255, 247, 221, 0.92) 100%);
    box-shadow: 0 10px 24px rgba(106, 89, 33, 0.06);
}

.entry-career-expertise p {
    margin: 0;
    color: var(--dg-title);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.7;
}


/* Normalize old Artisteer content rows and cells inside articles. */
.entry-content .art-content-layout,
.entry-content .art-postcontent .art-content-layout {
    display: block;
    width: 100%;
    max-width: none;
}

.entry-content .art-content-layout-row,
.entry-content .art-postcontent .art-content-layout-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0 16px;
    width: 100%;
    max-width: none;
}

.entry-content .art-content-layout-row > .art-layout-cell,
.entry-content .art-content-layout-row > [class*="art-layout-cell"],
.entry-content .art-postcontent .art-content-layout-row > .art-layout-cell,
.entry-content .art-postcontent .art-content-layout-row > [class*="art-layout-cell"] {
    display: block;
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0 0 12px;
    padding-left: 0;
    padding-right: 0;
    float: none;
}

.entry-content .art-content-layout-row > .art-layout-cell[style*="width: 50%"],
.entry-content .art-content-layout-row > [class*="art-layout-cell"][style*="width: 50%"],
.entry-content .art-postcontent .art-content-layout-row > .art-layout-cell[style*="width: 50%"],
.entry-content .art-postcontent .art-content-layout-row > [class*="art-layout-cell"][style*="width: 50%"] {
    flex: 0 0 calc(50% - 8px);
    width: calc(50% - 8px) !important;
}

.entry-content .art-content-layout-row > .art-layout-cell[style*="width: 100%"],
.entry-content .art-content-layout-row > [class*="art-layout-cell"][style*="width: 100%"],
.entry-content .art-postcontent .art-content-layout-row > .art-layout-cell[style*="width: 100%"],
.entry-content .art-postcontent .art-content-layout-row > [class*="art-layout-cell"][style*="width: 100%"] {
    flex: 0 0 100%;
    width: 100% !important;
}

.entry-content .art-content-layout-row > .art-layout-cell:last-child,
.entry-content .art-content-layout-row > [class*="art-layout-cell"]:last-child,
.entry-content .art-postcontent .art-content-layout-row > .art-layout-cell:last-child,
.entry-content .art-postcontent .art-content-layout-row > [class*="art-layout-cell"]:last-child {
    margin-bottom: 0;
}

.career-entry--native-layout .entry-content > .art-content-layout:first-of-type .art-content-layout-row {
    align-items: center;
}

.career-entry--native-layout .entry-content > .art-content-layout:first-of-type .art-layout-cell:first-child {
    flex: 1 1 auto;
    width: auto !important;
    margin-right: auto;
}

.career-entry--native-layout .entry-content > .art-content-layout:first-of-type .art-layout-cell:last-child {
    flex: 0 0 auto;
    width: auto !important;
    margin-left: auto;
    text-align: right !important;
}

.career-entry--native-layout .entry-content > .art-content-layout:first-of-type h1,
.career-entry--native-layout .entry-content > .art-content-layout:first-of-type h1 a {
    margin: 0;
    color: #6c5b1f;
    font-size: clamp(1.55rem, 2.5vw, 2.1rem);
    font-weight: 800;
    line-height: 1.15;
    text-decoration: none;
}

.career-entry--native-layout .entry-content > .art-content-layout:first-of-type h1 a:hover,
.career-entry--native-layout .entry-content > .art-content-layout:first-of-type h1 a:focus {
    text-decoration: underline;
}

.career-entry--native-layout .entry-content > .art-content-layout:first-of-type h3,
.career-entry--native-layout .entry-content > .art-content-layout:first-of-type h3 a {
    margin: 0;
    color: #8d7740;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.career-entry--native-layout .entry-content > .art-content-layout:nth-of-type(2) {
    margin-top: -2px;
}

.career-entry--native-layout .entry-content > .art-content-layout:nth-of-type(2) .art-content-layout-row {
    display: block;
}

.career-entry--native-layout .entry-content > .art-content-layout:nth-of-type(2) .art-layout-cell {
    width: 100% !important;
    margin: 0;
}

.career-entry--native-layout .entry-content > .art-content-layout:nth-of-type(2) h2,
.career-entry--native-layout .entry-content > .art-content-layout:nth-of-type(2) h2 a {
    margin: 0 0 8px;
    color: #5f5020;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
}

.career-entry--native-layout .entry-content > .art-content-layout:nth-of-type(3) h4,
.career-entry--native-layout .entry-content > .art-content-layout:nth-of-type(3) h4 a,
.career-entry--native-layout .entry-content > .art-content-layout:nth-of-type(3) h5,
.career-entry--native-layout .entry-content > .art-content-layout:nth-of-type(3) h5 a {
    margin: 0 0 12px;
    color: #9b8653;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
}



/* Class-based career header layout for article content. */
.entry-content .job-header,
.entry-content .art-postcontent .job-header {
    width: 100%;
}

.entry-content .job-header__row,
.entry-content .art-postcontent .job-header__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0 16px;
    width: 100%;
}

.entry-content .job-header__row--title,
.entry-content .art-postcontent .job-header__row--title {
    margin-top: 2px;
}

.entry-content .job-header__company,
.entry-content .art-postcontent .job-header__company {
    flex: 1 1 auto;
    min-width: 0;
    width: auto !important;
    margin-right: auto;
}

.entry-content .job-header__workplace,
.entry-content .art-postcontent .job-header__workplace {
    flex: 0 0 260px;
    width: 260px !important;
    margin-left: auto;
    text-align: right !important;
}

.entry-content .job-header__title,
.entry-content .art-postcontent .job-header__title {
    width: 100% !important;
    margin: 0;
}

.entry-content .job-header__company h1,
.entry-content .job-header__company h1 a,
.entry-content .art-postcontent .job-header__company h1,
.entry-content .art-postcontent .job-header__company h1 a {
    margin: 0;
    color: #6c5b1f;
    font-size: clamp(1.42rem, 2.3vw, 1.9rem);
    font-weight: 800;
    line-height: 1.15;
    text-decoration: none;
}

.entry-content .job-header__company h1 a:hover,
.entry-content .job-header__company h1 a:focus,
.entry-content .art-postcontent .job-header__company h1 a:hover,
.entry-content .art-postcontent .job-header__company h1 a:focus {
    text-decoration: underline;
}

.entry-content .job-header__workplace h3,
.entry-content .job-header__workplace h3 a,
.entry-content .art-postcontent .job-header__workplace h3,
.entry-content .art-postcontent .job-header__workplace h3 a {
    margin: 0;
    color: #8d7740;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
}

.entry-content .job-header__title h2,
.entry-content .job-header__title h2 a,
.entry-content .art-postcontent .job-header__title h2,
.entry-content .art-postcontent .job-header__title h2 a {
    margin: 0 0 8px;
    color: #5f5020;
    font-size: clamp(1.2rem, 1.9vw, 1.5rem);
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
}

@media (max-width: 820px) {
    .entry-content .job-header__row,
    .entry-content .art-postcontent .job-header__row {
        display: block;
    }

    .entry-content .job-header__company,
    .entry-content .job-header__workplace,
    .entry-content .job-header__title,
    .entry-content .art-postcontent .job-header__company,
    .entry-content .art-postcontent .job-header__workplace,
    .entry-content .art-postcontent .job-header__title {
        width: 100% !important;
        margin-left: 0;
        margin-right: 0;
        text-align: left !important;
    }

    .entry-content .job-header__workplace h3,
    .entry-content .art-postcontent .job-header__workplace h3 {
        margin-top: 6px;
        white-space: normal;
    }
}


/* Company on first row, title left + workplace right on second row. */
.entry-content .job-header__row--title,
.entry-content .art-postcontent .job-header__row--title {
    align-items: baseline;
    justify-content: space-between;
    gap: 8px 16px;
}

.entry-content .job-header__row--title .job-header__title,
.entry-content .art-postcontent .job-header__row--title .job-header__title {
    flex: 1 1 0%;
    min-width: 0;
    width: auto !important;
    margin-right: 0;
}

.entry-content .job-header__row--title .job-header__workplace,
.entry-content .art-postcontent .job-header__row--title .job-header__workplace {
    flex: 0 0 auto;
    width: auto !important;
    max-width: 42%;
    min-width: 0;
    margin-left: auto;
    text-align: right !important;
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
}

.entry-content .job-header__row--title .job-header__title h2,
.entry-content .job-header__row--title .job-header__title h2 a,
.entry-content .art-postcontent .job-header__row--title .job-header__title h2,
.entry-content .art-postcontent .job-header__row--title .job-header__title h2 a {
    margin: 0;
}

.entry-content .job-header__row--title .job-header__workplace h3,
.entry-content .job-header__row--title .job-header__workplace h3 a,
.entry-content .art-postcontent .job-header__row--title .job-header__workplace h3,
.entry-content .art-postcontent .job-header__row--title .job-header__workplace h3 a {
    margin: 0;
    line-height: 1.25;
    white-space: nowrap;
}

@media (max-width: 820px) {
    .entry-content .job-header__row--title,
    .entry-content .art-postcontent .job-header__row--title {
        display: block;
    }

    .entry-content .job-header__row--title .job-header__title,
    .entry-content .job-header__row--title .job-header__workplace,
    .entry-content .art-postcontent .job-header__row--title .job-header__title,
    .entry-content .art-postcontent .job-header__row--title .job-header__workplace {
        width: 100% !important;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        text-align: left !important;
        display: block;
    }

    .entry-content .job-header__row--title .job-header__workplace h3,
    .entry-content .art-postcontent .job-header__row--title .job-header__workplace h3 {
        margin-top: 6px;
        white-space: normal;
    }
}

@media (max-width: 640px) {
    .career-entry--native-layout .entry-content > .art-content-layout:first-of-type .art-content-layout-row {
        display: block;
    }

    .career-entry--native-layout .entry-content > .art-content-layout:first-of-type .art-layout-cell:first-child,
    .career-entry--native-layout .entry-content > .art-content-layout:first-of-type .art-layout-cell:last-child {
        width: 100% !important;
        text-align: left !important;
        margin-left: 0;
    }

    .entry-role-row {
        align-items: start;
    }

    .entry-work-type {
        margin-left: 0;
        text-align: left;
        white-space: normal;
    }
}


/* Unified article gradient: lighter at the top, darker at the bottom. */
article.entry-card.content-card,
.loop-stack > article.entry-card.content-card,
.main-column > article.entry-card.content-card {
    background: linear-gradient(
        180deg,
        rgba(255, 252, 244, 0.98) 0%,
        rgba(255, 248, 229, 0.96) 44%,
        rgba(247, 237, 201, 0.94) 76%,
        rgba(236, 219, 163, 0.96) 100%
    );
    border-color: rgba(215, 196, 134, 0.98);
}

article.entry-card.content-card > .entry-header,
article.entry-card.content-card > .entry-content,
article.entry-card.content-card > .entry-footer {
    background: transparent;
}


/* Precise alignment for class-based career header rows. */
.entry-content .job-header__company,
.entry-content .art-postcontent .job-header__company,
.entry-content .job-header__title,
.entry-content .art-postcontent .job-header__title {
    text-align: left !important;
}

.entry-content .job-header__company h1,
.entry-content .job-header__company h1 a,
.entry-content .art-postcontent .job-header__company h1,
.entry-content .art-postcontent .job-header__company h1 a,
.entry-content .job-header__title h2,
.entry-content .job-header__title h2 a,
.entry-content .art-postcontent .job-header__title h2,
.entry-content .art-postcontent .job-header__title h2 a {
    text-align: left !important;
}

.entry-content .job-header__row--title,
.entry-content .art-postcontent .job-header__row--title {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    column-gap: 16px;
    row-gap: 0;
}

.entry-content .job-header__row--title .job-header__title,
.entry-content .art-postcontent .job-header__row--title .job-header__title {
    min-width: 0;
    padding-left: 8px;
}

.entry-content .job-header__row--title .job-header__workplace,
.entry-content .art-postcontent .job-header__row--title .job-header__workplace {
    align-self: start;
    padding-top: 2px;
}

.entry-content .job-header__row--title .job-header__workplace h3,
.entry-content .job-header__row--title .job-header__workplace h3 a,
.entry-content .art-postcontent .job-header__row--title .job-header__workplace h3,
.entry-content .art-postcontent .job-header__row--title .job-header__workplace h3 a {
    margin: 0;
}

@media (max-width: 820px) {
    .entry-content .job-header__row--title,
    .entry-content .art-postcontent .job-header__row--title {
        display: block;
    }

    .entry-content .job-header__row--title .job-header__title,
    .entry-content .art-postcontent .job-header__row--title .job-header__title {
        padding-left: 0;
    }

    .entry-content .job-header__row--title .job-header__workplace,
    .entry-content .art-postcontent .job-header__row--title .job-header__workplace {
        padding-top: 0;
    }
}


/* v64 alignment fix for job headers: company on first line, title left + workplace right on second line. */
.entry-content .job-header__row--title,
.entry-content .art-postcontent .job-header__row--title {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 0 16px !important;
    width: 100% !important;
}

.entry-content .job-header__row--title > .job-header__title,
.entry-content .art-postcontent .job-header__row--title > .job-header__title {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: auto !important;
    margin: 0 !important;
    padding-left: 8px !important;
    align-self: flex-start !important;
}

.entry-content .job-header__row--title > .job-header__workplace,
.entry-content .art-postcontent .job-header__row--title > .job-header__workplace {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: 45% !important;
    min-width: 0 !important;
    margin: 0 0 0 auto !important;
    padding: 0 !important;
    text-align: right !important;
    align-self: flex-start !important;
    display: block !important;
}

.entry-content .job-header__row--title > .job-header__title h2,
.entry-content .job-header__row--title > .job-header__title h2 a,
.entry-content .art-postcontent .job-header__row--title > .job-header__title h2,
.entry-content .art-postcontent .job-header__row--title > .job-header__title h2 a {
    margin: 0 !important;
    text-align: left !important;
}

.entry-content .job-header__row--title > .job-header__workplace h3,
.entry-content .job-header__row--title > .job-header__workplace h3 a,
.entry-content .art-postcontent .job-header__row--title > .job-header__workplace h3,
.entry-content .art-postcontent .job-header__row--title > .job-header__workplace h3 a {
    margin: 0 !important;
    padding-top: 2px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    text-align: right !important;
}

/* Also fix legacy two-block career headers that still use the old Artisteer rows. */
.career-entry--native-layout .entry-content > .art-content-layout:nth-of-type(2) .art-content-layout-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 0 16px !important;
    width: 100% !important;
}

.career-entry--native-layout .entry-content > .art-content-layout:nth-of-type(2) .art-layout-cell:first-child {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: auto !important;
    margin: 0 !important;
    padding-left: 8px !important;
    text-align: left !important;
}

.career-entry--native-layout .entry-content > .art-content-layout:nth-of-type(2) .art-layout-cell:last-child {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: 45% !important;
    min-width: 0 !important;
    margin: 0 0 0 auto !important;
    text-align: right !important;
}

.career-entry--native-layout .entry-content > .art-content-layout:nth-of-type(2) h2,
.career-entry--native-layout .entry-content > .art-content-layout:nth-of-type(2) h2 a {
    margin: 0 !important;
    text-align: left !important;
}

.career-entry--native-layout .entry-content > .art-content-layout:nth-of-type(2) h3,
.career-entry--native-layout .entry-content > .art-content-layout:nth-of-type(2) h3 a {
    margin: 0 !important;
    padding-top: 2px !important;
    text-align: right !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
}

@media (max-width: 820px) {
    .entry-content .job-header__row--title,
    .entry-content .art-postcontent .job-header__row--title,
    .career-entry--native-layout .entry-content > .art-content-layout:nth-of-type(2) .art-content-layout-row {
        display: block !important;
    }

    .entry-content .job-header__row--title > .job-header__title,
    .entry-content .job-header__row--title > .job-header__workplace,
    .entry-content .art-postcontent .job-header__row--title > .job-header__title,
    .entry-content .art-postcontent .job-header__row--title > .job-header__workplace,
    .career-entry--native-layout .entry-content > .art-content-layout:nth-of-type(2) .art-layout-cell:first-child,
    .career-entry--native-layout .entry-content > .art-content-layout:nth-of-type(2) .art-layout-cell:last-child {
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
        text-align: left !important;
    }

    .entry-content .job-header__row--title > .job-header__workplace h3,
    .entry-content .art-postcontent .job-header__row--title > .job-header__workplace h3,
    .career-entry--native-layout .entry-content > .art-content-layout:nth-of-type(2) h3 {
        margin-top: 6px !important;
        text-align: left !important;
        white-space: normal !important;
    }
}

/* v65: force job-header rows to align left and remove bold from job title. */
.entry-content .art-content-layout.job-header,
.entry-content .art-postcontent .art-content-layout.job-header {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.entry-content .job-header__row,
.entry-content .art-postcontent .job-header__row {
    justify-content: flex-start !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
}

.entry-content .job-header__row--title,
.entry-content .art-postcontent .job-header__row--title {
    justify-content: space-between !important;
}

.entry-content .job-header__company,
.entry-content .art-postcontent .job-header__company,
.entry-content .job-header__title,
.entry-content .art-postcontent .job-header__title {
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-align: left !important;
}

.entry-content .job-header__title h2,
.entry-content .job-header__title h2 a,
.entry-content .art-postcontent .job-header__title h2,
.entry-content .art-postcontent .job-header__title h2 a {
    font-weight: 400 !important;
}


/* Project label block inside career entries. */
.entry-content .job-project,
.entry-content .art-postcontent .job-project {
    margin-top: 16px;
    margin-right: 12px;
    margin-bottom: 2px;
    margin-left: 0;
    text-align: justify;
}

.entry-content .job-project > *:first-child,
.entry-content .art-postcontent .job-project > *:first-child {
    margin-top: 0;
}

.entry-content .job-project > *:last-child,
.entry-content .art-postcontent .job-project > *:last-child {
    margin-bottom: 0;
}


/* Informational note block inside career entries. */
.entry-content .job-note,
.entry-content .art-postcontent .job-note {
    --job-note-label-width: 4rem;
    margin-top: 16px;
    padding: 12px 16px 12px calc(16px + var(--job-note-label-width));
    border-left: 4px solid rgba(190, 145, 36, 0.75);
    background: linear-gradient(90deg, #e4c765 0%, #f6eab9 42%, #fcf7e3 100%);
    border: 1px solid rgba(201, 165, 64, 0.30);
    border-left-width: 4px;
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    color: #7a5e15;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
    text-indent: calc(var(--job-note-label-width) * -1);
}

.entry-content .job-note > strong:first-child,
.entry-content .art-postcontent .job-note > strong:first-child {
    display: inline-block;
    width: var(--job-note-label-width);
    color: #7a5e15;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
    text-indent: 0;
}

.entry-content .job-note > *:first-child,
.entry-content .art-postcontent .job-note > *:first-child {
    margin-top: 0;
}

.entry-content .job-note > *:last-child,
.entry-content .art-postcontent .job-note > *:last-child {
    margin-bottom: 0;
}


.footer-panel__bottom--single {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

@media (max-width: 720px) {
    .footer-panel__bottom--single {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Footer single widget override */
.footer-panel__bottom--single {
    display: block;
    width: 100%;
}
.footer-panel__bottom--single > * {
    width: 100%;
}


.home-widget .widget__inner > :first-child {
	margin-top: 0;
}

.home-widget .widget__inner > :last-child {
	margin-bottom: 0;
}


.entry-header--page {
    margin-bottom: 18px;
}

.entry-header--page .entry-title {
    margin-top: 0;
    margin-bottom: 8px;
}

.entry-description {
    color: var(--dg-text-soft);
    font-size: 1rem;
    line-height: 1.7;
}

.entry-description p {
    margin: 0;
}

/* Restore left sidebar widget header styling explicitly */
.sidebar-column .widget > .widget__inner > .widget-title,
.sidebar-column .widget-title {
    display: block;
    margin: 0;
    padding: 16px 22px 15px;
    color: #7a5e15;
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
    background: linear-gradient(180deg, #f8ecbd 0%, #efd98f 52%, #e5c15e 100%);
    border: 1px solid rgba(201, 165, 64, 0.45);
    border-bottom-color: rgba(178, 134, 36, 0.35);
    border-radius: 18px 18px 0 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 1px 0 rgba(255, 252, 240, 0.65);
}

.sidebar-column .widget {
    overflow: hidden;
}


/* Footer site meta */
.site-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.site-meta__copyright,
.site-meta__updated {
	display: flex;
	align-items: center;
	gap: 8px;
}

.site-meta__label {
	font-weight: 600;
	color: #374151;
}

.site-meta__date {
	color: #6b7280;
}

.site-meta__separator {
	opacity: 0.5;
}

.site-meta__credits {
	flex-basis: 100%;
	margin-top: 6px;
	text-align: center;
	font-size: 0.95em;
	line-height: 1.6;
}

.site-meta__credits a {
	font-weight: 600;
}

@media (max-width: 640px) {
	.site-meta {
		flex-direction: column;
		align-items: flex-start;
	}

	.site-meta__copyright,
	.site-meta__updated {
		flex-wrap: wrap;
	}

	.site-meta__credits {
		margin-top: 0;
		text-align: left;
	}
}


/* Unify left sidebar widget bodies with the article gradient while preserving the widget header. */
.sidebar-column .widget,
.sidebar-column .widget.widget_text,
.sidebar-column .widget.widget_archive,
.sidebar-column .widget.widget_text.widget_custom_html {
    background: linear-gradient(
        180deg,
        rgba(255, 252, 244, 0.98) 0%,
        rgba(255, 248, 229, 0.96) 44%,
        rgba(247, 237, 201, 0.94) 76%,
        rgba(236, 219, 163, 0.96) 100%
    ) !important;
    border-color: rgba(215, 196, 134, 0.98);
}

.sidebar-column .widget > .widget__inner,
.sidebar-column .widget .widget__inner {
    background: transparent;
}

.sidebar-column .widget .textwidget,
.sidebar-column .widget .custom-html-widget,
.sidebar-column .widget ul,
.sidebar-column .widget ol,
.sidebar-column .widget .contact-list {
    background: transparent;
}


/* Début - Formation(s) */

.training-list {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.training-entry {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin-bottom: 12px;
}

.training-counter {
	flex: 0 0 32px;
	text-align: right;
	line-height: 1.3;
}

.training-content {
	flex: 1 1 auto;
	min-width: 0;
	width: 100%;
}

.training-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
}

.training-title {
	display: block;
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
	line-height: 1.3;
	text-align: left;
	word-break: normal;
	overflow-wrap: normal;
	white-space: normal;
}

.training-title--done {
	text-decoration: line-through;
}

.training-icons {
	display: flex;
	flex: 0 0 auto;
	align-items: flex-start;
	gap: 8px;
	white-space: nowrap;
}

.training-icon-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.training-icon {
	display: block;
	width: 32px;
	height: 32px;
}

.training-date-wrapper {
	margin: -14px 0 0 0 !important;
	padding: 0 !important;
}

.training-date {
	display: block;
	margin: 0 !important;
	padding: 0 !important;
	font-size: smaller;
	line-height: 1.2;
	text-align: left;
}

@media (max-width: 720px) {
	.training-header {
		flex-wrap: wrap;
	}

	.training-icons {
		width: 100%;
		justify-content: flex-start;
		margin-top: 6px;
	}
}

/* Fin - Formation(s) */

.widget__inner ul,
.widget__inner .tagcloud {
	margin-top: 12px;
}


/* Widget body structure */
.widget__body {
	padding: 12px;
}

.widget__body > :first-child {
	margin-top: 0;
}

.widget__body > :last-child {
	margin-bottom: 0;
}


.widget,
.content-card,
.comment-respond,
.comments-area,
.entry-card,
article.content-card--page-body {
	background: linear-gradient(
		180deg,
		rgba(255, 255, 253, 0.995) 0%,
		rgba(255, 254, 249, 0.99) 48%,
		rgba(252, 248, 237, 0.97) 100%
	) !important;
}



.widget {
	background: linear-gradient(
		180deg,
		rgba(255, 255, 254, 0.998) 0%,
		rgba(255, 255, 251, 0.994) 52%,
		rgba(253, 250, 242, 0.985) 100%
	) !important;
}


/* Widgets - much paler gradient */
.sidebar-column .widget,
.sidebar-column .widget .widget__inner {
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.999) 0%,
		rgba(255, 255, 253, 0.997) 58%,
		rgba(254, 252, 247, 0.992) 100%
	) !important;
}



.content-card .widget__body p,
.content-card .widget__body div {
	margin-left: 12px;
	margin-right: 12px;
}



.content-card .widget__body p {
	text-align: justify;
}



.timeline-item {
	display: block;
}

.timeline-item .timeline-date {
	display: inline-block;
	margin-bottom: 8px;
}

.timeline-item h3 {
	margin-top: 0;
}



.timeline-item,
.timeline-item > div,
.timeline-item .timeline-date,
.timeline-item h3,
.timeline-item p {
	text-align: left;
	margin-left: 0;
}



.widget__body .timeline,
.widget__body .timeline-item,
.widget__body .timeline-item > div,
.widget__body .timeline-item .timeline-date,
.widget__body .timeline-item h3,
.widget__body .timeline-item p {
	text-align: left !important;
	justify-self: start;
	align-self: start;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.widget__body .timeline-item > div {
	width: 100%;
}



/* Timeline in widget body - full width, vertical, no 12px side margins */
.widget__body .content-card__inner.content-card__body,
.widget__body .timeline,
.widget__body .timeline-item,
.widget__body .timeline-item > div,
.widget__body .timeline-item .timeline-date,
.widget__body .timeline-item h3,
.widget__body .timeline-item p {
	width: 100%;
	max-width: 100%;
	text-align: left !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.widget__body .content-card__inner.content-card__body {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.widget__body .timeline {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 14px;
}

.widget__body .timeline-item {
	display: block;
}

.widget__body .timeline-item > div {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}



/* Card grid in widget body - full width, vertical, no 12px side margins */
.widget__body .content-card__inner.content-card__body,
.widget__body .card-grid,
.widget__body .card-grid .entry-card,
.widget__body .card-grid .entry-card h3,
.widget__body .card-grid .entry-card p {
	width: 100%;
	max-width: 100%;
	text-align: left !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.widget__body .card-grid {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 14px;
}

.widget__body .content-card__inner.content-card__body {
	padding-left: 0 !important;
	padding-right: 0 !important;
}



/* Featured experiences widget block */
.widget__body .featured-experiences--horizontal {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	align-items: stretch;
	width: calc(100% - 24px);
	box-sizing: border-box;
	margin-left: 12px !important;
	margin-right: 12px !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.widget__body .featured-experiences--horizontal .entry-card {
	width: 100%;
	max-width: 100%;
	margin-left: 0 !important;
	margin-right: 0 !important;
	text-align: left;
}

@media (max-width: 980px) {
	.widget__body .featured-experiences--horizontal {
		grid-template-columns: 1fr;
	}
}



.parcours-posts {
	margin-top: 18px;
}



/* Footer width aligned with main content shell */
.site-footer,
.footer-panel,
.footer-panel__bottom,
.footer-panel__bottom--single {
	max-width: 100%;
	box-sizing: border-box;
}

.site-footer .footer-panel,
.site-footer .footer-panel__bottom,
.site-footer .footer-panel__bottom--single {
	width: 100%;
}

.site-footer {
	padding-left: 0;
	padding-right: 0;
}

.site-footer .site-shell,
.site-footer .content-shell,
.site-footer .default-grid {
	max-width: inherit;
}


/* Resume - Experiences widget */
.dgpl-featured-experiences-grid {
	width: 100%;
}

.dgpl-featured-experience-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.dgpl-featured-experience-card__link {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.dgpl-featured-experience-card__link,
.dgpl-featured-experience-card__link:visited,
.dgpl-featured-experience-card__link:hover,
.dgpl-featured-experience-card__link:active,
.dgpl-featured-experience-card__link:focus,
.dgpl-featured-experience-card__link h3,
.dgpl-featured-experience-card__link p {
	color: inherit;
	text-decoration: none;
}

.dgpl-featured-experience-card__link:focus-visible {
	outline: 2px solid var(--accent-color, #6c5b1f);
	outline-offset: 4px;
	border-radius: 8px;
}

.dgpl-featured-experience-card__title {
	margin: 0 0 10px;
	color: var(--title-color, #6c5b1f);
}

.dgpl-featured-experience-card__title a {
	color: inherit;
	text-decoration: none;
}

.dgpl-featured-experience-card__summary {
	margin: 0;
	display: block;
	overflow: visible;
	text-overflow: clip;
	white-space: normal;
	color: var(--muted-text-color, #6d6756);
	line-height: 1.55;
	text-align: left !important;
}

.widget_dgpl_featured_experiences_widget .dgpl-featured-experience-card__summary,
.widget_dgpl_featured_experiences_widget .dgpl-featured-experience-card__link p {
	text-align: left !important;
}

/* Widget card body side margins */
.widget__body .content-card__inner.content-card__body {
	width: calc(100% - 24px);
	margin-left: 12px !important;
	margin-right: 12px !important;
}


/* Styled section headings for page content */
.entry-content h2.dg-section-heading {
    display: block;
    margin: 18px 0 10px;
    padding: 10px 14px;
    color: #7a5e15;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.01em;
    background: linear-gradient(90deg, #e4c765 0%, #f6eab9 42%, #fcf7e3 100%);
    border: 1px solid rgba(201, 165, 64, 0.30);
    border-left: 4px solid rgba(190, 145, 36, 0.75);
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.entry-content h2.dg-section-heading + ul,
.entry-content h2.dg-section-heading + ol,
.entry-content h2.dg-section-heading + p,
.entry-content h2.dg-section-heading + div,
.entry-content h2.dg-section-heading + figure {
    margin-top: 10px;
}

.site-topbar .primary-navigation a {
    text-transform: uppercase;
    letter-spacing: 0.04em;
}


.single-adjacent-nav {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 18px;
	font-size: 1rem;
	line-height: 1.4;
}

.single-adjacent-nav--next {
	justify-content: flex-start;
	margin: 18px 0 0;
}

.single-adjacent-nav a {
	color: var(--dg-accent-strong);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
	text-transform: uppercase;
}

.single-adjacent-nav__arrow-image {
	display: inline-block;
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	vertical-align: middle;
}

.single-adjacent-nav a:hover,
.single-adjacent-nav a:focus {
	text-decoration-thickness: 2px;
}


.widget_resume_objective .tag-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}


/* ==========================================================
   EXPERTISE PAGE - PC PARTS GALLERY
   ========================================================== */
.entry-content .dg-pc-parts-block {
	margin-top: 8px;
	text-align: center;
}

.entry-content .dg-pc-parts-intro {
	margin: 0 12px 14px;
	text-align: center;
}

.entry-content .dg-pc-parts-gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin: 0;
	padding: 0 12px;
	text-align: center;
}

.entry-content .dg-pc-parts-gallery img {
	display: block;
	width: 120px;
	height: auto;
	border-radius: 12px;
	background: #fff;
	padding: 6px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow:
		0 10px 18px rgba(0, 0, 0, 0.18),
		0 4px 8px rgba(0, 0, 0, 0.10),
		inset 0 1px 0 rgba(255, 255, 255, 0.75);
	transform: perspective(900px) rotateX(6deg) rotateY(-6deg);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.entry-content .dg-pc-parts-gallery img:hover {
	transform: perspective(900px) rotateX(0deg) rotateY(0deg) translateY(-4px);
	box-shadow:
		0 16px 28px rgba(0, 0, 0, 0.22),
		0 6px 12px rgba(0, 0, 0, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
}


.entry-content .dg-pc-parts-gallery a {
	display: inline-block;
	text-decoration: none;
}

.entry-content .dg-pc-parts-gallery a:hover img,
.entry-content .dg-pc-parts-gallery a:focus img {
	transform: perspective(900px) rotateX(0deg) rotateY(0deg) translateY(-4px) scale(1.03);
}


/* ==========================================================
   IMAGE OVERLAY
   ========================================================== */
.site-header a.dgpl-overlay-link-enabled,
.site-main a.dgpl-overlay-link-enabled,
.widget a.dgpl-overlay-link-enabled {
	cursor: zoom-in;
}

.site-header img.dgpl-overlay-enabled,
.site-main img.dgpl-overlay-enabled,
.widget img.dgpl-overlay-enabled {
	cursor: zoom-in;
}

.dgpl-image-overlay {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 28px;
	background: rgba(20, 17, 10, 0.82);
	backdrop-filter: blur(4px);
}

.dgpl-image-overlay.is-open {
	display: flex;
}

.dgpl-image-overlay__surface {
	position: relative;
	max-width: min(92vw, 1400px);
	max-height: 92vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dgpl-image-overlay__image {
	display: block;
	max-width: 100%;
	max-height: 92vh;
	width: auto;
	height: auto;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.dgpl-image-overlay__close {
	position: absolute;
	top: -16px;
	right: -16px;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	color: #3e3522;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.dgpl-image-overlay__close:hover,
.dgpl-image-overlay__close:focus-visible {
	background: #ffffff;
	outline: 2px solid rgba(122, 94, 21, 0.35);
	outline-offset: 2px;
}

body.dgpl-image-overlay-open {
	overflow: hidden;
}


.contact-item--linked {
	position: relative;
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.contact-item--linked:hover,
.contact-item--linked:has(.contact-item__cover-link:focus-visible) {
	border-color: rgba(201, 165, 64, 0.65);
	background: linear-gradient(180deg, rgba(255, 252, 242, 1) 0%, rgba(250, 242, 214, 0.98) 100%);
	box-shadow: 0 10px 22px rgba(122, 94, 21, 0.12);
	transform: translateY(-1px);
	outline: none;
}

.contact-item__cover-link {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: block;
	border-radius: inherit;
	text-decoration: none;
	background: transparent;
}

.contact-item__cover-link:focus-visible {
	outline: 2px solid rgba(201, 165, 64, 0.75);
	outline-offset: 2px;
}

.contact-item--linked > img,
.contact-item--linked > strong,
.contact-item--linked > a:not(.contact-item__cover-link),
.contact-item--linked > a:not(.contact-item__cover-link) * {
	pointer-events: none;
}

.contact-item--linked > img,
.contact-item--linked > strong,
.contact-item--linked > a:not(.contact-item__cover-link) {
	position: relative;
	z-index: 1;
}

.contact-item--linked > a:not(.contact-item__cover-link) {
	color: var(--dg-title);
	text-decoration: none;
}

.contact-item--linked > a:not(.contact-item__cover-link) strong,
.contact-item--linked > strong {
	color: inherit;
}

.contact-item--linked:hover > a:not(.contact-item__cover-link),
.contact-item--linked:hover > a:not(.contact-item__cover-link) strong,
.contact-item--linked:has(.contact-item__cover-link:focus-visible) > a:not(.contact-item__cover-link),
.contact-item--linked:has(.contact-item__cover-link:focus-visible) > a:not(.contact-item__cover-link) strong {
	color: var(--dg-accent-strong);
}

/* ==========================================================
   ACADEMIC TRAINING
   ========================================================== */
.academic-training {
	padding: 0 24px 32px;
}

.academic-training__table,
.academic-training__table tbody {
	display: block;
	width: 100%;
}

.academic-training__table {
	border: 0;
	border-collapse: separate;
	border-spacing: 0;
	table-layout: auto;
}

.academic-training__table tr {
	display: grid;
	grid-template-columns: 128px minmax(0, 1fr);
	column-gap: 16px;
	align-items: start;
}

.academic-training__table tr + tr {
	margin-top: 24px;
}

.academic-training__table td {
	display: block;
	padding: 0;
	border: 0;
	background: transparent;
}

.academic-training__year {
	color: var(--dg-title);
	font-size: 1.28rem;
	font-weight: 800;
	line-height: 1.3;
	white-space: nowrap;
}

.academic-training__content {
	color: var(--dg-text);
}

.academic-training__content h2 {
	margin: 0 0 8px;
	color: var(--dg-title);
	font-size: 1.18rem;
	line-height: 1.3;
}

.academic-training__content p {
	margin: 0 0 8px;
}

.academic-training__content p:last-child,
.academic-training__content ul:last-child {
	margin-bottom: 0;
}

.academic-training__content ul {
	margin: 8px 0 0 18px;
	padding: 0;
}

.academic-training__content li + li {
	margin-top: 4px;
}

@media (max-width: 640px) {
	.academic-training {
		padding: 0 16px 24px;
	}

	.academic-training__table tr {
		display: block;
	}

	.academic-training__table tr + tr {
		margin-top: 20px;
	}

	.academic-training__year {
		margin-bottom: 6px;
		font-size: 1.12rem;
	}
}


/* Training list inside scrollable details blocks */
.training-list {
    min-width: 0;
}

details > div[style*="overflow-y: auto"] {
    padding-right: 20px !important;
    box-sizing: border-box;
    scrollbar-gutter: stable;
}

.training-header {
    gap: 12px;
}

.training-icons {
    flex-shrink: 0;
    padding-right: 4px;
}


.footer-panel .widget-title {
    position: relative;
    padding-right: 150px;
}

.widget-title__back-to-top {
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: inherit;
    opacity: 0.9;
    white-space: nowrap;
}

.widget-title__back-to-top:hover,
.widget-title__back-to-top:focus {
    text-decoration: underline;
    opacity: 1;
}

@media (max-width: 640px) {
    .footer-panel .widget-title {
        padding-right: 22px;
        padding-bottom: 40px;
    }

    .widget-title__back-to-top {
        top: auto;
        bottom: 12px;
        right: 22px;
        transform: none;
    }
}

/* Uppercase headings and timeline labels */
h1,
h2,
.entry-period,
.timeline-date {
    text-transform: uppercase;
}


/* Resume - History widget bullets */
.dgpl-limited-archives-widget ul {
    list-style: none;
    padding-left: 0;
}

.dgpl-limited-archives-widget li {
    position: relative;
    padding-left: 30px;
}

.dgpl-limited-archives-widget li::before {
    content: "🚶";
    position: absolute;
    top: 4px;
    left: 0;
    font-size: 16px;
    line-height: 1;
}


.widget_resume_objective .widget__content {
    display: block;
}

.widget_resume_objective .tag-list,
.widget_resume_objective .tag-list .tag {
    font-size: 1em;
    padding: 7px 14px;
}


/* Expertise page bullets */
.post-863 .entry-content .wp-block-list {
    list-style: none;
    padding-left: 0;
}

.post-863 .entry-content .wp-block-list li {
    position: relative;
    padding-left: 38px;
}

.post-863 .entry-content .wp-block-list li::before {
    content: "⌨️";
    position: absolute;
    top: 3px;
    left: 8px;
    font-size: 16px;
    line-height: 1;}


/* Formation page bullets */
.post-895 .academic-training__content ul,
.post-895 .academic-training__content ul li {
    list-style: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.post-895 .academic-training__content ul li {
    position: relative !important;
    padding-left: 38px !important;
}

.post-895 .academic-training__content ul li::before {
    content: "🎓" !important;
    display: inline-block !important;
    position: absolute !important;
    top: 4px !important;
    left: 8px !important;
    font-size: 16px !important;
    line-height: 1 !important;
}


/* Language page bullets */
.post-896 .entry-content ul,
.post-896 .entry-content ol {
    list-style: none;
    padding-left: 0;
}

.post-896 .entry-content ul li,
.post-896 .entry-content ol li {
    position: relative;
    padding-left: 38px;
}

.post-896 .entry-content ul li::before,
.post-896 .entry-content ol li::before {
    content: "🗣️";
    position: absolute;
    top: 4px;
    left: 8px;
    font-size: 16px;
    line-height: 1;
}


.job-note--soft {
    margin-top: 16px;
    padding: 12px 14px;
    border-left: 4px solid rgba(191, 154, 52, 0.22);
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(255, 248, 220, 0.42) 0%, rgba(255, 252, 242, 0.88) 100%);
    color: #7a7366;
    font-size: 0.96rem;
    line-height: 1.6;
    text-indent: 0;
}

.job-note--soft strong {
    margin-right: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #9a8a68;
}
