/* ============================================================
   SINGLE ARTICLE STYLES — ALP96.RU (v3.0 BULLETPROOF MODERN)
   ============================================================ */

/* Reading progress bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #16a34a, #0284c7, #3b82f6);
    z-index: 99999;
    transition: width 0.1s linear;
}

/* Base Page Wrapper */
.single-page {
    position: relative;
    padding: 70px 0 110px;
    background: #f8fafc;
    overflow-x: hidden;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.single-hero {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    color: #fff;
    background: #0b1420;
}

.single-hero__image {
    position: absolute;
    inset: 0;
}

.single-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    filter: brightness(0.85);
}

.single-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,20,32,0.35) 0%, rgba(11,20,32,0.72) 50%, rgba(11,20,32,0.96) 100%);
}

.single-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.single-hero__content {
    max-width: 980px;
    padding-bottom: 60px;
}

/* Breadcrumbs in Hero */
.single-hero .breadcrumbs {
    margin-bottom: 22px;
}

.single-hero .breadcrumbs__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.85);
}

.single-hero .breadcrumbs a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.single-hero .breadcrumbs a:hover {
    color: #38bdf8;
}

.single-hero .breadcrumbs__separator {
    color: rgba(255, 255, 255, 0.45);
}

/* Badges */
.single-badges-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.single-category {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.single-badge-verified {
    display: inline-flex;
    align-items: center;
    padding: 6px 15px;
    border-radius: 50px;
    background: rgba(22, 163, 74, 0.32);
    border: 1px solid rgba(74, 222, 128, 0.45);
    color: #86efac;
    font-size: 12.5px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.single-badge-safety {
    display: inline-flex;
    align-items: center;
    padding: 6px 15px;
    border-radius: 50px;
    background: rgba(2, 132, 199, 0.3);
    border: 1px solid rgba(56, 189, 248, 0.45);
    color: #bae6fd;
    font-size: 12.5px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.single-title {
    font-size: 44px;
    line-height: 1.16;
    margin: 0 0 24px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
    word-break: break-word;
    overflow-wrap: break-word;
}

.single-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    color: rgba(255,255,255,0.85);
    font-size: 14.5px;
}

.single-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ============================================================
   GRID LAYOUT — BULLETPROOF ANTI-OVERFLOW
   ============================================================ */
.single-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 40px;
    align-items: flex-start;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.single-sidebar {
    position: sticky;
    top: 90px;
    min-width: 0;
}

.toc {
    background: #fff;
    border-radius: 22px;
    padding: 28px 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    border: 1px solid #e2e8f0;
    box-sizing: border-box;
}

.toc-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.toc-icon {
    font-size: 18px;
}

.toc h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}

#toc-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#toc-list a {
    color: #475569;
    text-decoration: none;
    transition: 0.2s ease;
    font-size: 14px;
    line-height: 1.45;
    padding: 6px 10px;
    border-radius: 8px;
    display: block;
}

#toc-list a:hover {
    color: #0284c7;
    background: #f0f9ff;
    transform: translateX(3px);
}

#toc-list a.active {
    color: #0284c7;
    font-weight: 700;
    background: #e0f2fe;
    border-left: 3px solid #0284c7;
}

/* ============================================================
   ARTICLE CONTENT — STRICT CONTAINMENT & FIX VISIBILITY
   ============================================================ */
.single-content {
    background: #fff;
    border-radius: 28px;
    padding: 55px 50px;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.05);
    border: 1px solid #e2e8f0;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* CRITICAL VISIBILITY FIX: Neutralize theme scroll animations & prevent any element from fading out */
.single-content > *,
.single-content,
.single-sidebar,
.toc,
.author-box,
.modern-author-box,
.single-share,
.single-nav,
.single-cta,
.modern-cta,
.single-related-services,
.single-page .fade-in,
.single-page .fade-in.visible,
.single-page .stagger > * {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.single-content > :first-child {
    margin-top: 0;
}

.single-content > :last-child {
    margin-bottom: 0;
}

/* Headings */
.single-content h2 {
    position: relative;
    margin: 48px 0 22px;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 800;
    color: #0f172a;
    padding-left: 20px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.single-content h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 5px;
    border-radius: 4px;
    background: linear-gradient(180deg, #16a34a, #0284c7);
}

.single-content h3 {
    margin: 36px 0 16px;
    font-size: 22px;
    color: #1e293b;
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: break-word;
    word-break: break-word;
}

.single-content h4 {
    margin: 28px 0 14px;
    font-size: 19px;
    color: #334155;
    font-weight: 700;
}

.single-content p {
    margin: 0 0 20px;
    color: #334155;
    font-size: 17px;
    line-height: 1.85;
}

.single-content strong {
    color: #0f172a;
    font-weight: 700;
}

.single-content a {
    color: #0284c7;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: 0.2s;
}

.single-content a:hover {
    color: #0369a1;
}

.single-content ul,
.single-content ol {
    margin: 20px 0 28px 24px;
    padding: 0;
}

.single-content li {
    margin-bottom: 10px;
    color: #334155;
    line-height: 1.8;
    font-size: 17px;
}

.single-content ul li::marker {
    color: #16a34a;
}

.single-content blockquote {
    position: relative;
    margin: 35px 0;
    padding: 28px 32px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f0fdf4 0%, #f8fafc 100%);
    border-left: 5px solid #16a34a;
    font-size: 18px;
    line-height: 1.8;
    color: #1e293b;
    font-style: italic;
    box-sizing: border-box;
}

.single-content blockquote::before {
    content: "“";
    position: absolute;
    left: 20px;
    top: -12px;
    font-size: 70px;
    color: rgba(22, 163, 74, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    margin: 32px 0;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    display: block;
    box-sizing: border-box;
}

.single-content figure {
    margin: 35px 0;
    max-width: 100%;
}

.single-content figcaption {
    margin-top: 10px;
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

/* ============================================================
   TABLE RESPONSIVENESS & PRE SCHEMA
   ============================================================ */
.table-responsive {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 32px 0;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03);
    box-sizing: border-box;
}

.table-responsive table,
.single-content table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    margin: 0;
    background: #fff;
    font-size: 15px;
}

.table-responsive th,
.single-content th {
    background: #0f172a;
    color: #fff;
    padding: 15px 18px;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid #334155;
    font-size: 14.5px;
    white-space: nowrap;
}

.table-responsive td,
.single-content td {
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    line-height: 1.6;
}

.table-responsive tr:last-child td,
.single-content tr:last-child td {
    border-bottom: none;
}

.table-responsive tr:nth-child(even) td {
    background: #f8fafc;
}

.table-responsive tr:hover td {
    background: #f0fdf4;
}

/* Schema ASCII block */
pre.article-schema,
.single-content pre {
    background: #0f172a;
    color: #38bdf8;
    padding: 24px;
    border-radius: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 32px 0;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 13.5px;
    line-height: 1.6;
    max-width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(56, 189, 248, 0.25);
    white-space: pre;
}

pre.article-schema code,
.single-content pre code {
    background: none !important;
    color: inherit !important;
    padding: 0 !important;
    font-size: inherit !important;
    white-space: inherit !important;
}

.single-content code {
    background: #f1f5f9;
    color: #0284c7;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.9em;
    font-family: ui-monospace, SFMono-Regular, monospace;
}

.single-content hr {
    margin: 48px 0;
    border: none;
    height: 1px;
    background: #e2e8f0;
}

/* ============================================================
   RELATED SERVICES
   ============================================================ */
.single-related-services {
    margin: 48px 0 35px;
    padding: 28px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-sizing: border-box;
}

.related-services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    flex-wrap: wrap;
    gap: 10px;
}

.related-badge {
    display: inline-flex;
    padding: 4px 12px;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 12px;
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.related-all-link {
    font-size: 14px;
    font-weight: 600;
    color: #0284c7;
    text-decoration: none !important;
}

.related-all-link:hover {
    color: #0369a1;
    text-decoration: underline !important;
}

.related-title {
    margin: 0 0 18px !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.blog-related-service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    text-decoration: none !important;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.blog-related-service-card:hover {
    border-color: #38bdf8;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.12);
}

.related-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 12px;
}

.related-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}

.related-card-price {
    font-size: 13.5px;
    font-weight: 700;
    color: #16a34a;
}

.related-card-btn {
    font-size: 13px;
    font-weight: 600;
    color: #0284c7;
}

/* ============================================================
   SHARE BLOCK
   ============================================================ */
.single-share {
    margin-top: 48px;
    padding-top: 35px;
    border-top: 1px solid #e2e8f0;
}

.share-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.share-icon {
    font-size: 20px;
}

.single-share h3 {
    margin: 0;
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.share-tg {
    background: #e0f2fe;
    color: #0369a1 !important;
}

.share-tg:hover {
    background: #0284c7;
    color: #fff !important;
    transform: translateY(-2px);
}

.share-vk {
    background: #eef2ff;
    color: #4338ca !important;
}

.share-vk:hover {
    background: #4f46e5;
    color: #fff !important;
    transform: translateY(-2px);
}

.share-wa {
    background: #dcfce7;
    color: #15803d !important;
}

.share-wa:hover {
    background: #16a34a;
    color: #fff !important;
    transform: translateY(-2px);
}

.share-copy {
    background: #f1f5f9;
    color: #334155 !important;
}

.share-copy:hover {
    background: #e2e8f0;
    color: #0f172a !important;
    transform: translateY(-2px);
}

/* ============================================================
   MODERN AUTHOR BOX (E-E-A-T)
   ============================================================ */
.modern-author-box {
    margin-top: 48px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px 30px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdf4 100%);
    border: 1px solid #dcfce7;
    box-sizing: border-box;
}

.author-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.author-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #16a34a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.25);
}

.author-badge-check {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0284c7;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.author-details {
    flex: 1;
    min-width: 0;
}

.author-header-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.author-role {
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #16a34a;
}

.author-verify {
    font-size: 12.5px;
    color: #0369a1;
    font-weight: 600;
    background: #e0f2fe;
    padding: 2px 10px;
    border-radius: 20px;
}

.author-name {
    margin: 0 0 10px !important;
    font-size: 21px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
}

.author-bio {
    margin: 0 0 18px !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #475569 !important;
}

.author-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.stat-pill {
    background: #fff;
    padding: 8px 14px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: inline-flex;
    flex-direction: column;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}

.stat-val {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.stat-lbl {
    font-size: 11.5px;
    color: #64748b;
}

.author-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border-radius: 50px;
    background: #16a34a;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.25);
}

.author-cta-btn:hover {
    background: #15803d;
    transform: translateY(-2px);
    color: #fff !important;
}

/* ============================================================
   PREV / NEXT NAVIGATION
   ============================================================ */
.single-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 60px 0 40px;
    width: 100%;
    box-sizing: border-box;
}

.single-prev,
.single-next {
    display: block;
    text-decoration: none !important;
    background: #fff;
    padding: 26px 28px;
    border-radius: 20px;
    color: #0f172a;
    transition: all 0.25s ease;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.04);
    border: 1px solid #e2e8f0;
    box-sizing: border-box;
}

.single-prev:hover,
.single-next:hover {
    transform: translateY(-4px);
    border-color: #38bdf8;
    box-shadow: 0 15px 35px rgba(2, 132, 199, 0.1);
}

.single-prev span,
.single-next span {
    display: block;
    margin-bottom: 8px;
    color: #0284c7;
    font-size: 13px;
    font-weight: 600;
}

.single-prev strong,
.single-next strong {
    display: block;
    font-size: 17px;
    line-height: 1.4;
    color: #0f172a;
    font-weight: 700;
}

/* ============================================================
   CTA BLOCK — INDUSTRIAL MOUNTAINEERING
   ============================================================ */
.single-cta,
.modern-cta {
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    padding: 60px 48px;
    border-radius: 30px;
    background: linear-gradient(135deg, #0b1420 0%, #0f233a 50%, #082f49 100%);
    color: #fff;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(11, 20, 32, 0.25);
    border: 1px solid rgba(56, 189, 248, 0.2);
    box-sizing: border-box;
    width: 100%;
    margin-top: 30px;
}

.cta-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.cta-glow-1 {
    width: 320px;
    height: 320px;
    background: rgba(22, 163, 74, 0.22);
    top: -100px;
    right: -100px;
}

.cta-glow-2 {
    width: 280px;
    height: 280px;
    background: rgba(2, 132, 199, 0.25);
    bottom: -80px;
    left: -80px;
}

.cta-content-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 18px;
    border-radius: 50px;
    background: rgba(22, 163, 74, 0.25);
    border: 1px solid rgba(74, 222, 128, 0.4);
    color: #86efac;
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 22px;
}

.cta-title {
    color: #fff !important;
    font-size: 36px !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
    margin: 0 0 16px !important;
    letter-spacing: -0.5px;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 17px !important;
    line-height: 1.65 !important;
    margin: 0 auto 32px !important;
    max-width: 680px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 15px 32px;
    border-radius: 50px;
    background: #16a34a;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 15.5px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.35);
    transition: all 0.2s ease;
}

.cta-btn-primary:hover {
    background: #15803d;
    transform: translateY(-2px);
    color: #fff !important;
}

.cta-btn-phone {
    display: inline-flex;
    align-items: center;
    padding: 15px 28px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 15.5px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.cta-btn-phone:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
    color: #fff !important;
}

.cta-btn-email {
    display: inline-flex;
    align-items: center;
    padding: 15px 26px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88) !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.cta-btn-email:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff !important;
}

.cta-trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================ */
@media (max-width: 1200px) {
    .single-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .single-sidebar {
        position: static;
        order: -1;
    }
    .single-content {
        padding: 40px 32px;
        border-radius: 24px;
    }
}

@media (max-width: 992px) {
    .single-hero {
        min-height: 420px;
    }
    .single-title {
        font-size: 34px;
    }
    .single-hero__content {
        padding-bottom: 45px;
    }
    .single-content h2 {
        font-size: 26px;
        padding-left: 16px;
    }
    .single-content h3 {
        font-size: 21px;
    }
    .cta-title {
        font-size: 30px !important;
    }
}

@media (max-width: 768px) {
    .single-page {
        padding: 35px 0 60px;
    }
    .single-hero {
        min-height: 360px;
    }
    .single-hero__content {
        padding-bottom: 30px;
    }
    .single-title {
        font-size: 25px;
        line-height: 1.25;
    }
    .single-meta {
        gap: 14px;
        font-size: 13px;
    }
    .single-content {
        padding: 24px 18px;
        border-radius: 20px;
    }
    .single-content h2 {
        font-size: 22px;
        margin: 35px 0 16px;
        padding-left: 12px;
    }
    .single-content p {
        font-size: 16px;
        line-height: 1.8;
    }
    .single-content li {
        font-size: 16px;
    }
    .toc {
        padding: 20px 18px;
        border-radius: 18px;
    }
    .modern-author-box {
        flex-direction: column;
        padding: 24px 18px;
        gap: 16px;
        text-align: center;
    }
    .author-avatar-wrap {
        margin: 0 auto;
    }
    .author-header-row {
        justify-content: center;
    }
    .author-stats {
        justify-content: center;
    }
    .stat-pill {
        flex: 1 1 calc(50% - 10px);
        min-width: 110px;
    }
    .single-nav {
        grid-template-columns: 1fr;
        gap: 14px;
        margin: 40px 0;
    }
    .modern-cta {
        padding: 36px 20px;
        border-radius: 22px;
    }
    .cta-title {
        font-size: 24px !important;
    }
    .cta-desc {
        font-size: 15px !important;
    }
    .cta-actions {
        flex-direction: column;
    }
    .cta-btn-primary,
    .cta-btn-phone,
    .cta-btn-email {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
    .cta-trust-items {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px !important;
    }
    .single-content {
        padding: 20px 14px;
        border-radius: 16px;
    }
    .single-title {
        font-size: 22px;
    }
    .single-badges-row {
        gap: 6px;
    }
    .single-category,
    .single-badge-verified,
    .single-badge-safety {
        font-size: 11.5px;
        padding: 5px 12px;
    }
    .stat-pill {
        flex: 1 1 100%;
    }
}
