/**
 * Lockheed Martin Deep Theme
 * Auto-generated
 */

:root {
    --dghg-primary: #161721;
    --dghg-primary-light: #475465;
    --dghg-primary-dark: #09121d;
    --dghg-bronze: #184163;
    --dghg-bronze-light: #49647c;
    --dghg-bronze-dark: #0b3152;
    --dghg-silver: #868d96;
    --dghg-silver-light: #a0b8b3;
    --dghg-charcoal: #03080c;
    --dghg-midnight: #060d15;
    --dghg-slate: #09121d;
    --dghg-text: #E8EDF2;
    --dghg-text-dim: #86a0ad;
    --dghg-text-dark: #13142a;
    --dghg-border: #2c3444;
    --dghg-success: #33c768;
    --dghg-warning: #e64f42;
    --dghg-highlight: #f5de0a;
    --dghg-curve-sm: 2px;
    --dghg-curve-md: 4px;
    --dghg-curve-lg: 8px;
    --dghg-glow: 0 8px 32px rgba(0,0,0,0.4);
    --dghg-glow-bronze: 0 6px 24px rgba(28,74,101,0.25);
    --dghg-anim: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --dghg-font-heading: 'Inter', sans-serif;
    --dghg-font-text: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.dghg-page {
    font-family: var(--dghg-font-text);
    background: linear-gradient(180deg, var(--dghg-charcoal) 0%, var(--dghg-midnight) 100%);
    color: var(--dghg-text);
    line-height: 1.75;
    min-height: 100vh;
}

a {
    color: var(--dghg-bronze);
    text-decoration: none;
    transition: var(--dghg-anim);
}

a:hover {
    color: var(--dghg-bronze-light);
}

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

/* ================================================
   NAVIGATION BAR
================================================ */
.dghg-topbar {
    background: linear-gradient(180deg, var(--dghg-primary-dark) 0%, var(--dghg-charcoal) 100%);
    border-bottom: 1px solid var(--dghg-border);
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(11px);
}

.dghg-topbar__wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 17px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 27px;
}

.dghg-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    margin-right: auto;
}

.dghg-brand__title {
    font-family: var(--dghg-font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--dghg-text);
    letter-spacing: 0.6px;
}

.dghg-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
}

.dghg-menu__link {
    display: inline-block;
    padding: 14px 23px;
    color: var(--dghg-text);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    border-radius: var(--dghg-curve-sm);
    transition: var(--dghg-anim);
}

.dghg-menu__link:hover,
.dghg-menu__link.current {
    color: var(--dghg-bronze);
    background: rgba(27,72,93,0.12);
}

.dghg-topbar__action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 28px;
    background: linear-gradient(135deg, var(--dghg-bronze) 0%, var(--dghg-bronze-dark) 100%);
    color: var(--dghg-charcoal);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    border-radius: 51px;
    transition: var(--dghg-anim);
    box-shadow: var(--dghg-glow-bronze);
}

.dghg-topbar__action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(34,77,104,0.5);
    color: var(--dghg-charcoal);
}

.dghg-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 14px;
    background: transparent;
    border: 1px solid var(--dghg-bronze);
    border-radius: var(--dghg-curve-sm);
    cursor: pointer;
}

.dghg-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--dghg-bronze);
    transition: var(--dghg-anim);
}

.dghg-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.dghg-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.dghg-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.dghg-drawer {
    display: none;
    max-height: 0;
    overflow: hidden;
    background: var(--dghg-primary-dark);
    transition: max-height 0.35s ease;
}

.dghg-drawer.open {
    display: block;
    max-height: 420px;
    padding: 23px 35px;
}

.dghg-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.dghg-drawer__nav a {
    display: block;
    padding: 12px 27px;
    color: var(--dghg-text);
    font-size: 15px;
    border-radius: var(--dghg-curve-sm);
}

.dghg-drawer__nav a:hover {
    background: rgba(33,75,96,0.12);
    color: var(--dghg-bronze);
}

/* ================================================
   LAYOUT
================================================ */
.dghg-content {
    min-height: calc(100vh - 200px);
}

.dghg-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 11px 35px;
}

/* ================================================
   HERO BANNER
================================================ */
.dghg-hero {
    text-align: center;
    padding: 0 0 17px;
    margin-bottom: 14px;
}

.dghg-hero__tag {
    display: inline-block;
    padding: 13px 24px;
    background: rgba(32,65,103,0.18);
    color: var(--dghg-bronze);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.6px;
    border-radius: 49px;
    margin-bottom: 27px;
}

.dghg-hero__heading {
    font-family: var(--dghg-font-heading);
    font-size: 52px;
    font-weight: 700;
    color: var(--dghg-text);
    margin-bottom: 18px;
    line-height: 1.15;
    letter-spacing: -0.6px;
}

.dghg-hero__desc {
    font-size: 19px;
    color: var(--dghg-text-dim);
    max-width: 640px;
    margin: 0 auto 38px;
}

/* ================================================
   SECTION HEADERS
================================================ */
.dghg-section-intro {
    text-align: center;
    margin-bottom: 43px;
}

.dghg-section-intro__label {
    display: inline-block;
    padding: 11px 19px;
    background: rgba(31,74,95,0.18);
    color: var(--dghg-bronze);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 13px;
}

.dghg-section-intro__title {
    font-family: var(--dghg-font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--dghg-text);
    margin-bottom: 11px;
}

.dghg-section-intro__text {
    font-size: 16px;
    color: var(--dghg-text-dim);
}

/* ================================================
   COMPANY GRID
================================================ */
.dghg-providers {
    margin: 49px 0;
    width: 90vw;
    max-width: 1160px;
    margin-left: 50%;
    transform: translateX(-50%);
    position: relative;
}

.dghg-providers__grid {
    background: var(--dghg-slate);
    border-radius: var(--dghg-curve-lg);
    overflow: hidden;
    box-shadow: var(--dghg-glow);
}

.dghg-providers__head {
    display: grid;
    grid-template-columns: 1.6fr 2fr 0.9fr 0.9fr 1.2fr;
    gap: 27px;
    padding: 16px 29px;
    background: #0b2126;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    text-align: center;
    align-items: center;
}

.dghg-providers__head > div {
    text-align: center;
    color: #fff;
}

.dghg-providers__row {
    display: grid;
    grid-template-columns: 1.6fr 2fr 0.9fr 0.9fr 1.2fr;
    gap: 27px;
    padding: 23px 30px;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid #e7d7d9;
    background: #ffffff;
    transition: background 0.2s ease;
}

.dghg-providers__row:nth-child(odd) {
    background: #f0f4f8;
}

.dghg-providers__row:last-child {
    border-bottom: none;
}

.dghg-providers__row:hover {
    background: #e8edf5;
}

.dghg-providers__row.top-pick {
    background: #fef9e7;
    border-left: 4px solid #0f3058;
}

.dghg-company-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.dghg-company-cell__logo {
    width: 100%;
    max-width: 220px;
    height: auto;
    min-height: 60px;
    object-fit: contain;
    border-radius: 13px;
    background: #fff;
    padding: 13px 14px;
    border: 2px solid #eee;
}

.dghg-company-cell__tagline {
    font-size: 12px;
    color: #183853;
    text-align: center;
    font-weight: 500;
}

.dghg-perks {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.dghg-perk {
    display: block;
    padding: 6px 13px;
    background: #eaf2e8;
    color: #1d6625;
    font-size: 11px;
    font-weight: 600;
    border-radius: 5px;
    text-align: center;
    width: fit-content;
    border: 1px solid #ceecc9;
}

.dghg-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.dghg-stars {
    display: flex;
    gap: 3px;
    justify-content: center;
}

.dghg-stars__star {
    font-size: 17px;
}

.dghg-stars__star.lit {
    color: #f1940a;
}

.dghg-stars__star.dim {
    color: #d6d3d2;
}

.dghg-score__num {
    font-weight: 700;
    color: #274056;
    font-size: 17px;
}

.dghg-score__bbb {
    font-size: 11px;
    color: #246621;
    font-weight: 700;
    background: #e8f5e9;
    padding: 3px 9px;
    border-radius: 3px;
}

.dghg-invest {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dghg-invest__amount {
    font-weight: 700;
    color: #343449;
    font-size: 17px;
}

.dghg-invest__label {
    font-size: 11px;
    color: #7c8b95;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.dghg-cta-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.dghg-cta-cell__main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 27px;
    background: linear-gradient(135deg, #163c52 0%, #346579 100%);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-radius: 11px;
    transition: var(--dghg-anim);
}

.dghg-cta-cell__main:hover {
    color: #fff;
    box-shadow: 0 4px 12px rgba(22,72,106,0.3);
}

.dghg-cta-cell__alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 17px;
    color: #4e5a55;
    border: 2px solid #cec6c7;
    font-size: 11px;
    border-radius: 6px;
    transition: var(--dghg-anim);
}

.dghg-cta-cell__alt:hover {
    background: #f0f0f0;
    color: #393129;
}

/* ================================================
   TABLE OF CONTENTS
================================================ */
.dghg-toc {
    background: linear-gradient(135deg, rgba(21,78,98,0.12) 0%, rgba(20,75,105,0.05) 100%);
    border: 2px solid var(--dghg-bronze);
    border-radius: var(--dghg-curve-lg);
    padding: 28px 33px;
    margin: 38px 0;
}

.dghg-toc__title {
    font-family: var(--dghg-font-heading);
    font-size: 22px;
    color: var(--dghg-text);
    margin-bottom: 23px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.dghg-toc__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.dghg-toc__list li a {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 10px 13px;
    color: var(--dghg-text);
    font-size: 14px;
    border-radius: var(--dghg-curve-sm);
    transition: var(--dghg-anim);
}

.dghg-toc__list li a:hover {
    background: rgba(19,65,97,0.18);
    color: var(--dghg-bronze);
}

.dghg-toc__list li a::before {
    content: '\2192';
    color: var(--dghg-bronze);
}

/* ================================================
   ARTICLE / CONTENT BLOCKS
================================================ */
.dghg-article {
    margin: 43px 0;
}

.dghg-article h1 {
    font-family: var(--dghg-font-heading);
    font-size: 46px;
    font-weight: 700;
    color: var(--dghg-text);
    margin-bottom: 25px;
    text-align: center;
}

.dghg-block {
    margin: 42px 0;
    padding: 35px;
    background: var(--dghg-slate);
    border-radius: var(--dghg-curve-lg);
}

.dghg-block#overview {
    background: transparent;
    padding: 0;
}

.dghg-block h2 {
    font-family: var(--dghg-font-heading);
    font-size: 30px;
    font-weight: 600;
    color: var(--dghg-text);
    margin-bottom: 19px;
}

.dghg-block__body {
    font-size: 18px;
    line-height: 1.85;
}

.dghg-block__body p {
    margin-bottom: 17px;
}

.dghg-block__body ul,
.dghg-block__body ol {
    margin: 21px 0;
    padding-left: 29px;
}

.dghg-block__body li {
    margin-bottom: 10px;
}

.dghg-block__body strong {
    color: var(--dghg-text);
}

.dghg-block__body img {
    max-width: 70%;
    height: auto;
    display: block;
    margin: 21px auto;
}

/* Content images */
.dghg-content-image {
    margin: 36px 0;
    border-radius: var(--dghg-curve-lg);
    overflow: hidden;
    box-shadow: var(--dghg-glow);
}

.dghg-content-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ================================================
   FAQ SECTION
================================================ */
.dghg-faq {
    padding: 57px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--dghg-curve-lg);
    margin: 50px 0;
}

.dghg-faq .dghg-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 23px;
}

.dghg-faq-header {
    text-align: center;
    margin-bottom: 41px;
}

.dghg-faq-label {
    display: inline-block;
    background: linear-gradient(135deg, #144c5b 0%, #406581 100%);
    color: white;
    padding: 5px 19px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 11px;
}

.dghg-faq-title {
    font-size: 35px;
    font-weight: 700;
    color: #121f2e;
    margin: 0;
}

.dghg-faq-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.dghg-faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.dghg-faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.dghg-faq-item.active .dghg-faq-answer {
    max-height: 500px;
    padding: 0 27px 21px;
}

.dghg-faq-item.active .dghg-faq-icon {
    transform: rotate(180deg);
}

.dghg-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 27px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: #161329;
    gap: 13px;
}

.dghg-faq-question:hover {
    color: #21485c;
}

.dghg-faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #164c6b;
}

.dghg-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 27px;
}

.dghg-faq-answer-inner {
    color: #4f4b5b;
    line-height: 1.7;
    font-size: 15px;
}

/* ================================================
   TESTIMONIALS SLIDER
================================================ */
.dghg-reviews {
    margin: 62px 0;
    overflow: hidden;
}

.dghg-reviews__carousel {
    display: flex;
    gap: 31px;
    animation: slideReviews 30s linear infinite;
}

@keyframes slideReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.dghg-reviews__carousel:hover {
    animation-play-state: paused;
}

.dghg-review-card {
    flex-shrink: 0;
    width: 340px;
    background: var(--dghg-slate);
    padding: 25px;
    border-radius: var(--dghg-curve-lg);
    border: 2px solid var(--dghg-border);
}

.dghg-review-card__header {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 21px;
}

.dghg-review-card__avatar {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--dghg-bronze) 0%, var(--dghg-bronze-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    color: var(--dghg-charcoal);
    overflow: hidden;
}

.dghg-review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dghg-review-card__author {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dghg-review-card__name {
    font-weight: 600;
    color: var(--dghg-text);
}

.dghg-review-card__location {
    font-size: 13px;
    color: var(--dghg-text-dim);
}

.dghg-review-card__verified {
    width: 26px;
    height: 26px;
    background: var(--dghg-success);
    color: var(--dghg-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.dghg-review-card__stars {
    margin-bottom: 19px;
}

.dghg-review-card__text {
    font-size: 15px;
    color: var(--dghg-text);
    margin-bottom: 14px;
    font-style: italic;
    line-height: 1.7;
}

.dghg-review-card__date {
    font-size: 12px;
    color: var(--dghg-text-dim);
}

/* ================================================
   FOOTER
================================================ */
.dghg-footer {
    background: linear-gradient(180deg, var(--dghg-charcoal) 0%, #050a14 100%);
    border-top: 1px solid var(--dghg-border);
    padding: 57px 0 42px;
    margin-top: 63px;
}

.dghg-footer__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 33px;
}

.dghg-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 58px;
    margin-bottom: 53px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dghg-footer__brand-name {
    font-family: var(--dghg-font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--dghg-text);
    margin-bottom: 13px;
}

.dghg-footer__desc {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dghg-text-dim);
    max-width: 360px;
}

.dghg-footer__heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--dghg-text);
    margin-bottom: 23px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.dghg-footer__links {
    list-style: none;
}

.dghg-footer__links li {
    margin-bottom: 9px;
}

.dghg-footer__links a {
    color: var(--dghg-text-dim);
    font-size: 15px;
    transition: var(--dghg-anim);
}

.dghg-footer__links a:hover {
    color: var(--dghg-bronze);
}

.dghg-footer__bottom {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

/* ================================================
   EXIT POPUP
================================================ */
.dghg-exit-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.dghg-exit-popup-overlay.is-visible {
    display: flex;
}

/* ================================================
   STICKY FOOTER BAR
================================================ */
.dghg-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,.1);
    padding: 8px 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1024px) {
    .dghg-providers__head {
        display: none;
    }
    .dghg-providers__row {
        grid-template-columns: 1fr;
        padding: 26px 19px;
        text-align: center;
    }
    .dghg-company-cell__logo {
        max-width: 200px;
    }
    .dghg-providers {
        width: calc(100vw - 20px);
    }
    html, body {
        overflow-x: hidden;
    }
}

@media (max-width: 768px) {
    .dghg-menu {
        display: none;
    }
    .dghg-hamburger {
        display: flex;
        margin-left: auto;
    }
    .dghg-topbar__action {
        display: none;
    }
    .dghg-hero__heading {
        font-size: 32px;
    }
    .dghg-hero__desc {
        font-size: 16px;
    }
    .dghg-toc__list {
        grid-template-columns: 1fr;
    }
    .dghg-footer__grid {
        grid-template-columns: 1fr;
        gap: 37px;
    }
    .dghg-article h1 {
        font-size: 34px;
    }
    .dghg-block h2 {
        font-size: 24px;
    }
    .dghg-sticky-bar {
        flex-direction: column;
        gap: 11px;
        padding: 9px 10px;
        text-align: center;
    }
    .dghg-sticky-bar img {
        height: 35px;
    }
}

@media (max-width: 640px) {
    .dghg-faq { padding: 37px 0; }
    .dghg-faq-title { font-size: 26px; }
    .dghg-faq-question { font-size: 15px; padding: 19px 21px; }
}

/* Animation helper */
.animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Overhaul */
h1 { text-align: center !important; }
.dghg-hero__tag { margin-bottom: 3px !important; margin-top: 0 !important; }
.dghg-hero__heading { margin-bottom: 5px !important; margin-top: 0 !important; }
h1 { font-size: clamp(22px, 3vw, 32px) !important; margin-bottom: 14px !important; }
.dghg-hero__desc { margin-bottom: 11px !important; }
.dghg-hero { padding-bottom: 0 !important; margin-bottom: 0 !important; padding-top: 0 !important; }
img[class*="logo"] { border-radius: 15px !important; border: none !important; }

body.dghg-page { padding-bottom: 71px !important; }


/* ======================================================
   COMPREHENSIVE FIX - March 2026
====================================================== */

/* 1. Company table max-width 1500px */
.dghg-providers {
    max-width: 1500px !important;
    width: 96vw !important;
}

/* 2. Desktop company logos: 170-230px */
.dghg-providers__logo {
    width: 200px !important;
    min-width: 170px !important;
    max-width: 230px !important;
    min-height: unset !important;
}

/* 3. Button text centering */
.dghg-btn,
.dghg-providers__action .dghg-btn,
.fb-btn, .exq-btn-cta, .exq-btn-review,
.fb-btn-primary, .fb-btn-review,
.fb-btn-primary-visit {
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.dghg-providers__action {
    text-align: center !important;
}
.dghg-providers__action .dghg-btn {
    display: block !important;
    text-align: center !important;
    max-width: 180px !important;
    margin: 5px auto !important;
}

/* 4. Content images desktop: 30% width with float */
.dghg-block img:not(.dghg-providers__logo):not(.avatar):not([src*="logo"]):not([src*="kit"]):not([src*="avatar"]):not([alt*="avatar"]) {
    max-width: 30% !important;
    height: auto !important;
    border-radius: 6px !important;
}
.img-float-left {
    float: left !important;
    margin: 6px 20px 12px 0 !important;
}
.img-float-right {
    float: right !important;
    margin: 6px 0 14px 23px !important;
}
.img-center-block {
    float: none !important;
    display: block !important;
    margin: 16px auto !important;
}

/* 5. Review logo white bg */
.review-hero-logo-wrap {
    display: inline-block;
    background: rgba(255,255,255,0.85);
    border-radius: 14px;
    padding: 18px 30px;
    margin-bottom: 12px;
}
.review-hero-logo-wrap img {
    height: 80px !important;
    width: auto !important;
    max-width: 280px !important;
    max-height: none !important;
    min-height: unset !important;
}

/* Compare card logos white bg */
.compare-card img {
    background: rgba(255,255,255,0.85) !important;
    border-radius: 11px !important;
    padding: 6px 8px !important;
    height: 53px !important;
}

/* 6. FAQ compact */
.dghg-faq-question {
    padding: 14px 17px !important;
    margin: 0 !important;
}
.dghg-faq-item {
    margin-bottom: 0 !important;
}
.dghg-faq-answer {
    transition: max-height 0.3s ease, padding 0.3s ease !important;
}

/* 7. Breadcrumbs */
.breadcrumbs {
    max-width: 1500px;
    margin: 0 auto;
    padding: 9px 23px;
    font-size: 14px;
    color: #9292a1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.breadcrumbs a { color: #466a8b; text-decoration: none; }
.breadcrumbs a:hover { color: #224567; text-decoration: underline; }

/* 8. Banners centered */
.kit-banner { text-align: center !important; margin: 38px auto !important; }

/* 9. Footer grid mobile fix (override inline style) */
@media (max-width: 768px) {
    .dghg-footer__grid { grid-template-columns: 1fr !important; gap: 30px !important; }
}

/* 10. Mobile company logos: 45% */
@media (max-width: 1024px) {
    .dghg-providers__logo {
        width: 45% !important;
        min-width: unset !important;
        max-width: 50% !important;
    }
    .dghg-providers__row { text-align: center !important; }
    .dghg-providers__action {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    /* Mobile: content images 100% */
    .dghg-block img:not(.avatar):not([src*="logo"]):not([src*="avatar"]):not([alt*="avatar"]) {
        max-width: 100% !important;
        float: none !important;
        display: block !important;
        margin: 17px auto !important;
    }
}

/* 11. Mobile minimal padding */
@media (max-width: 768px) {
    .dghg-wrapper { padding-left: 13px !important; padding-right: 11px !important; }
    .dghg-block { padding: 18px 18px !important; }
    .review-hero-logo-wrap img { height: 60px !important; }
    .dghg-toc__list { grid-template-columns: 1fr !important; }
    .review-hero { padding: 27px 18px 19px !important; }
}

/* Footer grid fix - desktop 4 columns, mobile 1 column */
.dghg-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr !important;
}
@media (max-width: 768px) {
    .dghg-footer__grid {
        grid-template-columns: 1fr !important;
        gap: 31px !important;
    }
}
