/* ===== ОБЩИЕ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f4f1de;
    color: #1e1e24;
    line-height: 1.6;
}

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

/* ===== ШАПКА ===== */
.header {
    background: #1a2a3a;
    color: #fff;
    padding: 12px 0 0;
    border-bottom: 2px solid rgba(224, 122, 95, 0.3);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 8px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
    color: #e07a5f;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
}

.logo-accent {
    color: #e07a5f;
}

.logo-tagline {
    font-size: 0.75rem;
    color: #adb5bd;
    display: block;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.phone {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f4a261;
    text-decoration: none;
}

.worktime {
    font-size: 0.75rem;
    color: #ced4da;
}

.btn-download {
    background: #e07a5f;
    color: #fff;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-download:hover {
    background: #c86a50;
}

/* ===== МЕНЮ ===== */
.nav {
    background: #1a2a3a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px 0;
}

.nav ul {
    display: flex;
    justify-content: center;
    gap: 4px;
    list-style: none;
    flex-wrap: wrap;
}

.nav a {
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.85rem;
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.nav a:hover,
.nav a.active {
    background: #e07a5f;
    color: #fff;
}

/* ===== ОСНОВНОЙ КОНТЕНТ ===== */
main {
    max-width: 100%;
    padding: 40px 0 60px;
    background: #fff;
    min-height: 400px;
}

/* ===== ГЕРОЙ ===== */
.hero {
    background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 50%, #1a2a3a 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 0;
}

.hero h2 {
    font-size: 2.8rem;
    font-weight: 300;
}

.hero strong {
    font-weight: 700;
    color: #e07a5f;
}

.hero p {
    margin-top: 12px;
    font-size: 1.1rem;
    opacity: 0.8;
}

/* ===== КНОПКИ ===== */
.btn {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: #e07a5f;
    color: #fff;
}

.btn-primary:hover {
    background: #c86a50;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #e07a5f;
    color: #e07a5f;
}

.btn-outline:hover {
    background: #e07a5f;
    color: #fff;
}

/* ===== ЗАГОЛОВКИ ===== */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #1a2a3a;
}

.section-title span {
    color: #e07a5f;
}

/* ===== КАТАЛОГ ===== */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    padding: 0 20px;
}

.category-card {
    background: #fff;
    border: 1px solid #e9ecef;
    padding: 24px 16px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
    text-decoration: none;
    color: #1e1e24;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(224, 122, 95, 0.12);
    border-color: #e07a5f;
}

.category-card .icon {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
    color: #e07a5f;
}

.category-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.category-card .arrow {
    display: inline-block;
    margin-top: 8px;
    color: #e07a5f;
    font-weight: 700;
}

.category-image {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin: 0 auto 10px;
    display: block;
}

/* ===== ТОВАРЫ ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin: 20px 0 40px;
    padding: 0 20px;
}

.product-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 16px 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(224, 122, 95, 0.12);
    border-color: #e07a5f;
}

.product-card img {
    max-width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}

.product-card .no-image {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.product-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.product-card .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a2a3a;
}

.product-card .status {
    font-size: 0.8rem;
    margin: 4px 0 10px;
}

.in-stock { color: #2b8a3e; }
.out-of-stock { color: #c92a2a; }

/* ===== ПРЕИМУЩЕСТВА ===== */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 30px 0;
    padding: 0 20px;
}

.benefit-card {
    text-align: center;
    padding: 20px 16px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(224, 122, 95, 0.1);
}

.benefit-card .icon {
    font-size: 2rem;
    color: #e07a5f;
    margin-bottom: 8px;
    display: block;
}

.benefit-card h4 {
    font-size: 1rem;
    font-weight: 600;
}

.benefit-card p {
    font-size: 0.85rem;
    color: #6b6b78;
    margin-top: 4px;
}

/* ===== О КОМПАНИИ ===== */
.about-section {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 30px 24px;
    margin: 30px 20px;
}

.about-inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.about-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 16px;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.about-text strong {
    color: #e07a5f;
}

.about-features {
    display: grid;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(244, 241, 222, 0.5);
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.9rem;
}

.feature-icon {
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
    color: #e07a5f;
}

/* ===== ФОРМА ===== */
.request-form {
    background: #fff;
    border: 1px solid #e9ecef;
    padding: 30px;
    border-radius: 16px;
    max-width: 500px;
    margin: 30px auto;
}

.request-form input,
.request-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    font-size: 0.95rem;
    margin-bottom: 14px;
    background: #fafafa;
    transition: border 0.3s;
}

.request-form input:focus,
.request-form textarea:focus {
    outline: none;
    border-color: #e07a5f;
    background: #fff;
}

.request-form textarea {
    min-height: 80px;
    resize: vertical;
}

.request-form button {
    width: 100%;
    padding: 12px;
    background: #e07a5f;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.request-form button:hover {
    background: #c86a50;
}

/* ===== ФЛЭШ ===== */
.flash {
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 500;
    margin-bottom: 12px;
    text-align: center;
}

.flash.success {
    background: #d3f0df;
    color: #0b5e2e;
}

.flash.error {
    background: #fce4e4;
    color: #a01a1a;
}

/* ===== КНОПКА НАВЕРХ ===== */
#back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: #e07a5f;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(224, 122, 95, 0.3);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background: #c86a50;
    transform: translateY(-2px);
}

/* ===== ПОДВАЛ ===== */
.footer {
    background: #1a2a3a;
    color: #ced4da;
    padding: 30px 20px 20px;
    margin-top: 40px;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer a {
    color: #ced4da;
    text-decoration: none;
}

.footer a:hover {
    color: #e07a5f;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid #2c3e50;
    font-size: 0.85rem;
    color: #6c757d;
    max-width: 1200px;
    margin: 16px auto 0;
}

/* ===== СТРАНИЦА КОНТАКТОВ ===== */
.contacts-page .card {
    background: #ffffff;
    border: 1px solid rgba(224, 122, 95, 0.25);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.contacts-page .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 35px rgba(224, 122, 95, 0.12);
    border-color: #e07a5f;
}

.contacts-page h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(224, 122, 95, 0.15);
    padding-bottom: 12px;
}

.contacts-page h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 4px;
}

.contacts-page .contact-item {
    background: #f8fafc;
    padding: 16px 20px;
    border-radius: 12px;
    border-left: 4px solid #e07a5f;
    margin-bottom: 12px;
    transition: all 0.2s;
}

.contacts-page .contact-item:hover {
    background: #f1f3f5;
    border-left-color: #c86a50;
    box-shadow: 0 0 8px rgba(224, 122, 95, 0.10);
}

.contacts-page .contact-item a {
    color: #1e1e24;
    text-decoration: none;
    transition: 0.2s;
}

.contacts-page .contact-item a:hover {
    color: #e07a5f;
}

.contacts-page .grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.contacts-page .badge {
    display: inline-block;
    background: rgba(224, 122, 95, 0.10);
    padding: 2px 14px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #e07a5f;
}

.contacts-page .phone-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2a3a;
    text-decoration: none;
}

.contacts-page .phone-link:hover {
    color: #e07a5f;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header-contacts {
        justify-content: center;
    }

    .nav ul {
        gap: 2px;
    }

    .nav a {
        padding: 4px 10px;
        font-size: 0.7rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 40px 16px;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    main {
        padding: 20px 0 40px;
    }

    .about-section {
        margin: 20px 16px;
        padding: 20px 16px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.6rem;
    }

    .hero {
        padding: 30px 12px;
    }

    .catalog-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .category-card {
        padding: 14px 8px;
    }

    .category-card h3 {
        font-size: 0.9rem;
    }

    .product-card {
        padding: 10px;
    }

    .product-card img {
        height: 80px;
    }

    .request-form {
        padding: 16px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .phone {
        font-size: 0.95rem;
    }

    .nav a {
        padding: 3px 8px;
        font-size: 0.6rem;
    }
}

@media (max-width: 640px) {
    .contacts-page .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* ===== СТРАНИЦА ПАРТНЁРЫ ===== */
.partners-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.partners-description {
    text-align: center;
    font-size: 1.1rem;
    color: #6b6b78;
    margin-bottom: 40px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.partner-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(224, 122, 95, 0.12);
    border-color: #e07a5f;
}

.partner-card a {
    text-decoration: none;
    color: #1e1e24;
    display: block;
}

.partner-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1a2a3a;
}

.partner-card p {
    font-size: 0.85rem;
    color: #6b6b78;
    margin: 0;
}

.partner-card .no-link {
    display: block;
    cursor: default;
    opacity: 0.7;
}

.partner-card .no-link small {
    font-size: 0.7rem;
    color: #6b6b78;
    display: block;
    margin-top: 6px;
}

/* ===== ИКОНКИ ПАРТНЁРОВ ===== */
.partner-icon {
    font-size: 2.4rem;
    color: #e07a5f;
    margin-bottom: 10px;
    display: block;
    transition: transform 0.3s;
}

.partner-card:hover .partner-icon {
    transform: scale(1.1);
}

/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .partner-card {
        padding: 14px 10px;
    }

    .partner-card h3 {
        font-size: 0.85rem;
    }
}

/* ===== СТРАНИЦА ФИЛИАЛЫ ===== */
.branches-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.branches-description {
    text-align: center;
    font-size: 1.1rem;
    color: #6b6b78;
    margin-bottom: 40px;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.branch-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.3s;
}

.branch-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(224, 122, 95, 0.12);
    border-color: #e07a5f;
}

.branch-header {
    background: #1a2a3a;
    color: #fff;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.branch-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.branch-badge {
    background: #e07a5f;
    color: #fff;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.branch-body {
    padding: 24px;
}

.branch-body p {
    margin: 8px 0;
    font-size: 0.95rem;
    color: #1e1e24;
    display: flex;
    align-items: center;
    gap: 10px;
}

.branch-body p i {
    width: 20px;
    color: #e07a5f;
}

.branch-body a {
    color: #1a2a3a;
    text-decoration: none;
}

.branch-body a:hover {
    color: #e07a5f;
}

.branch-body .worktime {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e9ecef;
}

.branch-body .worktime p {
    margin: 4px 0;
}

.welcome-text {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(224, 122, 95, 0.08);
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    color: #e07a5f;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {
    .branches-grid {
        grid-template-columns: 1fr;
    }

    .branch-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

.logo-icon {
    height: 40px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.75rem;
}

/* ===== СТРАНИЦА НОВОСТИ (news_detail.html) ===== */

.news-detail {
    max-width: 820px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.news-detail .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 0.3rem;
    text-align: left;
    border-bottom: none;
}

.news-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    color: #6b6b78;
    font-size: 0.9rem;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0.8rem;
    margin-bottom: 1.8rem;
}

.news-meta .news-date {
    background: #f1f3f5;
    padding: 0.2rem 1rem;
    border-radius: 30px;
    font-weight: 500;
    color: #1a2a3a;
}

.news-meta .news-author {
    font-style: italic;
}

.news-image {
    margin: 1.5rem 0 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    background: #f8f9fa;
}

.news-image img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.news-image img:hover {
    transform: scale(1.01);
}

.news-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #1e1e24;
}

.news-content p {
    margin: 1.2rem 0;
}

.news-content h2, 
.news-content h3 {
    color: #1a2a3a;
    margin: 1.8rem 0 0.6rem;
}

.news-content ul, 
.news-content ol {
    padding-left: 1.5rem;
    margin: 0.8rem 0;
}

.news-content li {
    margin-bottom: 0.4rem;
}

.news-content blockquote {
    border-left: 4px solid #e07a5f;
    padding-left: 1.2rem;
    margin: 1.5rem 0;
    color: #2d2d2d;
    font-style: italic;
    background: rgba(224, 122, 95, 0.04);
    border-radius: 0 12px 12px 0;
    padding: 1rem 1.2rem;
}

.news-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 1.2rem 0;
}

.news-footer {
    margin-top: 2.5rem;
    padding-top: 1.8rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.news-footer .btn-outline {
    background: transparent;
    border: 2px solid #e07a5f;
    color: #e07a5f;
    padding: 0.5rem 1.8rem;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.news-footer .btn-outline:hover {
    background: #e07a5f;
    color: #fff;
    transform: translateY(-2px);
}

.news-footer .share-buttons {
    display: flex;
    gap: 0.6rem;
}

.news-footer .share-buttons a {
    display: inline-block;
    background: #f1f3f5;
    color: #1a2a3a;
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s;
}

.news-footer .share-buttons a:hover {
    background: #e07a5f;
    color: #fff;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {
    .news-detail {
        padding: 1.2rem 0.8rem;
    }

    .news-detail .section-title {
        font-size: 1.5rem;
    }

    .news-image img {
        max-height: 240px;
    }

    .news-content {
        font-size: 0.95rem;
    }

    .news-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .news-footer .share-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .news-detail .section-title {
        font-size: 1.2rem;
    }

    .news-meta {
        font-size: 0.8rem;
        gap: 0.8rem;
    }

    .news-content {
        font-size: 0.9rem;
    }

    .news-content blockquote {
        padding: 0.8rem;
    }
}