/* Автогенерация: extract-seo-reports.mjs — стили отчётов в оболочке сайта.
   Стили примера (жёлтый блок): seo-report-portfolio.css — не перезаписывать здесь. */

.seo-report-root {
    position: relative;
    isolation: isolate;
    max-width: 100%;
}
.audit-embed-main--seo-report {
    background: #e2e8f0;
    padding: 0;
}
.audit-embed-main--seo-report .seo-report-root {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px 28px !important;
    background-color: #f5f9ff !important;
    box-sizing: border-box;
}
.audit-embed-main--seo-report .seo-report-root .container {
    max-width: none;
    margin: 0;
    padding: 0 !important;
    background: transparent;
}
.audit-embed-main .seo-report-root .quick-links.fixed {
    z-index: 40;
}
@media (min-width: 992px) {
    .audit-embed-main .seo-report-root .quick-links.fixed {
        top: 72px;
    }
}
 .seo-report-root{
    --primary: #1e3054;
    --secondary: #4879e9;
    --accent: #EA4335;
    --dark: #2D3748;
    --gray: #718096;
    --light: #F7FAFC;
    --border-radius: 12px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
} .seo-report-root *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} .seo-report-root{
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #f5f9ff;
    padding: 15px;
    scroll-behavior: smooth;
} .seo-report-root li{
  margin-left: 30px;  
} .seo-report-root .container{
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
} .seo-report-root .preloader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
} .seo-report-root .preloader.hidden{
    opacity: 0;
    pointer-events: none;
} .seo-report-root .loader{
    width: 80px;
    height: 80px;
    border: 8px solid #f3f3f3;
    border-top: 8px solid var(--primary);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    margin-bottom: 20px;
} .seo-report-root .loader-text{
    font-size: 1.2rem;
    color: var(--dark);
    margin-top: 15px;
    text-align: center;
    max-width: 80%;
} .seo-report-root .project-name{
    font-weight: bold;
    color: var(--primary);
    font-size: 1.4rem;
    margin: 5px 0;
} .seo-report-root .period{
    color: var(--gray);
    font-size: 1.1rem;
} @keyframes spin{
    0% { transform: rotate(0deg); } 100%{ transform: rotate(360deg); } .seo-report-root }

.quick-links{
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 15px;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    transition: var(--transition);
    margin-bottom: 4px;
} @media (min-width: 992px){
    .quick-links.fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        border-radius: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 10px 15px;
        margin-bottom: 0;
        max-width: 100%;
        animation: slideDown 0.3s ease-out;
    } .seo-report-root{
        padding-top: 80px;
    } .seo-report-root }

@media (max-width: 991px){
    body {
        padding-top: 15px !important;
    } .seo-report-root }

@keyframes slideDown{
    from {
        transform: translateY(-100%);
        opacity: 0;
    } to{
        transform: translateY(0);
        opacity: 1;
    } .seo-report-root }

.quick-link{
    padding: 8px 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
} .seo-report-root .quick-link:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
} .seo-report-root header{
    text-align: center;
    margin-bottom: 30px;
    padding: 15px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
} .seo-report-root h1{
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 8px;
} .seo-report-root .subtitle{
    color: var(--gray);
    font-size: 1rem;
} .seo-report-root .contact-info{
    background: white;
    border-radius: var(--border-radius);
    padding: 12px;
    margin-bottom: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    font-size: 0.9rem;
} .seo-report-root .report-section{
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    overflow: hidden;
} .seo-report-root .section-header{
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 600;
} .seo-report-root .section-content{
    padding: 20px;
} .seo-report-root .chart-container{
    height: 300px;
    margin: 30px 0;
    position: relative;
} .seo-report-root .mobile-chart-container{
    height: 400px;
    margin: 30px 0;
} .seo-report-root .conclusion{
    background-color: var(--light);
    padding: 12px 20px;
    border-top: 1px solid #e9ecef;
    font-size: 1.2rem;
    line-height: 1.5;
} .seo-report-root .conclusion strong, .seo-report-root .conclusion b{
    color: inherit;
    font-weight: 700;
} .seo-report-root .stats-table{
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 0.85rem;
} .seo-report-root .stats-table th{
    background: var(--light);
    padding: 12px 8px;
    text-align: left;
    font-weight: 600;
} .seo-report-root .stats-table td{
    padding: 12px 8px;
    border-bottom: 1px solid #e9ecef;
} .seo-report-root .positive{
    color: #2ecc71;
    font-weight: 600;
} .seo-report-root .negative{
    color: #e74c3c;
    font-weight: 600;
} .seo-report-root .delta{
    font-size: 0.75rem;
    margin-left: 4px;
    padding: 2px 4px;
    border-radius: 3px;
} .seo-report-root .positive .delta{
    background-color: rgba(46, 204, 113, 0.1);
} .seo-report-root .negative .delta{
    background-color: rgba(231, 76, 60, 0.1);
} .seo-report-root .highlight-row{
    background-color: rgba(0, 0, 0, 0.02);
} .seo-report-root .percent-cell{
    font-weight: 500;
} .seo-report-root .issues-list{
    margin: 15px 0;
    padding-left: 18px;
    font-size: 1.1rem;
} .seo-report-root .issues-list li{
    margin-bottom: 8px;
} .seo-report-root .plan-list{
    margin: 15px 0;
    padding-left: 18px;
    font-size: 1.1rem;
} .seo-report-root .plan-list li{
    margin-bottom: 8px;
} .seo-report-root .data-summary{
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
} .seo-report-root .data-item{
    flex: 1 1 150px;
    min-width: 120px;
    text-align: center;
    padding: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
} .seo-report-root .data-value{
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
} .seo-report-root .data-label{
    font-size: 0.8rem;
    color: var(--gray);
} .seo-report-root .data-change{
    font-size: 0.75rem;
    margin-top: 3px;
} .seo-report-root .data-change.positive{
    color: #2ecc71;
} .seo-report-root .data-change.negative{
    color: #e74c3c;
} .seo-report-root .screenshot-btn{
    display: inline-block;
    padding: 10px 15px;
    background: linear-gradient(135deg, #284f8f, #3874f9);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    margin: 5px 0;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
} .seo-report-root .screenshot-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
} .seo-report-root .screenshot-btn i{
    margin-right: 8px;
} .seo-report-root .btn-container{
    margin: 15px 0;
} @media (min-width: 768px){
    body {
        padding: 20px;
    } .seo-report-root h1{
        font-size: 2rem;
    } .seo-report-root .subtitle{
        font-size: 1.1rem;
    } .seo-report-root .contact-info{
        font-size: 1rem;
        padding: 15px;
    } .seo-report-root .section-header{
        font-size: 1.2rem;
        padding: 18px 25px;
    } .seo-report-root .section-content{
        padding: 25px;
    } .seo-report-root .chart-container{
        height: 400px;
    } .seo-report-root .stats-table{
        font-size: 0.9rem;
    } .seo-report-root .stats-table th, .seo-report-root .stats-table td{
        padding: 15px 10px;
    } .seo-report-root .data-summary{
        padding: 20px;
    } .seo-report-root .data-item{
        flex: 1;
    } .seo-report-root .quick-links{
        padding: 20px;
    } .seo-report-root .quick-link{
        font-size: 1rem;
        padding: 10px 20px;
    } .seo-report-root .screenshot-btn{
        padding: 12px 20px;
        font-size: 1rem;
    } .seo-report-root }

@media (max-width: 480px){
    .stats-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    } .seo-report-root .mobile-chart-container{
        height: 500px;
    } .seo-report-root }

.back-to-top{
    position: fixed;
    bottom: 0;
    right: 30px;
    z-index: 9999;
    padding: 15px 25px;
    background: linear-gradient(135deg, #305095, #000000);
    color: white !important; /* Белый текст */
    border-radius: 6px 6px 0 0;
    text-decoration: none !important; /* Убираем подчеркивание */
    font-weight: 500;
    font-size: 16px;
    border: none;
    cursor: pointer;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    visibility: hidden;
    white-space: nowrap;
    overflow: hidden;
    height: 60px;
    width: auto;
    min-width: 180px;
} .seo-report-root .back-to-top.visible{
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
} .seo-report-root .back-to-top:hover{
    background: linear-gradient(135deg, #34A853, #4285F4);
    height: 70px;
    text-decoration: none !important; /* Убираем подчеркивание при наведении */
    color: white !important; /* Белый текст при наведении */
} .seo-report-root .back-to-top i{
    font-size: 18px;
    transition: transform 0.3s ease;
    color: white !important; /* Белая иконка */
} .seo-report-root .back-to-top:hover i{
    transform: translateY(-3px);
    color: white !important; /* Белая иконка при наведении */
} @media (max-width: 991px){
    .back-to-top {
        display: none !important;
    } .seo-report-root }

.phone-link{
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 18px;
    font-weight: 500;
} .seo-report-root .phone-link:hover{
    color: #0066cc;
    text-decoration: underline;
} .seo-report-root .comparison-container{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 25px 0;
} .seo-report-root .comparison-column{
    flex: 1 1 45%;
    min-width: 300px;
} .seo-report-root .comparison-list{
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 15px;
} .seo-report-root .comparison-item{
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
} .seo-report-root .comparison-item.highlighted{
    background-color: rgba(66, 133, 244, 0.1);
    border-radius: 6px;
    padding: 8px 12px;
    margin: 8px -12px;
    border-bottom: none;
} .seo-report-root .comparison-item:last-child{
    border-bottom: none;
    margin-bottom: 0;
} .seo-report-root .comparison-site{
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--dark);
} .seo-report-root .comparison-bar-container{
    display: flex;
    align-items: center;
    gap: 10px;
} .seo-report-root .comparison-bar{
    height: 20px;
    background: linear-gradient(90deg, #636363, #cdcdcd);
    border-radius: 4px;
    transition: width 0.5s ease;
    position: relative;
} .seo-report-root .comparison-item.highlighted .comparison-bar{
    background: linear-gradient(90deg, var(--accent), #FBBC05);
} .seo-report-root .comparison-value{
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
    min-width: 60px;
    text-align: right;
} @media (max-width: 768px){
    .comparison-column {
        flex: 1 1 100%;
    } .seo-report-root .comparison-bar{
        height: 16px;
    } .seo-report-root .comparison-site{
        font-size: 0.85rem;
    } .seo-report-root .comparison-value{
        font-size: 0.8rem;
    } .seo-report-root }

.chart-legend{
    display: flex;
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 15px;
} .seo-report-root .chart-legend-item{
    display: flex;
    align-items: center;
    font-size: 14px;
} .seo-report-root .chart-legend-color{
    width: 15px;
    height: 15px;
    border-radius: 3px;
    margin-right: 8px;
} .seo-report-root .entry-pages-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
} .seo-report-root .entry-pages-card{
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid;
    overflow: hidden;
    position: relative;
} .seo-report-root .entry-pages-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
} .seo-report-root .entry-pages-card:nth-child(1){
    border-color: #4285F4;
    background: linear-gradient(to right, rgba(66, 133, 244, 0.05), white);
} .seo-report-root .entry-pages-card:nth-child(2){
    border-color: #34A853;
    background: linear-gradient(to right, rgba(52, 168, 83, 0.05), white);
} .seo-report-root .entry-pages-card:nth-child(3){
    border-color: #EA4335;
    background: linear-gradient(to right, rgba(234, 67, 53, 0.05), white);
} .seo-report-root .entry-pages-title{
    margin: 0 0 15px 0;
    color: #2D3748;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
} .seo-report-root .entry-pages-list{
    padding-left: 25px;
    margin: 0;
    list-style-type: none;
} .seo-report-root .entry-pages-list li{
    position: relative;
    padding: 8px 0;
    color: #4A5568;
    line-height: 1.5;
    transition: all 0.2s ease;
} .seo-report-root .entry-pages-list li:hover{
    color: #2D3748;
    transform: translateX(5px);
} .seo-report-root .entry-pages-list li:before{
    content: "";
    position: absolute;
    left: -25px;
    top: 15px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
} .seo-report-root .entry-pages-card:nth-child(1) li:before{
    background: #4285F4;
} .seo-report-root .entry-pages-card:nth-child(2) li:before{
    background: #34A853;
} .seo-report-root .entry-pages-card:nth-child(3) li:before{
    background: #EA4335;
} .seo-report-root .entry-pages-list strong{
    color: #2D3748;
    font-weight: 700;
} .seo-report-root .entry-icon{
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    margin-right: 5px;
} .seo-report-root .icon-1{ background: #4285F4; } .seo-report-root .icon-2{ background: #34A853; } .seo-report-root .icon-3{ background: #EA4335; } @keyframes fadeInUp{
    from { opacity: 0; transform: translateY(20px); } to{ opacity: 1; transform: translateY(0); } .seo-report-root }

.entry-pages-card{
    animation: fadeInUp 0.6s ease forwards;
} .seo-report-root .entry-pages-card:nth-child(1){ animation-delay: 0.1s; } .seo-report-root .entry-pages-card:nth-child(2){ animation-delay: 0.2s; } .seo-report-root .entry-pages-card:nth-child(3){ animation-delay: 0.3s; } .seo-report-root .conclusion-highlights{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
} .seo-report-root .conclusion-card{
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-left: 4px solid;
    transition: all 0.3s ease;
} .seo-report-root .conclusion-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
} .seo-report-root .conclusion-card.results{
    border-color: #4285F4;
    background: linear-gradient(to right, rgba(66, 133, 244, 0.05), white);
} .seo-report-root .conclusion-card.recommendations{
    border-color: #34A853;
    background: linear-gradient(to right, rgba(52, 168, 83, 0.05), white);
} .seo-report-root .conclusion-card.metrics{
    border-color: #EA4335;
    background: linear-gradient(to right, rgba(234, 67, 53, 0.05), white);
} .seo-report-root .conclusion-card-title{
    margin: 0 0 15px 0;
    color: #2D3748;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
} .seo-report-root .conclusion-icon{
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
} .seo-report-root .icon-results{ background: #4285F4; } .seo-report-root .icon-recommend{ background: #34A853; } .seo-report-root .icon-metrics{ background: #EA4335; } .seo-report-root .conclusion-list{
    padding-left: 20px;
    margin: 0;
} .seo-report-root .conclusion-list li{
    position: relative;
    padding: 8px 0;
    color: #4A5568;
    line-height: 1.5;
} .seo-report-root .conclusion-list li strong{
    color: #2D3748;
    font-weight: 600;
} .seo-report-root .metric-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
} .seo-report-root .metric-item{
    text-align: center;
    padding: 10px;
    background: rgba(255,255,255,0.7);
    border-radius: 8px;
} .seo-report-root .metric-value{
    font-size: 1.3rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 5px;
} .seo-report-root .metric-label{
    font-size: 0.85rem;
    color: #718096;
} .seo-report-root /* Стиль для ссылок в отчете */
a:not(.quick-link):not(.screenshot-btn):not(.phone-link){
    color: #4285F4;
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer !important;
} .seo-report-root a:not(.quick-link):not(.screenshot-btn):not(.phone-link):hover{
    color: #EA4335;
    text-decoration: underline;
} .seo-report-root /* Стиль для курсора при наведении на ссылки */
a:hover{
    cursor: pointer !important;
} .seo-report-root .analytics-block{
        font-family: Arial, sans-serif;
        max-width: 1200px;
        margin: 20px auto;
    } .seo-report-root .analytics-block h3{
        margin-top: 40px;
        color: #333;
        font-size: 1.5em;
    } .seo-report-root .analytics-block h3 i{
        margin-right: 10px;
        color: #4a6ea9;
    } .seo-report-root .table-responsive{
        margin-top: 20px;
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    } .seo-report-root .data-table{
        width: 100%;
        border-collapse: collapse;
        font-size: 0.95em;
    } .seo-report-root .data-table thead tr{
        background-color: #f8f9fa;
    } .seo-report-root .data-table th{
        padding: 12px 15px;
        text-align: left;
        border-bottom: 2px solid #eee;
        font-weight: 600;
        color: #555;
    } .seo-report-root .data-table th:not(:first-child){
        text-align: right;
    } .seo-report-root .data-table td{
        padding: 12px 15px;
        border-bottom: 1px solid #eee;
        color: #444;
    } .seo-report-root .data-table td:not(:first-child){
        text-align: right;
    } .seo-report-root .data-table a{
        color: #2a5885;
        text-decoration: none;
    } .seo-report-root .data-table a:hover{
        text-decoration: underline;
    } .seo-report-root .badge-success{
        background-color: #d4edda;
        color: #155724;
        padding: 2px 8px;
        border-radius: 10px;
        font-size: 0.85em;
    } .seo-report-root .badge-danger{
        background-color: #f8d7da;
        color: #721c24;
        padding: 2px 8px;
        border-radius: 10px;
        font-size: 0.85em;
    } .seo-report-root .image-container img{
border: 1px solid #f3f3f3;
    margin: 5px 0 4px 0;
    box-shadow: 0px 0px 13px 3px rgb(0 0 0 / 8%);
    -webkit-box-shadow: 0px 0px 13px 3px rgb(0 0 0 / 8%);
    -moz-box-shadow: 0px 0px 13px 3px rgb(0 0 0 / 8%);

    width: 100%;

} .seo-report-root .image-caption{
    font-size: 13px;
    margin-bottom: 3px;
    color: #7f7f7f;
    text-align: center;
    font-family: monospace;
} .seo-report-root .image-container{
  background: #f3f3f3;
    padding: 10px;
    margin-bottom: 33px;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    margin-top: 10px;  
} .seo-report-root .stats-table{
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 14px;
} .seo-report-root .stats-table th{
    background-color: #f8f9fa;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #e0e0e0;
} .seo-report-root .stats-table td{
    padding: 10px 15px;
    border-bottom: 1px solid #e0e0e0;
} .seo-report-root .stats-table tr:hover{
    background-color: #f5f5f5;
} .seo-report-root .stats-table a{
    color: #4285F4;
    text-decoration: none;
} .seo-report-root .stats-table a:hover{
    text-decoration: underline;
} .seo-report-root .badge-danger{
    background-color: #f8d7da;
    color: #721c24;
    padding: 3px 7px;
    border-radius: 10px;
    font-size: 12px;
} .seo-report-root .badge-success{
    background-color: #d4edda;
    color: #155724;
    padding: 3px 7px;
    border-radius: 10px;
    font-size: 12px;
} @media (max-width: 768px){
    .stats-table {
        font-size: 13px;
    } .seo-report-root .stats-table th, .seo-report-root .stats-table td{
        padding: 8px 10px;
    } .seo-report-root }

.primecahnie{
    background: #ededed;
    font-size: 12px;
    padding: 12px;
    border-radius: 13px;
} .seo-report-root /*Для низких графиков решение*/

.chart-container{
    position: relative;
    margin: 20px auto;
    height: 450px; /* Увеличил высоту для выноски */
    width: 100%;
} @media (max-width: 768px){
    .chart-container {
        height: 350px;
    } .seo-report-root /* Уменьшаем шрифт выноски на мобильных */
    canvas{
        font-size: 12px !important;
    } .seo-report-root }

h4{
margin-top: 27px;
    font-size: 19px;
    color: #393939; 
}
