.section-news {
    padding: 5rem 0;
    background: #F5F5F5;
}
.section-news .container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-news .section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-news .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #6c5ce7;
    margin-bottom: 0.75rem;
}
.section-news h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: #1a1a2e;
    margin: 0 0 1rem;
}
.section-news .section-subtitle {
    font-size: 1.05rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
}
.smm-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}
.smm-news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
    border: 1px solid #eee;
    transition: transform .2s, box-shadow .2s;
}
.smm-news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.smm-news-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.smm-news-body {
    padding: 1.5rem;
}
.smm-news-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 .75rem;
    line-height: 1.3;
    color: #333;
}
.smm-news-preview {
    font-size: .9rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}
.smm-news-date {
    display: block;
    margin-top: .75rem;
    font-size: .8rem;
    color: #999;
}
.smm-news-more {
    display: inline-block;
    padding: .75rem 2rem;
    background: #6c5ce7;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: .95rem;
    transition: background .2s;
    border: none;
    cursor: pointer;
}
.smm-news-more:hover {
    background: #5a4bd1;
}
body.smm-modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    top: var(--smm-scroll-y, 0) !important;
}
.smm-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
}
.smm-modal {
    background: #fff;
    border-radius: 16px;
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    box-shadow: 0 24px 48px rgba(0,0,0,.2);
}
.smm-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,.5);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: background .2s;
}
.smm-modal-close:hover {
    background: rgba(0,0,0,.7);
}
.smm-modal-img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}
.smm-modal-body {
    padding: 2rem;
}
.smm-modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 .5rem;
    line-height: 1.3;
}
.smm-modal-date {
    display: block;
    font-size: .85rem;
    color: #999;
    margin-bottom: 1.5rem;
}
.smm-modal-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}
.smm-modal-text p { margin: 0 0 .75rem; }
.smm-modal-text h2 { font-size: 1.2rem; font-weight: 700; margin: 1.5rem 0 .5rem; color: #1a1a2e; }
.smm-modal-text h3 { font-size: 1.1rem; font-weight: 600; margin: 1.25rem 0 .5rem; color: #333; }
.smm-modal-text ul { padding-left: 1.5rem; margin: .5rem 0 1rem; }
.smm-modal-text li { margin-bottom: .25rem; }
.smm-modal-text a { color: #6c5ce7; }
.smm-modal-text strong { color: #1a1a2e; }
@media (max-width: 768px) {
    .section-news { padding: 40px 0; }
    .smm-news-grid { grid-template-columns: 1fr; }
    .smm-modal-overlay { padding: 1rem; }
    .smm-modal-body { padding: 1.25rem; }
    .smm-modal-title { font-size: 1.25rem; }
}
