:root {
    --ink: #18191d;
    --muted: #6d7280;
    --soft: #8f95a1;
    --orange: #ff5b1f;
    --orange-2: #f18435;
    --cream: #f7efe6;
    --cream-2: #fbf7f1;
    --paper: #fffdf8;
    --line: #e9ded1;
    --card: #ffffff;
    --dark: #111111;
    --display: "Lora", Georgia, serif;
    --sans: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --mono: "Fira Code", ui-monospace, SFMono-Regular, Menlo, monospace;
    --shadow: 0 18px 46px rgba(36, 23, 10, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    line-height: 1.55;
}

body.admin-bar .pvl-header {
    top: 32px;
}

a {
    color: inherit;
}

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

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

.pvl-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 0 clamp(28px, 7vw, 92px);
    background: rgba(255, 253, 248, 0.98);
    border-bottom: 1px solid var(--line);
}

.pvl-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.pvl-brand img {
    display: block;
    width: auto;
    height: 32px;
}

.pvl-nav ul,
.pvl-footer ul {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pvl-nav a,
.pvl-footer a {
    text-decoration: none;
    font-weight: 800;
}

.pvl-nav a {
    color: #24262d;
    font-size: 0.8rem;
}

.pvl-nav-cta {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 15px;
    border-radius: 999px;
    color: #fff !important;
    background: var(--orange);
    box-shadow: 0 10px 20px rgba(255, 91, 31, 0.18);
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--ink);
    font-family: var(--display);
    line-height: 0.98;
    letter-spacing: 0;
}

p {
    margin: 0;
}

.pv-d-home {
    overflow: hidden;
    background: var(--paper);
}

.d-hero {
    position: relative;
    min-height: 648px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(251, 247, 241, 0.98) 0%, rgba(251, 247, 241, 0.88) 39%, rgba(251, 247, 241, 0.32) 61%, rgba(251, 247, 241, 0.08) 100%),
        var(--cream-2);
}

.d-hero-photo {
    position: absolute;
    inset: 0 0 0 38%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: saturate(1.03) brightness(1.05);
}

.d-hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(251, 247, 241, 0.82), rgba(251, 247, 241, 0.12) 35%, rgba(255, 255, 255, 0.08));
}

.d-watermark {
    position: absolute;
    left: -46px;
    bottom: -96px;
    width: 300px;
    opacity: 0.07;
    transform: rotate(-7deg);
    pointer-events: none;
    z-index: 1;
}

.d-hero-copy {
    position: relative;
    z-index: 2;
    width: min(560px, 48vw);
    margin-left: clamp(42px, 8vw, 132px);
    padding: 46px 0;
}

.d-kicker {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--orange);
    font-family: var(--mono);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.d-kicker span {
    width: 24px;
    height: 3px;
    border-radius: 999px;
    background: var(--orange);
}

.d-kicker b {
    padding: 3px 8px;
    border-radius: 999px;
    color: var(--orange);
    background: #fff0e8;
    font-size: 0.66rem;
}

.d-hero h1 {
    max-width: 480px;
    font-size: clamp(4.5rem, 6.55vw, 7.35rem);
    line-height: 0.86;
}

.d-hero h1 em,
.d-section-head h2 em,
.d-bootcamp-copy h2 em,
.d-gallery h2 em,
.d-testimonials h2 em,
.d-formats h2 em {
    color: var(--orange);
    font-style: italic;
}

.d-sub {
    max-width: 430px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.93rem;
    font-weight: 600;
    line-height: 1.6;
}

.d-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.d-actions.centered {
    justify-content: center;
}

.d-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.d-btn-primary {
    color: #fff;
    background: var(--orange);
    box-shadow: 0 14px 28px rgba(255, 91, 31, 0.20);
}

.d-btn-light {
    color: var(--ink);
    background: #fff;
    border: 1px solid #eadfd4;
}

.d-btn-outline-light {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.d-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    width: min(100%, 430px);
    margin-top: 34px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--line);
    box-shadow: var(--shadow);
}

.d-hero-stats div {
    padding: 14px 12px;
    background: #fff;
}

.d-hero-stats strong {
    display: block;
    color: var(--orange);
    font-size: 1.25rem;
    line-height: 1;
}

.d-hero-stats span {
    display: block;
    margin-top: 5px;
    color: var(--soft);
    font-size: 0.58rem;
    font-weight: 800;
    line-height: 1.25;
}

.d-cert-strip {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) repeat(7, minmax(150px, 1fr));
    min-height: 72px;
    color: #fff;
    background: var(--orange);
    overflow-x: auto;
}

.d-cert-strip span,
.d-cert-strip a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
}

.d-cert-strip span {
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.d-catalog,
.d-gallery,
.d-testimonials,
.d-formats {
    padding: 100px clamp(34px, 6.5vw, 118px);
}

.d-catalog {
    position: relative;
    background: var(--paper);
}

.d-catalog::before,
.d-testimonials::before {
    content: "";
    position: absolute;
    left: -60px;
    bottom: -80px;
    width: 260px;
    height: 260px;
    background: url("../images/logo-mark.png") center/contain no-repeat;
    opacity: 0.045;
    transform: rotate(-7deg);
    pointer-events: none;
}

.d-section-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 28px;
    width: min(100%, 1440px);
    margin: 0 auto 36px;
}

.d-section-head > .d-kicker {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 4px;
}

.d-section-head > h2 {
    grid-column: 1;
    grid-row: 2;
}

.d-section-head > .d-small-link {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
}

.d-section-head.compact {
    display: block;
}

.d-section-head h2 {
    font-size: clamp(2.7rem, 4.65vw, 5rem);
}

.d-small-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 10px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    font-size: 0.86rem;
    font-weight: 900;
    text-decoration: none;
}

.d-course-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
    width: min(100%, 1440px);
    margin: 0 auto;
}

.d-course-card {
    position: relative;
    min-height: 310px;
    padding: 36px 36px 42px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--card);
    box-shadow: 0 12px 28px rgba(36, 23, 10, 0.055);
    text-decoration: none;
}

.d-course-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 132px;
    height: 5px;
    background: var(--orange);
}

.d-course-icon {
    display: inline-grid;
    place-items: center;
    width: auto;
    min-width: 52px;
    height: 50px;
    padding: 0 13px;
    margin-bottom: 24px;
    border-radius: 12px;
    color: var(--orange);
    background: #fff0e8;
    font-size: 1rem;
    font-weight: 900;
}

.d-course-card small {
    display: block;
    color: var(--orange);
    font-size: 0.92rem;
    font-weight: 900;
}

.d-course-card strong {
    display: block;
    margin-top: 8px;
    font-size: 1.48rem;
    line-height: 1.12;
}

.d-course-card p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.55;
}

.d-course-card i {
    position: absolute;
    right: 26px;
    bottom: 24px;
    color: var(--orange);
    font-style: normal;
    font-size: 1.25rem;
}

.d-bootcamp {
    display: grid;
    grid-template-columns: minmax(560px, 1.12fr) minmax(420px, 0.9fr);
    gap: clamp(44px, 6.5vw, 92px);
    align-items: center;
    padding: 110px clamp(34px, 7vw, 118px);
    background: var(--cream);
}

.d-photo-card {
    position: relative;
    width: min(100%, 760px);
    margin: 0 0 0 auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.d-photo-card img {
    display: block;
    width: 100%;
    height: 475px;
    object-fit: cover;
}

.d-photo-card figcaption {
    position: absolute;
    top: 0;
    left: 0;
    padding: 22px 26px;
    color: #fff;
    background: var(--orange);
    font-size: 0.88rem;
    font-weight: 900;
    line-height: 1.2;
}

.d-photo-card figcaption strong {
    display: block;
    font-size: 2.35rem;
}

.d-bootcamp-copy {
    max-width: 640px;
}

.d-bootcamp-copy h2 {
    font-size: clamp(2.85rem, 4.4vw, 5.35rem);
}

.d-check-list {
    display: grid;
    gap: 22px;
    padding: 0;
    margin: 34px 0 30px;
    list-style: none;
}

.d-check-list li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 18px;
    color: var(--ink);
}

.d-check-list li::before {
    content: "✓";
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    margin-top: 2px;
    border-radius: 5px;
    color: #fff;
    background: #2cbf6d;
    font-size: 0.9rem;
    font-weight: 900;
}

.d-check-list strong,
.d-check-list span {
    grid-column: 2 / 3;
    min-width: 0;
    max-width: 100%;
}

.d-check-list strong {
    display: block;
    font-size: 1.08rem;
    line-height: 1.35;
}

.d-check-list span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.94rem;
}

.d-stat-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(100% - 68px, 1440px);
    margin: 64px auto;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow);
}

.d-stat-band div {
    min-height: 136px;
    padding: 30px 32px;
    border-right: 1px solid var(--line);
}

.d-stat-band div:first-child {
    background: #fff0e8;
}

.d-stat-band div:last-child {
    border-right: 0;
}

.d-stat-band strong {
    display: block;
    color: var(--orange);
    font-size: 2.45rem;
    line-height: 1;
}

.d-stat-band span {
    display: block;
    max-width: 275px;
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 800;
}

.d-gallery {
    background: #fff;
}

.d-gallery-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-template-rows: 255px 255px;
    gap: 14px;
    width: min(100%, 1440px);
    margin: 38px auto 0;
}

.d-gallery-grid figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--cream);
}

.d-gallery-grid .large {
    grid-row: span 2;
}

.d-gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.d-gallery-grid figcaption {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, 0.42);
    font-size: 0.76rem;
    font-weight: 900;
}

.d-testimonials {
    position: relative;
    background: var(--paper);
}

.d-testimonial-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: min(100%, 1440px);
    margin: 0 auto;
}

.d-testimonial-grid article {
    min-height: 220px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(36, 23, 10, 0.04);
}

.stars {
    color: var(--orange);
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.d-testimonial-grid p {
    margin-top: 10px;
    color: var(--ink);
    font-size: 0.92rem;
}

.d-testimonial-grid strong {
    display: block;
    margin-top: 14px;
    color: var(--orange);
    font-size: 0.92rem;
}

.d-testimonial-grid span {
    color: var(--soft);
    font-size: 0.78rem;
}

.d-trust-tags {
    padding: 52px clamp(34px, 7vw, 118px);
    text-align: center;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.d-trust-tags p {
    color: var(--soft);
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.d-trust-tags div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.d-trust-tags span {
    padding: 10px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: #fff;
    font-size: 0.78rem;
    font-weight: 800;
}

.d-formats {
    background: var(--cream);
}

.d-format-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: min(100%, 1440px);
    margin: 38px auto 0;
}

.d-format-grid article {
    min-height: 258px;
    padding: 36px;
    border: 1px solid var(--line);
    border-top: 4px solid var(--orange);
    border-radius: 8px;
    background: #fff;
}

.d-format-grid span {
    display: block;
    color: #ffd2c1;
    font-size: 2.45rem;
    font-weight: 900;
    line-height: 1;
}

.d-format-grid small {
    display: block;
    margin-top: 8px;
    color: var(--orange);
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.d-format-grid strong {
    display: block;
    margin-top: 12px;
    font-size: 1.15rem;
}

.d-format-grid p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.92rem;
}

.d-final-cta {
    position: relative;
    overflow: hidden;
    padding: 108px 30px;
    color: #fff;
    text-align: center;
    background: var(--orange);
}

.d-final-cta > img {
    position: absolute;
    right: clamp(42px, 11vw, 190px);
    bottom: 24px;
    width: 220px;
    opacity: 0.16;
    transform: rotate(-7deg);
}

.d-final-cta h2 {
    color: #fff;
    font-size: clamp(2.65rem, 5vw, 4.9rem);
}

.d-final-cta p {
    max-width: 540px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
}

.pvl-footer {
    position: relative;
    overflow: hidden;
    padding: 74px clamp(34px, 7vw, 118px) 34px;
    color: rgba(255, 255, 255, 0.72);
    background:
        radial-gradient(circle at 78% 6%, rgba(255, 91, 31, 0.28), transparent 34%),
        linear-gradient(135deg, #111111 0%, #17110e 58%, #20140f 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pvl-footer-mark {
    position: absolute;
    right: clamp(18px, 5vw, 72px);
    bottom: 14px;
    width: min(32vw, 360px);
    opacity: 0.09;
    transform: rotate(-7deg);
    pointer-events: none;
}

.pvl-footer-inner,
.pvl-footer-panel,
.pvl-footer-bottom {
    position: relative;
    z-index: 1;
    width: min(100%, 1440px);
    margin: 0 auto;
}

.pvl-footer-inner {
    display: grid;
    grid-template-columns: minmax(300px, 1.25fr) repeat(3, minmax(170px, 0.62fr));
    gap: clamp(28px, 5vw, 76px);
    align-items: start;
}

.pvl-footer-brand img {
    width: 178px;
    height: auto;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
}

.pvl-footer-brand p {
    max-width: 520px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    font-weight: 650;
}

.pvl-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.pvl-footer-badges span {
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.78rem;
    font-weight: 900;
}

.pvl-footer-col {
    display: grid;
    gap: 12px;
}

.pvl-footer strong,
.pvl-footer-col strong {
    color: #fff;
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.pvl-footer a,
.pvl-footer-col span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    font-weight: 750;
    line-height: 1.45;
    text-decoration: none;
}

.pvl-footer a:hover {
    color: #fff;
}

.pvl-footer-contact span {
    max-width: 260px;
}

.pvl-footer-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 54px;
    padding: 28px 32px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background:
        linear-gradient(90deg, rgba(255, 91, 31, 0.22), rgba(255, 255, 255, 0.07));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.pvl-footer-panel span {
    color: #ffb48f;
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pvl-footer-panel h2 {
    margin-top: 8px;
    color: #fff;
    font-size: clamp(1.7rem, 2.5vw, 2.7rem);
}

.pvl-footer-panel a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 10px;
    color: #fff;
    background: var(--orange);
    box-shadow: 0 16px 32px rgba(255, 91, 31, 0.26);
    white-space: nowrap;
}

.pvl-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pvl-footer-bottom p {
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.82rem;
}

.pvl-footer-bottom ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pvl-footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

@media (max-width: 1100px) {
    .pvl-nav ul {
        gap: 14px;
    }

    .d-hero-copy {
        width: min(560px, 58vw);
        margin-left: 42px;
    }

    .d-hero-photo {
        left: 34%;
    }

    .d-course-grid,
    .d-testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .d-bootcamp,
    .d-gallery-grid {
        grid-template-columns: 1fr;
    }

    .d-photo-card {
        width: min(100%, 820px);
        margin: 0 auto;
    }

    .d-gallery-grid {
        grid-template-rows: none;
    }

    .d-gallery-grid figure,
    .d-gallery-grid .large {
        min-height: 300px;
        grid-row: auto;
    }
}

@media (max-width: 760px) {
    body.admin-bar .pvl-header {
        top: 0;
    }

    .pvl-header {
        position: relative;
        height: auto;
        min-height: 62px;
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 22px;
    }

    .pvl-nav ul,
    .pvl-footer ul {
        flex-wrap: wrap;
        gap: 12px 16px;
    }

    .d-hero {
        min-height: auto;
        display: block;
        padding-top: 320px;
    }

    .d-hero-photo {
        inset: 0 0 auto 0;
        height: 360px;
    }

    .d-hero-copy {
        width: auto;
        margin: 0;
        padding: 34px 22px 46px;
    }

    .d-hero h1 {
        font-size: clamp(3.05rem, 14.2vw, 4.15rem);
        line-height: 0.92;
    }

    .d-hero-stats,
    .d-stat-band,
    .d-format-grid,
    .d-course-grid,
    .d-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .d-cert-strip {
        grid-template-columns: repeat(8, minmax(138px, 1fr));
    }

    .d-catalog,
    .d-gallery,
    .d-testimonials,
    .d-formats,
    .d-bootcamp {
        padding: 56px 22px;
    }

    .d-section-head {
        display: block;
    }

    .d-small-link {
        margin-top: 18px;
    }

    .d-photo-card {
        margin: 0;
    }

    .d-photo-card img {
        height: 330px;
    }

    .d-stat-band {
        width: auto;
        margin: 34px 22px;
    }

    .d-stat-band div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .d-final-cta {
        padding: 70px 22px;
    }

    .pvl-footer {
        padding: 50px 22px 28px;
    }

    .pvl-footer-inner,
    .pvl-footer-panel,
    .pvl-footer-bottom {
        width: 100%;
    }

    .pvl-footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pvl-footer-panel,
    .pvl-footer-bottom {
        display: grid;
    }

    .pvl-footer-panel {
        padding: 24px;
    }

    .pvl-footer-panel a {
        width: 100%;
    }

    .pvl-footer-mark {
        right: -34px;
        width: 260px;
    }
}
}
