/* Logo size reduction - Desktop version */
.wp-block-group.is-nowrap.is-layout-flex .wp-block-image img,
.wp-block-group.is-nowrap.is-layout-flex .wp-image-496 {
    width: 70% !important;
    height: auto !important;
    max-width: 602px !important; /* Original size */
}

/* Container gap - Desktop version */
.wp-container-core-group-is-layout-369965dd {
    gap: 192px;
    flex-direction: column;
    align-items: flex-start;
}

/* Mobile Header Styles */
.jinjang-mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--wp--preset--color--contrast);
    color: var(--wp--preset--color--base);
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(-100%);
    opacity: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.jinjang-mobile-header.visible {
    transform: translateY(0);
    opacity: 1;
}

.jinjang-mobile-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.jinjang-mobile-logo {
    max-width: 120px;
}

.jinjang-mobile-logo img {
    max-height: 40px;
    width: auto;
}

.jinjang-mobile-menu-toggle {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--wp--preset--color--base);
}

.burger-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--wp--preset--color--base);
    position: relative;
    transition: background-color 0.3s ease;
}

.burger-icon::before,
.burger-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--wp--preset--color--base);
    transition: transform 0.3s ease;
}

.burger-icon::before {
    top: -6px;
}

.burger-icon::after {
    bottom: -6px;
}

.jinjang-mobile-menu-toggle.active .burger-icon {
    background-color: transparent;
}

.jinjang-mobile-menu-toggle.active .burger-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.jinjang-mobile-menu-toggle.active .burger-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.jinjang-mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--wp--preset--color--contrast);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
}

.jinjang-mobile-menu.active {
    max-height: 100vh;
    overflow-y: auto;
}

.jinjang-mobile-nav {
    list-style: none;
    margin: 0;
    padding: 1rem;
}

.jinjang-mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.jinjang-mobile-nav li {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(var(--wp--preset--color--base-rgb), 0.1);
    padding-bottom: 0.5rem;
}

.jinjang-mobile-nav li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.jinjang-mobile-nav a {
    color: var(--wp--preset--color--base);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.jinjang-mobile-nav a:hover {
    color: var(--wp--preset--color--primary);
}

/* Scroll to Top Button */
.jinjang-scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--wp--preset--color--contrast);
    color: var(--wp--preset--color--base);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.jinjang-scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.jinjang-scroll-to-top:hover {
    background-color: var(--wp--preset--color--primary);
    color: var(--wp--preset--color--contrast);
}

/* Media Queries */
@media (max-width: 768px) {
    .jinjang-mobile-header {
        display: block;
    }

    /* Hide the original header on mobile */
    .site-header {
        display: none;
    }
    
    /* Mobile logo size reduction - 30% smaller than original size */
    .wp-block-group.is-nowrap.is-layout-flex .wp-block-image img,
    .wp-block-group.is-nowrap.is-layout-flex .wp-image-496 {
        width: 55% !important;
        height: auto !important;
        max-width: 421px !important; /* 70% of 602px */
    }
    
    /* Container gap - Mobile version */
    .wp-container-core-group-is-layout-369965dd {
        gap: 48px; /* Reduced gap for mobile */
    }
}

/* Remove list-style dots from blog posts */
.wp-block-post {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Blog post separator styling */
.wp-block-post .wp-block-group {
    border-bottom: 2px solid #e6e6e6 !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.wp-block-post:last-child .wp-block-group {
    border-bottom: none !important;
}

/* Comment Section Styling */
.wp-block-comments {
    max-width: 800px;
    margin: 0 auto;
}

/* Hide unnecessary fields */
.logged-in-as,
.required-field-message,
.comment-form-email,
.comment-form-url,
.comment-notes {
    display: none !important;
}

/* Comment Form Title */
.comment-reply-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
}

/* Name Field Styling */
.comment-form-author {
    margin-bottom: 20px;
}

.comment-form-author label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #000;
}

.comment-form-author input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e6e6e6;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.comment-form-author input:focus {
    outline: none;
    border-color: #000;
}

/* Comment Text Field Styling */
.comment-form-comment {
    margin-bottom: 20px;
}

.comment-form-comment label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #000;
}

.comment-form-comment textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e6e6e6;
    border-radius: 4px;
    min-height: 150px;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.6;
    transition: border-color 0.3s ease;
    resize: vertical;
}

.comment-form-comment textarea:focus {
    outline: none;
    border-color: #000;
}

/* Submit Button */
.form-submit {
    margin-top: 20px;
}

.wp-block-button__link {
    background-color: #000 !important;
    color: #fff !important;
    font-size: 16px !important;
    padding: 12px 24px !important;
    border-radius: 4px !important;
    border: none !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
    text-transform: none !important;
    font-weight: 500 !important;
}

.wp-block-button__link:hover {
    background-color: #333 !important;
}

/* Individual Comments Styling */
.wp-block-comment-template {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wp-block-comment-template li {
    margin-bottom: 30px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
}

/* Comment Author */
.wp-block-comment-author-name {
    font-weight: 700;
    font-size: 18px;
    color: #000;
    margin-bottom: 5px;
    display: inline-block;
}

/* Comment Date */
.wp-block-comment-date {
    font-size: 14px;
    color: #666;
    margin-left: 10px;
}

/* Comment Content */
.wp-block-comment-content {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Comment Reply Link */
.wp-block-comment-reply-link {
    display: inline-block;
    margin-top: 15px;
    font-size: 14px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.wp-block-comment-reply-link:hover {
    text-decoration: underline;
}

/* Nested Comments */
.wp-block-comment-template .wp-block-comment-template {
    margin-left: 40px;
    margin-top: 20px;
}

/* Comment Section Container */
.wp-block-group.is-layout-constrained {
    padding-left: 20px;
    padding-right: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .comment-reply-title {
        font-size: 24px;
    }
    
    .wp-block-button__link {
        width: 100%;
    }

    .wp-block-comment-template .wp-block-comment-template {
        margin-left: 20px;
    }

    .wp-block-comment-template li {
        padding: 15px;
    }
}

/* Post Navigation - New Modern Design */
.post-navigation-wrapper {
    display: flex !important;
    justify-content: space-between !important;
    gap: 24px;
    max-width: 1200px;
    margin: 40px auto !important;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.wp-block-post-navigation-link {
    flex: 1;
    max-width: calc(50% - 12px);
    margin: 0 !important;
}

.wp-block-post-navigation-link a {
    display: block !important;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    text-decoration: none !important;
    color: #333333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-sizing: border-box;
}

/* Navigation Labels */
.wp-block-post-navigation-link.has-text-align-left a::before {
    content: '← Previous Post';
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wp-block-post-navigation-link.has-text-align-right a::before {
    content: 'Next Post →';
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: right;
}

/* Post Titles in Navigation */
.wp-block-post-navigation-link a {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.wp-block-post-navigation-link.has-text-align-right {
    text-align: right;
}

/* Hover Effects */
.wp-block-post-navigation-link a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    color: #000000;
    background: #f8f8f8;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .post-navigation-wrapper {
        flex-direction: column !important;
        gap: 16px;
        margin: 32px auto !important;
    }

    .wp-block-post-navigation-link {
        width: 100% !important;
        max-width: 100%;
    }

    .wp-block-post-navigation-link a {
        padding: 20px;
        font-size: 16px;
    }

    .wp-block-post-navigation-link a::before {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .wp-block-post-navigation-link.has-text-align-right {
        text-align: left;
    }

    .wp-block-post-navigation-link.has-text-align-right a::before {
        content: '← Previous Post';
        text-align: left;
    }
} 
.wp-block-post-title[style],
.wp-block-post-title[style] a {
    font-size: 20px !important;
    line-height: 1.25 !important;
}

/*
 * PELIZZARIO v16 — incolla in FONDO a style.css del tema (sostituisci tutto il blocco Pelizzario).
 * Mobile hero/menu: funziona anche se il blocco HTML non è aggiornato.
 * Per menu hamburger + LinkedIn + YouTube mobile: incolla anche gutenberg-snippet.html v16.
 */

body.page-id-885,
body:has(.pz-home),
body.home {
  margin-top: 0 !important;
  padding-top: 0 !important;
  overflow-x: clip !important;
  --wp--style--root--padding-left: 0 !important;
  --wp--style--root--padding-right: 0 !important;
  --wp--style--global--content-size: min(1180px, calc(100vw - 48px)) !important;
  --wp--style--global--wide-size: min(1180px, calc(100vw - 48px)) !important;
}

body.page-id-885 .wp-site-blocks,
body:has(.pz-home) .wp-site-blocks,
body.home .wp-site-blocks {
  padding: 0 !important;
  margin-top: 0 !important;
}

body.page-id-885 .wp-site-blocks > *,
body:has(.pz-home) .wp-site-blocks > *,
body.home .wp-site-blocks > * {
  margin-block-start: 0 !important;
}

/* Colonna nera Jinjang */
body.page-id-885 .wp-site-blocks > .wp-block-columns > .wp-block-column.has-contrast-background-color,
body.page-id-885 .wp-site-blocks > .wp-block-columns > .wp-block-column:first-child,
body:has(.pz-home) .wp-site-blocks > .wp-block-columns > .wp-block-column.has-contrast-background-color,
body:has(.pz-home) .wp-site-blocks > .wp-block-columns > .wp-block-column:first-child,
body.home .wp-site-blocks > .wp-block-columns > .wp-block-column.has-contrast-background-color,
body.home .wp-site-blocks > .wp-block-columns > .wp-block-column:first-child {
  display: none !important;
  width: 0 !important;
  max-width: 0 !important;
  flex: 0 0 0 !important;
  overflow: hidden !important;
}

body.page-id-885 .wp-site-blocks > .wp-block-columns,
body:has(.pz-home) .wp-site-blocks > .wp-block-columns,
body.home .wp-site-blocks > .wp-block-columns {
  display: flex !important;
  width: 100% !important;
}

body.page-id-885 .wp-site-blocks > .wp-block-columns > .wp-block-column:last-child,
body:has(.pz-home) .wp-site-blocks > .wp-block-columns > .wp-block-column:last-child,
body.home .wp-site-blocks > .wp-block-columns > .wp-block-column:last-child {
  flex: 1 1 auto !important;
  width: 100% !important;
  max-width: none !important;
}

body.page-id-885 .wp-block-post-title,
body:has(.pz-home) .wp-block-post-title,
body.home .wp-block-post-title {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

body.page-id-885 .wp-block-column:last-child > .wp-block-group,
body.page-id-885 main > .wp-block-group,
body.page-id-885 .wp-block-group[style*="min-height"],
body:has(.pz-home) .wp-block-column:last-child > .wp-block-group,
body:has(.pz-home) main > .wp-block-group,
body.home .wp-block-column:last-child > .wp-block-group {
  padding-top: 0 !important;
  margin-top: 0 !important;
  min-height: 0 !important;
}

body.page-id-885 .entry-content.has-global-padding,
body:has(.pz-home) .entry-content.has-global-padding,
body.home .entry-content.has-global-padding {
  padding-top: 0 !important;
}

body.page-id-885 .entry-content > .pz-home,
body:has(.pz-home) .entry-content > .pz-home,
body.home .entry-content > .pz-home {
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Topbar full width + compensa barra bianca sopra */
body.page-id-885 .pz-home .pz-topbar,
body:has(.pz-home) .pz-home .pz-topbar,
body.home .pz-home .pz-topbar {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  margin-top: calc(-1 * var(--wp--preset--spacing--70, 4.25rem)) !important;
  background: #000 !important;
  z-index: 1000;
  box-sizing: border-box !important;
}

body.page-id-885 .pz-home .pz-topbar .pz-wrap,
body:has(.pz-home) .pz-home .pz-topbar .pz-wrap,
body.home .pz-home .pz-topbar .pz-wrap {
  padding: 16px 24px !important;
}

/* Hero: sotto il menu, full bleed desktop */
body.page-id-885 .pz-home .pz-hero,
body:has(.pz-home) .pz-home .pz-hero,
body.home .pz-home .pz-hero {
  position: relative !important;
  z-index: 1 !important;
  margin-top: 0 !important;
}

@media (min-width: 901px) {
  body.page-id-885 .pz-home .pz-hero,
  body:has(.pz-home) .pz-home .pz-hero,
  body.home .pz-home .pz-hero {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
  }
  body.page-id-885 .pz-home .pz-meta,
  body:has(.pz-home) .pz-home .pz-meta,
  body.home .pz-home .pz-meta {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
  }
}

body.page-id-885 .jinjang-mobile-header,
body:has(.pz-home) .jinjang-mobile-header,
body.home .jinjang-mobile-header {
  display: none !important;
}

body.page-id-885 .entry-content .wp-block-latest-posts,
body.page-id-885 .entry-content .wp-block-latest-posts__list,
body:has(.pz-home) .entry-content .wp-block-latest-posts,
body.home .entry-content .wp-block-latest-posts {
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  box-sizing: border-box !important;
}

body.page-id-885 .pz-home .pz-logo-img,
body:has(.pz-home) .pz-home .pz-logo-img {
  height: 48px !important;
  max-width: 200px !important;
}

body.page-id-885 .pz-home .pz-hero .pz-btn--primary,
body:has(.pz-home) .pz-home .pz-hero .pz-btn--primary {
  color: #0a0a0a !important;
}
body.page-id-885 .pz-home .pz-hero .pz-btn--primary:hover,
body:has(.pz-home) .pz-home .pz-hero .pz-btn--primary:hover {
  background: #0a0a0a !important;
  color: #fff !important;
}

body.page-id-885 .pz-home .pz-about-copy .pz-btn--primary,
body:has(.pz-home) .pz-home .pz-about-copy .pz-btn--primary {
  background: #0a0a0a !important;
  color: #fff !important;
}
body.page-id-885 .pz-home .pz-about-copy .pz-btn--primary:hover,
body:has(.pz-home) .pz-home .pz-about-copy .pz-btn--primary:hover {
  background: #fff !important;
  color: #0a0a0a !important;
}

/* Footer tema Jinjang: nasconde il link LinkedIn (copia salvata nel DB, non in footer.php) */
footer.wp-block-template-part {
  display: none !important;
}

/* ═══ MOBILE-PELIZZARIO v11 — hero + menu (anche con HTML vecchio sul sito) ═══ */
@media (max-width: 900px) {
  body.page-id-885 .pz-home,
  body:has(.pz-home) .pz-home,
  body.home .pz-home {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body.page-id-885 .pz-home .pz-topbar .pz-wrap,
  body:has(.pz-home) .pz-home .pz-topbar .pz-wrap,
  body.home .pz-home .pz-topbar .pz-wrap {
    padding: 12px 14px !important;
  }

  body.page-id-885 .pz-home .pz-topbar-inner,
  body:has(.pz-home) .pz-topbar-inner,
  body.home .pz-home .pz-topbar-inner {
    flex-wrap: nowrap !important;
    gap: 10px !important;
  }

  body.page-id-885 .pz-home .pz-logo-img,
  body:has(.pz-home) .pz-home .pz-logo-img,
  body.home .pz-home .pz-logo-img {
    height: 34px !important;
    max-width: 120px !important;
  }

  /* Menu mobile: hamburger (chiuso di default) */
  body.page-id-885 .pz-home .pz-menu-btn,
  body:has(.pz-home) .pz-menu-btn,
  body.home .pz-home .pz-menu-btn {
    display: inline-flex !important;
  }

  body.page-id-885 .pz-home .pz-topbar:not(.is-menu-open) .pz-nav,
  body:has(.pz-home) .pz-home .pz-topbar:not(.is-menu-open) .pz-nav,
  body.home .pz-home .pz-topbar:not(.is-menu-open) .pz-nav {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  body.page-id-885 .pz-home .pz-topbar.is-menu-open .pz-nav,
  body:has(.pz-home) .pz-home .pz-topbar.is-menu-open .pz-nav,
  body.home .pz-home .pz-topbar.is-menu-open .pz-nav {
    display: flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
    flex-direction: column !important;
    position: absolute !important;
    top: calc(100% + 6px) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1001 !important;
    max-width: none !important;
    max-height: min(75vh, 360px) !important;
    overflow-x: visible !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    margin: 0 !important;
    padding: 4px 0 !important;
    background: #0a0a0a !important;
    border: 1px solid #2a2a2a !important;
    border-radius: 10px !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5) !important;
  }

  body.page-id-885 .pz-home .pz-topbar .pz-nav a,
  body:has(.pz-home) .pz-home .pz-topbar .pz-nav a,
  body.home .pz-home .pz-topbar .pz-nav a {
    width: 100% !important;
    text-align: left !important;
    padding: 13px 16px !important;
    font-size: 15px !important;
    border: 0 !important;
    border-radius: 0 !important;
    border-bottom: 1px solid #1f1f1f !important;
    background: transparent !important;
    white-space: nowrap !important;
  }

  body.page-id-885 .pz-home .pz-topbar .pz-nav a:last-child,
  body:has(.pz-home) .pz-home .pz-topbar .pz-nav a:last-child {
    border-bottom: 0 !important;
  }

  body.page-id-885 .pz-home .pz-nav a.pz-nav--linkedin:hover,
  body:has(.pz-home) .pz-nav a.pz-nav--linkedin:hover {
    background: #1a5cff !important;
    color: #fff !important;
  }

  body.page-id-885 .pz-home .pz-topbar,
  body:has(.pz-home) .pz-home .pz-topbar,
  body.home .pz-home .pz-topbar,
  body.page-id-885 .pz-home .pz-topbar-inner,
  body:has(.pz-home) .pz-home .pz-topbar-inner {
    overflow: visible !important;
  }

  /* Sovrascrive vecchio v12 che nascondeva YouTube su mobile */
  body.page-id-885 .pz-home .pz-topbar .pz-nav a.pz-nav--linkedin,
  body.page-id-885 .pz-home .pz-topbar .pz-nav a.pz-nav--yt,
  body:has(.pz-home) .pz-home .pz-topbar .pz-nav a.pz-nav--linkedin,
  body:has(.pz-home) .pz-home .pz-topbar .pz-nav a.pz-nav--yt,
  body.home .pz-home .pz-topbar .pz-nav a.pz-nav--linkedin,
  body.home .pz-home .pz-topbar .pz-nav a.pz-nav--yt {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: 44px !important;
    align-items: center !important;
  }

  /* Hero: ritaglio + testo in basso */
  body.page-id-885 .pz-home .pz-hero,
  body:has(.pz-home) .pz-home .pz-hero,
  body.home .pz-home .pz-hero {
    overflow: hidden !important;
  }

  body.page-id-885 .pz-home .pz-hero .pz-hero-visual,
  body:has(.pz-home) .pz-hero .pz-hero-visual,
  body.home .pz-home .pz-hero .pz-hero-visual {
    position: relative !important;
    height: min(72vw, 340px) !important;
    min-height: 280px !important;
    max-height: 340px !important;
    overflow: hidden !important;
  }

  body.page-id-885 .pz-home .pz-hero .pz-hero-img,
  body:has(.pz-home) .pz-hero .pz-hero-img,
  body.home .pz-home .pz-hero .pz-hero-img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    margin: 0 !important;
    object-fit: cover !important;
    object-position: center 18% !important;
  }

  body.page-id-885 .pz-home .pz-hero .pz-hero-overlay,
  body:has(.pz-home) .pz-hero .pz-hero-overlay,
  body.home .pz-home .pz-hero .pz-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 0, 0, 0.5) 42%,
      rgba(0, 0, 0, 0.92) 78%,
      #000 100%
    ) !important;
  }

  body.page-id-885 .pz-home .pz-hero .pz-hero-content,
  body:has(.pz-home) .pz-hero .pz-hero-content,
  body.home .pz-home .pz-hero .pz-hero-content {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 5 !important;
    padding: 0 20px 22px !important;
    box-sizing: border-box !important;
  }

  body.page-id-885 .pz-home .pz-hero .pz-hero-grid,
  body:has(.pz-home) .pz-hero .pz-hero-grid,
  body.home .pz-home .pz-hero .pz-hero-grid {
    display: block !important;
  }

  body.page-id-885 .pz-home .pz-hero h1,
  body:has(.pz-home) .pz-hero h1,
  body.home .pz-home .pz-hero h1 {
    font-size: clamp(24px, 7vw, 34px) !important;
    line-height: 1.05 !important;
    margin-top: 6px !important;
  }

  body.page-id-885 .pz-home .pz-hero h1 .pz-h1-line2,
  body:has(.pz-home) .pz-hero h1 .pz-h1-line2 {
    display: inline !important;
  }

  body.page-id-885 .pz-home .pz-hero .pz-eyebrow,
  body:has(.pz-home) .pz-hero .pz-eyebrow,
  body.home .pz-home .pz-hero .pz-eyebrow {
    display: none !important;
  }

  body.page-id-885 .pz-home .pz-hero .pz-lede,
  body:has(.pz-home) .pz-hero .pz-lede {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px !important;
    line-height: 1.4 !important;
    margin: 8px 0 0 !important;
    max-width: none !important;
  }

  body.page-id-885 .pz-home .pz-hero .pz-cta-row,
  body:has(.pz-home) .pz-hero .pz-cta-row,
  body.home .pz-home .pz-hero .pz-cta-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    margin-top: 10px !important;
  }

  body.page-id-885 .pz-home .pz-hero .pz-btn,
  body:has(.pz-home) .pz-hero .pz-btn,
  body.home .pz-home .pz-hero .pz-btn {
    font-size: 11px !important;
    padding: 8px 11px !important;
    flex: 1 1 0 !important;
    min-width: 0 !important;
    justify-content: center !important;
  }

  body.page-id-885 .pz-home .pz-hero .pz-btn svg,
  body:has(.pz-home) .pz-hero .pz-btn svg {
    width: 12px !important;
    height: 12px !important;
  }

  body.page-id-885 .pz-home .pz-meta,
  body:has(.pz-home) .pz-meta,
  body.home .pz-home .pz-meta {
    display: none !important;
  }
}
