/* ========================================
   Soto Machinery - Product Detail Pages CSS
   Shared: All 14 product pages
   Version: 1.0.0
   ======================================== */

:root {
    --soto-primary: #0d7377;
    --soto-secondary: #145374;
    --soto-accent: #f5a623;
    --soto-text: #2d3748;
    --soto-text-light: #5a6b7d;
    --soto-bg: #f7f9fc;
    --soto-white: #ffffff;
    --soto-border: #e8edf2;
    --soto-radius: 8px;
    --soto-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --soto-shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --soto-transition: all 0.3s ease;
    --soto-container: 1200px;
}

.soto-product-page { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans CJK SC', 'PingFang SC', 'Microsoft YaHei', sans-serif; color: var(--soto-text); line-height: 1.7; box-sizing: border-box; margin: 0 !important; padding: 0 !important; }
.soto-product-page *, .soto-product-page *::before, .soto-product-page *::after { box-sizing: border-box; margin: 0; padding: 0; }
.soto-product-page a { text-decoration: none; color: var(--soto-primary); transition: var(--soto-transition); }
.soto-product-page a:hover { color: var(--soto-accent); }
.soto-product-page img { max-width: 100%; height: auto; display: block; }
.soto-product-page .soto-container { max-width: var(--soto-container); margin: 0 auto; padding: 0 24px; }

/* Breadcrumb bar */
.soto-pd-breadcrumb { background: var(--soto-bg); padding: 16px 0; }
.soto-pd-breadcrumb .soto-container { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--soto-text-light); }
.soto-pd-breadcrumb a { color: var(--soto-text-light); }
.soto-pd-breadcrumb a:hover { color: var(--soto-primary); }
.soto-pd-breadcrumb span { color: #cbd5e0; }
.soto-pd-breadcrumb .soto-current { color: var(--soto-primary); font-weight: 500; }

/* Product header */
.soto-pd-header { padding: 48px 0; }
.soto-pd-header-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.soto-pd-gallery { position: sticky; top: 24px; }
.soto-pd-main-img { border-radius: var(--soto-radius); overflow: hidden; box-shadow: var(--soto-shadow); margin-bottom: 16px; }
.soto-pd-main-img img { width: 100%; height: 420px; object-fit: cover; }
.soto-pd-thumbs { display: flex; gap: 12px; }
.soto-pd-thumb { width: 100px; height: 100px; border-radius: 6px; overflow: hidden; border: 2px solid var(--soto-border); cursor: pointer; transition: var(--soto-transition); }
.soto-pd-thumb:hover, .soto-pd-thumb.active { border-color: var(--soto-primary); }
.soto-pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.soto-pd-info h1 { font-size: 36px; font-weight: 700; color: var(--soto-text); line-height: 1.3; margin-bottom: 12px; }
.soto-pd-subtitle { font-size: 18px; color: var(--soto-text-light); margin-bottom: 24px; }
.soto-pd-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.soto-pd-tag { font-size: 13px; padding: 4px 14px; border-radius: 50px; background: rgba(13,115,119,0.08); color: var(--soto-primary); font-weight: 500; }
.soto-pd-desc { font-size: 16px; color: var(--soto-text-light); margin-bottom: 32px; line-height: 1.8; }
.soto-pd-quick-specs { background: var(--soto-bg); border-radius: var(--soto-radius); padding: 24px; margin-bottom: 32px; }
.soto-pd-quick-specs h3 { font-size: 16px; font-weight: 700; color: var(--soto-text); margin-bottom: 16px; }
.soto-pd-quick-specs ul { list-style: none; }
.soto-pd-quick-specs li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--soto-border); font-size: 15px; }
.soto-pd-quick-specs li:last-child { border-bottom: none; }
.soto-pd-quick-specs li span:first-child { color: var(--soto-text-light); }
.soto-pd-quick-specs li span:last-child { font-weight: 600; color: var(--soto-text); }
.soto-pd-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Section base */
.soto-pd-section { padding: 64px 0; border-top: 1px solid var(--soto-border); }
.soto-pd-section:first-of-type { border-top: none; }
.soto-pd-section h2 { font-size: 28px; font-weight: 700; color: var(--soto-text); margin-bottom: 24px; }
.soto-pd-section h3 { font-size: 20px; font-weight: 700; color: var(--soto-text); margin-bottom: 12px; }
.soto-pd-section p { font-size: 16px; color: var(--soto-text-light); margin-bottom: 16px; }
.soto-pd-section ul, .soto-pd-section ol { margin: 12px 0 20px; padding-left: 0; list-style: none; }
.soto-pd-section ul li { padding-left: 28px; position: relative; margin-bottom: 8px; font-size: 16px; color: var(--soto-text); }
.soto-pd-section ul li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--soto-primary); }
.soto-pd-section ol { counter-reset: item; padding-left: 0; }
.soto-pd-section ol li { counter-increment: item; padding-left: 36px; position: relative; margin-bottom: 12px; font-size: 16px; color: var(--soto-text); }
.soto-pd-section ol li::before { content: counter(item); position: absolute; left: 0; top: 0; width: 24px; height: 24px; background: var(--soto-primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }

/* Features grid */
.soto-pd-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.soto-pd-feature { background: var(--soto-bg); border-radius: var(--soto-radius); padding: 28px 24px; }
.soto-pd-feature-icon { width: 48px; height: 48px; background: rgba(13,115,119,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.soto-pd-feature-icon svg { width: 24px; height: 24px; fill: var(--soto-primary); }
.soto-pd-feature h3 { font-size: 18px; margin-bottom: 8px; }
.soto-pd-feature p { font-size: 15px; }

/* Spec table */
.soto-pd-spec-table { width: 100%; border-collapse: collapse; }
.soto-pd-spec-table th { background: var(--soto-primary); color: #fff; padding: 14px 20px; text-align: left; font-size: 15px; font-weight: 600; }
.soto-pd-spec-table td { padding: 12px 20px; border-bottom: 1px solid var(--soto-border); font-size: 15px; color: var(--soto-text); }
.soto-pd-spec-table tr:nth-child(even) td { background: var(--soto-bg); }
.soto-pd-spec-table .soto-spec-label { font-weight: 600; color: var(--soto-text); width: 30%; }

/* Process steps */
.soto-pd-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.soto-pd-step { text-align: center; position: relative; }
.soto-pd-step-num { width: 48px; height: 48px; background: var(--soto-primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; margin: 0 auto 16px; }
.soto-pd-step h3 { font-size: 16px; margin-bottom: 8px; }
.soto-pd-step p { font-size: 14px; }

/* Applications */
.soto-pd-apps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.soto-pd-app { background: var(--soto-bg); border-radius: 6px; padding: 16px 20px; text-align: center; font-size: 15px; font-weight: 500; color: var(--soto-text); }

/* Related products */
.soto-pd-related { padding: 64px 0; background: var(--soto-bg); }
.soto-pd-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.soto-pd-related-card { background: var(--soto-white); border: 1px solid var(--soto-border); border-radius: var(--soto-radius); overflow: hidden; transition: var(--soto-transition); }
.soto-pd-related-card:hover { box-shadow: var(--soto-shadow-hover); transform: translateY(-4px); }
.soto-pd-related-card img { width: 100%; height: 160px; object-fit: cover; }
.soto-pd-related-card-body { padding: 16px; }
.soto-pd-related-card-body h3 { font-size: 16px; font-weight: 700; color: var(--soto-text); margin-bottom: 4px; }
.soto-pd-related-card-body p { font-size: 13px; color: var(--soto-text-light); }

/* FAQ */
.soto-pd-faq-item { background: var(--soto-white); border: 1px solid var(--soto-border); border-radius: var(--soto-radius); margin-bottom: 12px; overflow: hidden; }
.soto-pd-faq-q { padding: 18px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 16px; font-weight: 600; color: var(--soto-text); }
.soto-pd-faq-q .soto-faq-icon { font-size: 20px; color: var(--soto-primary); }
.soto-pd-faq-item.active .soto-faq-q { color: var(--soto-primary); }
.soto-pd-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.soto-pd-faq-item.active .soto-pd-faq-a { max-height: 600px; padding: 0 24px 18px; }
.soto-pd-faq-a p { font-size: 15px; color: var(--soto-text-light); }

/* FAQ — native <details>/<summary> accordion */
.soto-pd-faq-item[open] { border-color: var(--soto-primary); box-shadow: 0 4px 14px rgba(13,115,119,.08); }
.soto-pd-faq-item summary { padding: 18px 24px; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--soto-text); display: flex; justify-content: space-between; align-items: center; list-style: none; transition: color .2s; }
.soto-pd-faq-item summary::-webkit-details-marker { display: none; }
.soto-pd-faq-item summary::after { content: '+'; font-size: 22px; color: var(--soto-primary); font-weight: 400; line-height: 1; }
.soto-pd-faq-item[open] summary { color: var(--soto-primary); border-bottom: 1px solid var(--soto-border); }
.soto-pd-faq-item[open] summary::after { content: '−'; }
.soto-pd-faq-answer { padding: 16px 24px 20px; font-size: 15px; color: var(--soto-text-light); line-height: 1.7; }

/* CTA */
.soto-cta-section { background: linear-gradient(135deg, var(--soto-primary), var(--soto-secondary)); padding: 48px 0 32px; text-align: center; position: relative; overflow: hidden; }
.soto-cta-section::before { content: ''; position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.15; }
.soto-cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; padding: 0 24px; }
.soto-cta-content h2 { font-size: 32px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.soto-cta-content p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.soto-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.soto-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 6px; font-size: 16px; font-weight: 600; transition: var(--soto-transition); cursor: pointer; }
.soto-btn svg { width: 20px; height: 20px; fill: currentColor; }
.soto-btn-primary { background: #fff; color: var(--soto-primary); border: 2px solid #fff; }
.soto-btn-primary:hover { background: var(--soto-accent); color: #fff; border-color: var(--soto-accent); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.soto-btn-outline { background: var(--soto-accent); color: #fff; border: 2px solid var(--soto-accent); }
.soto-btn-outline:hover { background: #e0951a; border-color: #e0951a; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,0.4); }
.soto-pd-form-contact-text a, .soto-pd-form-contact-text p { font-size: 16px; color: var(--soto-text); font-weight: 600; margin: 0; text-decoration: none; transition: color .2s; }
.soto-pd-form-contact-text a:hover { color: var(--soto-primary); text-decoration: underline; }

/* What Is Section */
.soto-pd-what-is { background: var(--soto-bg); padding: 64px 0; }
.soto-pd-what-is-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.soto-pd-what-is-text h2 { font-size: 28px; font-weight: 700; color: var(--soto-text); margin-bottom: 20px; }
.soto-pd-what-is-text p { font-size: 16px; color: var(--soto-text-light); line-height: 1.8; margin-bottom: 16px; }
.soto-pd-what-is-img { border-radius: var(--soto-radius); overflow: hidden; box-shadow: var(--soto-shadow); }
.soto-pd-what-is-img img { width: 100%; height: 340px; object-fit: cover; }

/* Numbered Benefits (01, 02, 03 style) */
.soto-pd-benefits { padding: 64px 0; }
.soto-pd-benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.soto-pd-benefit { display: flex; gap: 24px; padding: 28px; background: var(--soto-white); border: 1px solid var(--soto-border); border-radius: var(--soto-radius); transition: var(--soto-transition); }
.soto-pd-benefit:hover { box-shadow: var(--soto-shadow); border-color: transparent; }
.soto-pd-benefit-num { font-size: 48px; font-weight: 800; color: rgba(13,115,119,0.12); line-height: 1; flex-shrink: 0; font-family: 'Georgia', serif; }
.soto-pd-benefit-content h3 { font-size: 18px; font-weight: 700; color: var(--soto-text); margin-bottom: 8px; }
.soto-pd-benefit-content p { font-size: 15px; color: var(--soto-text-light); line-height: 1.7; }

/* Product Types / Models */
.soto-pd-types { padding: 64px 0; background: var(--soto-bg); }
.soto-pd-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.soto-pd-type-card { background: var(--soto-white); border-radius: var(--soto-radius); padding: 28px 24px; border: 1px solid var(--soto-border); transition: var(--soto-transition); }
.soto-pd-type-card:hover { box-shadow: var(--soto-shadow-hover); transform: translateY(-4px); border-color: transparent; }
.soto-pd-type-badge { display: inline-block; font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 4px; background: rgba(245,166,35,0.15); color: var(--soto-accent); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.soto-pd-type-card h3 { font-size: 18px; font-weight: 700; color: var(--soto-text); margin-bottom: 10px; }
.soto-pd-type-card p { font-size: 14px; color: var(--soto-text-light); margin-bottom: 16px; line-height: 1.6; }
.soto-pd-type-card ul { list-style: none; padding: 0; margin: 0; }
.soto-pd-type-card ul li { font-size: 14px; color: var(--soto-text); padding: 6px 0; padding-left: 20px; position: relative; }
.soto-pd-type-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--soto-primary); font-weight: 700; }

/* Custom Solutions / OEM */
.soto-pd-custom { padding: 64px 0; background: linear-gradient(135deg, #f0f7f8 0%, #e8f0f4 100%); }
.soto-pd-custom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.soto-pd-custom-text h2 { font-size: 28px; font-weight: 700; color: var(--soto-text); margin-bottom: 16px; }
.soto-pd-custom-text > p { font-size: 16px; color: var(--soto-text-light); margin-bottom: 24px; }
.soto-pd-custom-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.soto-pd-custom-item { display: flex; align-items: flex-start; gap: 10px; }
.soto-pd-custom-item-icon { width: 24px; height: 24px; background: var(--soto-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.soto-pd-custom-item-icon svg { width: 14px; height: 14px; fill: #fff; }
.soto-pd-custom-item span { font-size: 15px; color: var(--soto-text); font-weight: 500; }
.soto-pd-custom-img { border-radius: var(--soto-radius); overflow: hidden; box-shadow: var(--soto-shadow); }
.soto-pd-custom-img img { width: 100%; height: 360px; object-fit: cover; }

/* Factory Stats / Why Choose Us */
.soto-pd-stats { padding: 64px 0; }
.soto-pd-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.soto-pd-stat { text-align: center; padding: 32px 20px; background: var(--soto-white); border: 1px solid var(--soto-border); border-radius: var(--soto-radius); }
.soto-pd-stat-num { font-size: 40px; font-weight: 800; color: var(--soto-primary); margin-bottom: 8px; line-height: 1; }
.soto-pd-stat-num span { font-size: 20px; }
.soto-pd-stat-label { font-size: 14px; color: var(--soto-text-light); font-weight: 500; }

/* Contact Form Section */
.soto-pd-form { padding: 64px 0; background: var(--soto-bg); }
.soto-pd-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.soto-pd-form-info h2 { font-size: 28px; font-weight: 700; color: var(--soto-text); margin-bottom: 16px; }
.soto-pd-form-info > p { font-size: 16px; color: var(--soto-text-light); margin-bottom: 32px; }
.soto-pd-form-contact { margin-bottom: 24px; }
.soto-pd-form-contact-item { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: var(--soto-white); border-radius: var(--soto-radius); margin-bottom: 12px; border: 1px solid var(--soto-border); }
.soto-pd-form-contact-icon { width: 44px; height: 44px; background: rgba(13,115,119,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.soto-pd-form-contact-icon svg { width: 22px; height: 22px; fill: var(--soto-primary); }
.soto-pd-form-contact-text h4 { font-size: 13px; color: var(--soto-text-light); margin-bottom: 2px; font-weight: 500; }
.soto-pd-form-contact-text p { font-size: 16px; color: var(--soto-text); font-weight: 600; margin: 0; }
.soto-pd-form-box { background: var(--soto-white); padding: 32px; border-radius: var(--soto-radius); box-shadow: var(--soto-shadow); }
.soto-pd-form-box h3 { font-size: 22px; font-weight: 700; color: var(--soto-text); margin-bottom: 8px; }
.soto-pd-form-box > p { font-size: 14px; color: var(--soto-text-light); margin-bottom: 24px; }
.soto-pd-form-shortcode { min-height: 300px; }

/* Industry Applications Grid */
.soto-pd-industries { padding: 64px 0; background: var(--soto-bg); }
.soto-pd-industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.soto-pd-industry-card { background: var(--soto-white); border-radius: var(--soto-radius); padding: 24px 20px; text-align: center; border: 1px solid var(--soto-border); transition: var(--soto-transition); }
.soto-pd-industry-card:hover { box-shadow: var(--soto-shadow); border-color: transparent; transform: translateY(-2px); }
.soto-pd-industry-icon { width: 56px; height: 56px; background: rgba(13,115,119,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.soto-pd-industry-icon svg { width: 28px; height: 28px; fill: var(--soto-primary); }
.soto-pd-industry-card h4 { font-size: 15px; font-weight: 600; color: var(--soto-text); }

/* Section header for new sections */
.soto-pd-section-header { text-align: center; max-width: 650px; margin: 40px auto 40px; }
.soto-pd-section-label { display: inline-block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--soto-primary); background: rgba(13,115,119,0.08); padding: 5px 14px; border-radius: 50px; margin-bottom: 12px; }
.soto-pd-section-header h2 { font-size: 30px; font-weight: 700; color: var(--soto-text); margin-bottom: 10px; }
.soto-pd-section-header p { font-size: 16px; color: var(--soto-text-light); }

/* Working Principle with steps */
.soto-pd-principle-steps { display: flex; flex-direction: column; gap: 20px; }
.soto-pd-principle-step { display: flex; gap: 24px; align-items: flex-start; padding: 24px; background: var(--soto-white); border-radius: var(--soto-radius); border: 1px solid var(--soto-border); }
.soto-pd-principle-step-num { width: 40px; height: 40px; background: var(--soto-primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; flex-shrink: 0; }
.soto-pd-principle-step h3 { font-size: 17px; font-weight: 700; color: var(--soto-text); margin-bottom: 6px; }
.soto-pd-principle-step p { font-size: 15px; color: var(--soto-text-light); margin: 0; }

/* Project Gallery Grid — 3 columns fixed, 4th image centered */
.soto-pd-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.soto-pd-gallery-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: 10px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.soto-pd-gallery-grid img:hover { transform: scale(1.02); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.soto-pd-gallery-grid > *:nth-child(4):last-child { grid-column: 2; }

@media (max-width: 1024px) {
    .soto-pd-header-grid { grid-template-columns: 1fr; }
    .soto-pd-gallery { position: static; }
    .soto-pd-features { grid-template-columns: repeat(2, 1fr); }
    .soto-pd-process { grid-template-columns: repeat(2, 1fr); }
    .soto-pd-related-grid { grid-template-columns: repeat(2, 1fr); }
    .soto-pd-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .soto-pd-gallery-grid > *:nth-child(4):last-child { grid-column: auto; }
    .soto-pd-what-is-grid { grid-template-columns: 1fr; }
    .soto-pd-benefits-grid { grid-template-columns: 1fr; }
    .soto-pd-types-grid { grid-template-columns: repeat(2, 1fr); }
    .soto-pd-custom-grid { grid-template-columns: 1fr; }
    .soto-pd-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .soto-pd-form-grid { grid-template-columns: 1fr; }
    .soto-pd-industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .soto-pd-features, .soto-pd-apps, .soto-pd-process { grid-template-columns: 1fr; }
    .soto-pd-info h1 { font-size: 28px; }
    .soto-pd-related-grid { grid-template-columns: 1fr; }
    .soto-pd-gallery-grid { grid-template-columns: 1fr; }
    .soto-pd-gallery-grid > *:nth-child(4):last-child { grid-column: auto; }
    .soto-cta-buttons { flex-direction: column; align-items: center; }
    .soto-btn { width: 100%; max-width: 300px; justify-content: center; }
    .soto-pd-spec-table { font-size: 13px; }
    .soto-pd-spec-table th, .soto-pd-spec-table td { padding: 10px 12px; }
    .soto-pd-types-grid { grid-template-columns: 1fr; }
    .soto-pd-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .soto-pd-industries-grid { grid-template-columns: 1fr; }
    .soto-pd-custom-list { grid-template-columns: 1fr; }
    .soto-pd-section-header h2 { font-size: 24px; }
}

/* Fix: remove blank space around WordPress theme footer */
.soto-product-page { margin: 0 !important; padding: 0 !important; }
.soto-cta-section { padding: 48px 0 0 !important; margin-bottom: 0 !important; }
.soto-cta-content { margin-bottom: 0 !important; }
.soto-cta-buttons { margin-bottom: 0 !important; padding-bottom: 32px; }
.entry-content { margin-bottom: 0 !important; padding-bottom: 0 !important; }
.entry-footer { display: none !important; }
