/* ============================================
   MISIÓN HÍBRIDA - FORO EMPRENDEDORES DEL AÑO
   Diseño fiel al PDF Deck
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root {
    --mh-primary: #0f3460;
    --mh-secondary: #533483;
    --mh-accent: #e94560;
    --mh-red: #ff2544;
    --mh-gold: #d4a843;
    --mh-dark: #000000;
    --mh-dark-gray: #111111;
    --mh-light: #f8f9fa;
    --mh-text: #333333;
    --mh-text-light: #ffffff;
    --mh-border: #e0e0e0;
    --mh-shadow: 0 4px 20px rgba(0,0,0,0.15);
    --mh-radius: 12px;
}

/* === RESET & BASE === */
.mh-page-wrapper {
    font-family: 'Arial', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--mh-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.mh-page-wrapper * {
    box-sizing: border-box;
}

.mh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === HERO === */
.mh-hero {
    padding: 100px 20px 80px;
    text-align: center;
    color: var(--mh-text-light);
    position: relative;
}

.mh-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.mh-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.mh-hero-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.mh-hero-date, .mh-hero-location {
    font-size: 15px;
    opacity: 0.9;
}

.mh-hero-title {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mh-hero-subtitle {
    font-size: 18px;
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* === BUTTONS === */
.mh-btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.mh-btn-primary {
    background: var(--mh-accent);
    color: #fff;
}
.mh-btn-primary:hover {
    background: #d63451;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233,69,96,0.4);
    color: #fff;
    text-decoration: none;
}

.mh-btn-outline {
    background: transparent;
    color: var(--mh-accent);
    border: 2px solid var(--mh-accent);
}
.mh-btn-outline:hover {
    background: var(--mh-accent);
    color: #fff;
    text-decoration: none;
}

.mh-btn-gold {
    background: var(--mh-gold);
    color: var(--mh-dark);
}
.mh-btn-gold:hover {
    background: #c49935;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,168,67,0.4);
    color: var(--mh-dark);
    text-decoration: none;
}

.mh-btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

/* === SECTIONS === */
.mh-section {
    padding: 80px 20px;
}

.mh-section-dark {
    background: var(--mh-dark);
    color: var(--mh-text-light);
}

.mh-section-light {
    background: var(--mh-light);
    color: var(--mh-text);
}

.mh-section-gradient {
    background: linear-gradient(135deg, var(--mh-dark) 0%, var(--mh-primary) 100%);
    color: var(--mh-text-light);
}

.mh-section-title {
    text-align: center;
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mh-dark-text {
    color: var(--mh-dark) !important;
}

.mh-section-subtitle {
    text-align: center;
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.mh-text-center {
    text-align: center;
}

/* === INFO GRID (¿Qué es?) === */
.mh-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.mh-info-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--mh-radius);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.mh-info-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
}

.mh-info-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

/* === FEATURES GRID (¿Quién estará?) === */
.mh-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.mh-feature-item {
    background: #fff;
    border-radius: var(--mh-radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--mh-shadow);
    transition: transform 0.3s ease;
}

.mh-feature-item:hover {
    transform: translateY(-5px);
}

.mh-feature-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.mh-feature-item h4 {
    color: var(--mh-primary);
    margin-bottom: 8px;
    font-size: 16px;
}

.mh-feature-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* === BENEFITS GRID === */
.mh-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.mh-benefit-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--mh-radius);
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.mh-benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
}

.mh-benefit-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}

.mh-benefit-item h4 {
    color: var(--mh-gold);
    margin-bottom: 8px;
    font-size: 16px;
}

.mh-benefit-item p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

/* === MOMENTS GRID === */
.mh-moments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mh-moment-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--mh-radius);
    padding: 35px;
    position: relative;
    transition: transform 0.3s ease;
}

.mh-moment-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.12);
}

.mh-moment-number {
    width: 40px;
    height: 40px;
    background: var(--mh-gold);
    color: var(--mh-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 15px;
}

.mh-moment-card h3 {
    color: var(--mh-gold);
    margin-bottom: 12px;
    font-size: 20px;
}

.mh-moment-card p {
    opacity: 0.85;
    line-height: 1.7;
    font-size: 15px;
}

/* === PRICING CARDS === */
.mh-pricing-section {
    max-width: 1200px;
    margin: 0 auto;
}

.mh-pricing-grid {
    display: grid;
    gap: 24px;
    align-items: stretch;
}

.mh-pricing-grid.mh-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.mh-pricing-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--mh-radius);
    padding: 35px 28px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mh-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.mh-card-highlighted {
    border: 2px solid var(--mh-gold);
    background: rgba(212,168,67,0.08);
    transform: scale(1.02);
}

.mh-card-highlighted:hover {
    transform: scale(1.02) translateY(-8px);
}

.mh-card-ribbon {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--mh-gold);
    color: var(--mh-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 45px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Card Header */
.mh-card-header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 25px;
}

.mh-card-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--mh-gold);
}

.mh-price-main {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.mh-price-cop {
    display: block;
    font-size: 16px;
    color: var(--mh-gold);
    margin-bottom: 4px;
}

.mh-price-trm {
    display: block;
    font-size: 11px;
    opacity: 0.5;
}

.mh-price-sub {
    display: block;
    font-size: 13px;
    opacity: 0.7;
    margin-top: 5px;
}

/* Card Body */
.mh-card-body {
    flex: 1;
}

.mh-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mh-features-list li {
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.mh-check {
    color: var(--mh-gold);
    font-weight: 700;
    flex-shrink: 0;
}

/* Card Footer */
.mh-card-footer {
    text-align: center;
    padding-top: 25px;
    margin-top: auto;
}

.mh-card-footer .mh-btn {
    width: 100%;
    text-align: center;
}

/* TRM Notice */
.mh-trm-notice {
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.mh-trm-notice small {
    font-size: 13px;
    opacity: 0.7;
}

/* === INCLUDED GRID (Partners) === */
.mh-included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.mh-included-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.mh-check-gold {
    color: var(--mh-gold);
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.mh-included-item p {
    margin: 0;
    font-size: 14px;
    color: var(--mh-text);
    line-height: 1.5;
}

.mh-note {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 15px;
    font-size: 14px;
    color: #856404;
}

/* === CTA SECTION === */
.mh-section-cta {
    padding: 100px 20px;
}

.mh-cta-text {
    font-size: 18px;
    max-width: 700px;
    margin: 20px auto 35px;
    opacity: 0.9;
    line-height: 1.7;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .mh-hero {
        padding: 60px 15px 50px;
    }

    .mh-hero-meta {
        flex-direction: column;
        gap: 8px;
    }

    .mh-section {
        padding: 50px 15px;
    }

    .mh-pricing-grid.mh-cols-3 {
        grid-template-columns: 1fr;
    }

    .mh-card-highlighted {
        transform: none;
    }

    .mh-card-highlighted:hover {
        transform: translateY(-8px);
    }

    .mh-moments-grid {
        grid-template-columns: 1fr;
    }

    .mh-features-grid,
    .mh-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mh-info-grid {
        grid-template-columns: 1fr;
    }

    .mh-included-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mh-features-grid,
    .mh-benefits-grid {
        grid-template-columns: 1fr;
    }

    .mh-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ============================================
   DISEÑO PDF - ESTILO DECK
   Fondo negro, rojo #ff2544, Bebas Neue
   ============================================ */

/* === PDF BACKGROUNDS === */
.mh-bg-black {
    background: #000000 !important;
    color: #ffffff;
}

.mh-bg-dark-gray {
    background: #111111 !important;
    color: #ffffff;
}

.mh-bg-red {
    background: var(--mh-red) !important;
    color: #ffffff;
}

.mh-accent-red {
    color: var(--mh-red) !important;
}

/* === PDF HERO === */
.mh-hero-pdf {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px;
}

.mh-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1;
}

.mh-hero-pdf .mh-hero-content {
    position: relative;
    z-index: 2;
}

.mh-hero-pretitle {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.mh-pdf-title {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif !important;
    font-size: clamp(48px, 8vw, 90px) !important;
    line-height: 0.95 !important;
    margin-bottom: 25px !important;
    letter-spacing: 3px !important;
}

.mh-hero-divider {
    width: 80px;
    height: 4px;
    background: var(--mh-red);
    margin: 0 auto 30px;
}

.mh-hero-meta-pdf {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.mh-meta-item {
    text-align: center;
}

.mh-meta-label {
    display: block;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--mh-red);
    margin-bottom: 5px;
    font-weight: 700;
}

.mh-meta-value {
    display: block;
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
}

.mh-hero-desc {
    font-size: 17px;
    opacity: 0.85;
    max-width: 650px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

/* === PDF BUTTONS === */
.mh-btn-red {
    background: var(--mh-red) !important;
    color: #ffffff !important;
    border: none;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
}

.mh-btn-red:hover {
    background: #e01d3d !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,37,68,0.4);
    color: #ffffff !important;
    text-decoration: none;
}

.mh-btn-white {
    background: #ffffff !important;
    color: #000000 !important;
    border: none;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
}

.mh-btn-white:hover {
    background: #f0f0f0 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
    color: #000000 !important;
    text-decoration: none;
}

/* === PDF SECTION TITLES === */
.mh-pdf-section-title {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif !important;
    font-size: clamp(32px, 5vw, 52px) !important;
    line-height: 1.05 !important;
    margin-bottom: 20px !important;
    letter-spacing: 2px !important;
    color: #ffffff;
}

.mh-section-subtitle-pdf {
    text-align: center;
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--mh-red);
    margin-bottom: 50px;
    font-weight: 700;
}

/* === PDF CARDS GRID === */
.mh-pdf-grid {
    display: grid;
    gap: 24px;
    margin-top: 40px;
}

.mh-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.mh-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.mh-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* PDF Info cards */
.mh-pdf-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mh-pdf-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--mh-red);
    opacity: 0;
    transition: opacity 0.3s;
}

.mh-pdf-card:hover {
    background: rgba(255,37,68,0.08);
    border-color: rgba(255,37,68,0.3);
    transform: translateY(-5px);
}

.mh-pdf-card:hover::before {
    opacity: 1;
}

.mh-pdf-card-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.mh-pdf-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--mh-red);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.mh-pdf-card p {
    font-size: 14px;
    opacity: 0.75;
    line-height: 1.6;
    margin: 0;
}

/* === PDF MOMENTS === */
.mh-pdf-moment {
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mh-pdf-moment:hover {
    border-color: var(--mh-red);
    transform: translateY(-5px);
}

.mh-moment-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--mh-red);
    line-height: 1;
    margin-bottom: 10px;
}

.mh-pdf-moment h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 15px;
    line-height: 1.1;
}

.mh-moment-line {
    width: 50px;
    height: 3px;
    background: var(--mh-red);
    margin: 0 auto 20px;
}

.mh-pdf-moment p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.7;
}

/* === PDF INCLUDE ITEMS (Partners) === */
.mh-pdf-include-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s;
}

.mh-pdf-include-item:hover {
    border-color: rgba(255,37,68,0.3);
    background: rgba(255,37,68,0.06);
}

.mh-check-red {
    font-size: 22px;
    color: var(--mh-red);
    font-weight: 700;
    background: rgba(255,37,68,0.15);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.mh-pdf-include-item h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: #ffffff;
    margin: 0 0 6px;
    letter-spacing: 0.5px;
}

.mh-pdf-include-item p {
    font-size: 14px;
    opacity: 0.7;
    margin: 0;
    line-height: 1.5;
}

.mh-pdf-note {
    background: rgba(255,37,68,0.08);
    border-left: 4px solid var(--mh-red);
    padding: 18px 24px;
    margin-top: 30px;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    opacity: 0.85;
}

.mh-pdf-note strong {
    color: var(--mh-red);
}

/* === PDF CTA === */
.mh-section-cta-pdf {
    padding: 100px 20px;
}

.mh-cta-title-pdf {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif !important;
    font-size: clamp(36px, 6vw, 60px) !important;
    line-height: 1 !important;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: 2px;
}

.mh-cta-desc {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

/* === PDF PRICING OVERRIDE === */
.mh-pdf-design .mh-pricing-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
}

.mh-pdf-design .mh-pricing-card:hover {
    border-color: var(--mh-red);
}

.mh-pdf-design .mh-card-highlighted {
    border: 2px solid var(--mh-red);
    background: rgba(255,37,68,0.06);
}

.mh-pdf-design .mh-card-ribbon {
    background: var(--mh-red);
    color: #ffffff;
}

.mh-pdf-design .mh-price-usd {
    color: var(--mh-red);
}

.mh-pdf-design .mh-card-name {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.mh-pdf-design .mh-btn-card {
    background: var(--mh-red);
    color: #ffffff;
}

.mh-pdf-design .mh-btn-card:hover {
    background: #e01d3d;
    box-shadow: 0 8px 25px rgba(255,37,68,0.4);
}

/* Features grid PDF override */
.mh-pdf-design .mh-feature-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    color: #ffffff;
}

.mh-pdf-design .mh-feature-item h4 {
    color: var(--mh-red);
}

.mh-pdf-design .mh-feature-item p {
    color: rgba(255,255,255,0.7);
}

.mh-pdf-design .mh-benefit-item {
    border-radius: 16px;
}

.mh-pdf-design .mh-benefit-item h4 {
    color: var(--mh-red);
}

/* === PDF RESPONSIVE === */
@media (max-width: 768px) {
    .mh-hero-pdf {
        min-height: 70vh;
        padding: 80px 20px;
    }

    .mh-pdf-title {
        font-size: clamp(36px, 10vw, 60px) !important;
    }

    .mh-hero-meta-pdf {
        gap: 25px;
    }

    .mh-grid-4,
    .mh-grid-3 {
        grid-template-columns: 1fr;
    }

    .mh-grid-2 {
        grid-template-columns: 1fr;
    }

    .mh-pdf-moment {
        padding: 30px 20px;
    }

    .mh-section-cta-pdf {
        padding: 60px 20px;
    }

    .mh-cta-title-pdf {
        font-size: clamp(28px, 8vw, 42px) !important;
    }
}

@media (max-width: 480px) {
    .mh-hero-pdf {
        min-height: 60vh;
        padding: 60px 15px;
    }

    .mh-hero-pretitle {
        font-size: 12px;
        letter-spacing: 5px;
    }

    .mh-hero-desc {
        font-size: 15px;
    }

    .mh-pdf-card {
        padding: 25px 18px;
    }
}
