/* ===============================================
   ENFOQUE CENTROAMERICANO - Main Styles
   Modern News Portal Design
   =============================================== */

/* --- CSS Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

:root {
    --primary-color: #1a5490;
    --secondary-color: #c41e3a;
    --accent-color: #f8b500;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-light: #6a6a6a;
    --border-color: #e0e0e0;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --link-hover: #0d3a6b;
    --success-color: #28a745;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 16px rgba(0,0,0,0.12);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--link-hover);
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* --- Header Styles --- */
.main-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: var(--text-dark);
    color: white;
    padding: 8px 0;
    font-size: 13px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 1;
}

.header-date {
    font-size: 12px;
    opacity: 0.9;
}

.header-main {
    padding: 20px 0;
    border-bottom: 3px solid var(--primary-color);
}

.logo {
    text-align: center;
}

.site-title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.site-title span {
    color: var(--secondary-color);
    margin-left: 5px;
}

.site-tagline {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* --- Navigation --- */
.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 5px;
}

.nav-menu li a {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
}

.nav-menu li a:hover,
.nav-menu li.active a {
    background-color: var(--primary-color);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: 0.3s;
}

/* --- Main Content --- */
.main-content {
    padding: 30px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

/* --- Article Styles --- */
.article-main {
    background-color: var(--bg-white);
    padding: 40px;
    box-shadow: var(--shadow);
    border-radius: 4px;
}

.breadcrumb {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.article-category {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border-radius: 2px;
}

.article-title {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.article-subtitle {
    font-size: 19px;
    line-height: 1.5;
    color: var(--text-gray);
    font-weight: 400;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
}

/* --- Article Meta --- */
.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
    font-size: 14px;
}

.meta-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.author strong {
    color: var(--primary-color);
}

.date, .read-time {
    color: var(--text-light);
}

.meta-right {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-gray);
    transition: all 0.3s;
}

.share-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* --- Featured Image --- */
.featured-image {
    margin: 30px 0 40px;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #e8eef3 0%, #d5dfe8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 14px;
    padding: 30px;
    text-align: center;
    border-radius: 4px;
    border: 2px dashed var(--border-color);
    line-height: 1.6;
}

figcaption {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.5;
}

/* --- Article Content --- */
.article-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
}

.lead-paragraph {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-gray);
}

.article-content p {
    margin-bottom: 20px;
}

.article-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 12px;
}

.article-content ul,
.article-content ol {
    margin: 20px 0 20px 30px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content strong {
    font-weight: 600;
    color: var(--text-dark);
}

/* --- Info Box --- */
.info-box,
.highlight-box {
    background-color: #f0f7ff;
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    margin: 30px 0;
    border-radius: 4px;
}

.info-box h3,
.highlight-box h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.info-box ul,
.highlight-box ol {
    margin-left: 20px;
}

.info-box li,
.highlight-box li {
    margin-bottom: 10px;
}

/* --- Inline Image --- */
.inline-image {
    margin: 35px 0;
}

/* --- Expert Quote --- */
.expert-quote {
    border-left: 4px solid var(--secondary-color);
    padding: 25px 30px;
    margin: 35px 0;
    background-color: #fef8f9;
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-gray);
    border-radius: 4px;
}

.expert-quote cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
}

/* --- Factors Grid --- */
.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.factor-card {
    background-color: white;
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 4px;
    transition: all 0.3s;
}

.factor-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.factor-card h4 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.factor-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

/* --- Natural Compounds List --- */
.natural-compounds li {
    background-color: #f8fdf9;
    border-left: 3px solid var(--success-color);
    padding: 12px 15px;
    margin-bottom: 12px;
    border-radius: 3px;
}

/* --- Case Study --- */
.case-study {
    background-color: #fffbf0;
    border: 2px solid var(--accent-color);
    padding: 25px;
    margin: 30px 0;
    border-radius: 4px;
}

.case-study h3 {
    color: var(--text-dark);
    font-size: 18px;
    margin-bottom: 15px;
}

.case-study p {
    margin-bottom: 12px;
    font-size: 15px;
}

.case-study em {
    font-weight: 600;
    color: var(--text-dark);
    font-style: normal;
}

/* --- Expert Opinion Box --- */
.expert-opinion {
    background-color: white;
    border: 2px solid var(--primary-color);
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.expert-header {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.expert-image-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8eef3 0%, #d5dfe8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    text-align: center;
    padding: 10px;
    border: 3px solid var(--primary-color);
    color: var(--text-gray);
    line-height: 1.3;
    flex-shrink: 0;
}

.expert-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    flex-shrink: 0;
}

.expert-info h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.expert-info p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.expert-text p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

/* --- Recommendations --- */
.recommendations {
    background-color: #f0fff4;
    border-left-color: var(--success-color);
}

/* --- CTA Section --- */
.cta-section {
    background: transparent;
    border: none;
    padding: 0;
    margin: 60px auto 40px;
    max-width: 900px;
}

.cta-split {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid #ff6b6b;
    transition: all 0.3s ease;
    position: relative;
}

.cta-split:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.cta-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #ff5252;
    color: white;
    padding: 8px 40px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.cta-left {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 30px;
    position: relative;
}

.cta-discount {
    text-align: center;
    color: white;
}

.fire-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    opacity: 0.95;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
    animation: fire-flicker 2s ease-in-out infinite;
}

@keyframes fire-flicker {
    0%, 100% {
        opacity: 0.95;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.discount-number {
    display: block;
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.discount-label {
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.95;
}

.cta-right {
    width: 65%;
    padding: 35px 40px;
}

.cta-badge {
    display: inline-block;
    background-color: #ff6b6b;
    color: white;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 18px;
}

.cta-right h3 {
    font-size: 23px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.cta-right p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: var(--text-gray);
}

.cta-note {
    font-size: 13px;
    color: #888;
    margin-bottom: 25px;
    font-style: italic;
}

.discount-highlight {
    color: #ff6b6b;
    font-weight: 800;
    font-size: 18px;
}

.cta-button {
    display: inline-block;
    background-color: #ff6b6b;
    color: white;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    animation: button-shake 3s ease-in-out infinite;
}

@keyframes button-shake {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

.cta-button:hover {
    background-color: #ff5252;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.6);
    transform: translateY(-2px) scale(1.05);
    animation: none;
}

.cta-disclaimer {
    font-size: 11px;
    margin-top: 20px;
    color: #adb5bd;
    font-style: italic;
    line-height: 1.5;
}

/* --- Article Tags --- */
.article-tags {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
    font-size: 14px;
}

.article-tags strong {
    color: var(--text-dark);
    margin-right: 10px;
}

.article-tags a {
    display: inline-block;
    background-color: var(--bg-light);
    padding: 6px 12px;
    margin: 5px 5px 5px 0;
    border-radius: 3px;
    color: var(--text-gray);
    transition: all 0.3s;
}

.article-tags a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* --- Comments Section --- */
.comments-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 3px solid var(--border-color);
}

.comments-title {
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.comments-title span {
    color: var(--text-light);
    font-size: 20px;
    font-weight: 400;
}

.comments-note {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
}

/* --- Comment Form --- */
.comment-form {
    background-color: var(--bg-light);
    padding: 25px;
    margin-bottom: 40px;
    border-radius: 4px;
}

.comment-form h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.comment-form textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
    resize: vertical;
    margin-bottom: 15px;
}

.comment-form button {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.comment-form button:hover {
    background-color: var(--link-hover);
}

/* --- Comments List --- */
.comments-list {
    margin-bottom: 30px;
}

.comment {
    background-color: white;
    border: 1px solid var(--border-color);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.comment.reply {
    margin-left: 40px;
    background-color: var(--bg-light);
    border-left: 3px solid var(--primary-color);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
}

.comment-date {
    font-size: 13px;
    color: var(--text-light);
}

.comment-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.comment-text img {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

@media screen and (max-width: 480px) {
    .comment-text img {
        max-width: 100%;
    }
}

.comment-actions {
    display: flex;
    gap: 15px;
}

.comment-actions button {
    font-size: 13px;
    color: var(--text-light);
    padding: 5px 10px;
    border-radius: 3px;
    transition: all 0.3s;
}

.comment-actions button:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.load-more-comments {
    display: block;
    margin: 0 auto;
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.load-more-comments:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* --- Sidebar --- */
.sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-section {
    background-color: var(--bg-white);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    border-radius: 4px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.sidebar-article {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-article:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.article-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
}

.sidebar-article a {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-dark);
    font-weight: 500;
}

.sidebar-article a:hover {
    color: var(--primary-color);
}

.sidebar-news {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-news:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.news-time {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.sidebar-news a {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-dark);
}

.sidebar-news a:hover {
    color: var(--primary-color);
}

/* --- Sidebar Ad --- */
.sidebar-ad {
    background-color: var(--bg-light);
    padding: 20px;
    text-align: center;
    border-radius: 4px;
}

.ad-label {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.ad-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #e8eef3 0%, #d5dfe8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 14px;
    border: 2px dashed var(--border-color);
    border-radius: 4px;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--text-dark);
    color: white;
    margin-top: 60px;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.footer-section h3 span {
    color: var(--secondary-color);
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-social a:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.footer-disclaimer {
    font-size: 12px !important;
    font-style: italic;
}

/* ===============================================
   RESPONSIVE STYLES
   =============================================== */

@media screen and (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        display: none; /* Скрываем sidebar на планшетах и мобильных */
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    body, html {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .cta-section {
        margin: 30px 0;
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .cta-split {
        flex-direction: column;
        border-radius: 8px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        border-width: 1px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .cta-ribbon {
        display: none;
    }
    
    .cta-left {
        width: 100%;
        padding: 20px 15px;
        box-sizing: border-box;
    }
    
    .fire-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 8px;
    }
    
    .discount-number {
        font-size: 56px;
        margin-bottom: 5px;
    }
    
    .discount-label {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .cta-right {
        width: 100%;
        padding: 20px 15px;
        box-sizing: border-box;
    }
    
    .cta-badge {
        padding: 5px 13px;
        font-size: 11px;
        margin-bottom: 12px;
    }
    
    .cta-right h3 {
        font-size: 19px;
        margin-bottom: 12px;
    }
    
    .cta-right p {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .cta-note {
        font-size: 12px;
        margin-bottom: 18px;
    }
    
    .discount-highlight {
        font-size: 17px;
    }
    
    .cta-button {
        width: 100%;
        padding: 15px 25px;
        font-size: 17px;
        margin-top: 15px;
        box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    }
    
    .site-title {
        font-size: 32px;
        word-break: break-word;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .article-main {
        padding: 25px 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .article-title {
        font-size: 24px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .article-subtitle {
        font-size: 16px;
        word-wrap: break-word;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .article-content {
        font-size: 16px;
        overflow-x: hidden;
    }
    
    .article-content h2 {
        font-size: 22px;
        word-wrap: break-word;
    }
    
    .article-content table,
    .article-content pre,
    .article-content code {
        max-width: 100%;
        overflow-x: auto;
    }
    
    .comment.reply {
        margin-left: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .factors-grid {
        grid-template-columns: 1fr;
    }
    
    .expert-header {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-section {
        padding: 25px 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .cta-content h3 {
        font-size: 20px;
        word-wrap: break-word;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    figure, .inline-image, .featured-image {
        max-width: 100%;
        overflow: hidden;
    }
    
    img {
        max-width: 100% !important;
        height: auto !important;
        width: 100% !important;
    }
}

@media screen and (max-width: 480px) {
    .site-title {
        font-size: 22px;
        padding: 0 10px;
    }
    
    .site-tagline {
        font-size: 10px;
        padding: 0 10px;
    }
    
    .article-main {
        padding: 15px 10px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .article-title {
        font-size: 20px;
        line-height: 1.3;
    }
    
    .article-content {
        font-size: 15px;
    }
    
    .meta-left {
        flex-direction: column;
        gap: 8px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .container {
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .cta-section {
        margin: 30px 0;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 14px 30px;
    }
}

/* ===============================================
   PRINT STYLES
   =============================================== */

@media print {
    .header-top,
    .main-nav,
    .sidebar,
    .comments-section,
    .cta-section,
    .main-footer,
    .share-btn {
        display: none;
    }
    
    .article-main {
        box-shadow: none;
        padding: 0;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
}