#header-top-typing-text {
    font-size: 14px;
    font-weight: 500;
    color: #111010;
}

/* live blink css */
.blink {
    animation: blink-animation 1s infinite;
}

@keyframes blink-animation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* header */
.header-logo {
    width: auto;
    height: 80px;
    padding: 10px 0;
}


/* mobile */
.mobile-logo-container {
    width: fit-content;
}

.mobile-logo {
    width: auto;
    height: 80px;
}


/* transform */
.transform-90 {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

/* font size */
.fs-1 {
    font-size: 1rem !important;
}

/* text transform */
.text-lowercase {
    text-transform: lowercase;
}

/* vehicle display card */
.vehicle-soldout-img {
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) !important;
    width: 100px;
    opacity: 0.9;
}

/* icon circle */
.icon-circle {
    background-color: rgba(55, 73, 187, 0.05);
    padding: 1.5rem;
    border-radius: 100%;
    color: #fc0012;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* toastify css */
.toastify {
    background: linear-gradient(to right, #fc0012, #fc0012bf);
}

.logo {
    width: 5rem;
}

/* =======================================
   WordPress Post Content - Autohive 2025
   Updated based on PDF screenshot
======================================= */

/* Overall Typography */
.pro-wp-content {
    font-family: var(--bs-font-sans-serif);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--bs-body-color);
}

.pro-wp-content p {
    margin-bottom: 1.25rem;
    color: #666;
}

/* Headings - Based on PDF styling */
.pro-wp-content h1,
.pro-wp-content h2,
.pro-wp-content h3,
.pro-wp-content h4,
.pro-wp-content h5,
.pro-wp-content h6 {
    font-weight: 700;
    line-height: 1.3;
    margin: 2rem 0 1rem;
    color: #2a2a2a;
}

.pro-wp-content h1 { 
    font-size: 2rem; 
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 0.5rem;
}
.pro-wp-content h2 { 
    font-size: 1.75rem; 
}
.pro-wp-content h3 { 
    font-size: 1.5rem; 
}
.pro-wp-content h4 { 
    font-size: 1.25rem; 
    font-weight: 600;
}

/* Remove gradient underline - replace with simpler styling */
.pro-wp-content h2::after, .pro-wp-content h3::after {
    display: none;
}

/* Images - More subtle styling */
.pro-wp-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pro-wp-content figure {
    margin: 2rem 0;
}

.pro-wp-content figcaption {
    font-size: 0.85rem;
    color: var(--bs-gray-600);
    text-align: center;
    margin-top: 8px;
    font-style: italic;
}

/* Tables - Cleaner styling */
.pro-wp-content table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    margin: 1.5rem 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #eaeaea;
}

.pro-wp-content table th {
    background-color: #f8f9fa;
    font-weight: 600;
    padding: 1rem;
    border-bottom: 2px solid #eaeaea;
    color: #2a2a2a;
}

.pro-wp-content table td {
    padding: 1rem;
    border-bottom: 1px solid #eaeaea;
}

.pro-wp-content table tr:last-child td {
    border-bottom: none;
}

.pro-wp-content table {
    display: block;
    overflow-x: auto;
}

/* Blockquotes - Simpler styling */
.pro-wp-content blockquote {
    padding: 1.5rem;
    margin: 2rem 0;
    background: #f8f9fa;
    border-left: 4px solid var(--bs-primary);
    border-radius: 8px;
    color: #555;
    font-size: 1.05rem;
    font-style: italic;
}

.pro-wp-content blockquote p {
    margin: 0;
    color: #555;
}

/* Lists - Clean styling */
.pro-wp-content ul, .pro-wp-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.pro-wp-content li {
    margin-bottom: 0.5rem;
    color: #666;
}

.pro-wp-content ul li {
    list-style-type: disc;
}

.pro-wp-content ol li {
    list-style-type: decimal;
}

/* Buttons / Links - Automotive theme */
.pro-wp-content a {
    color: var(--bs-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pro-wp-content a:hover {
    color: var(--bs-info);
    text-decoration: underline;
}

.pro-wp-content a.button,
.pro-wp-content .wp-block-button__link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--bs-primary);
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.pro-wp-content a.button:hover,
.pro-wp-content .wp-block-button__link:hover {
    background: var(--bs-info);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Iframes (Video / Maps) */
.pro-wp-content iframe {
    width: 100% !important;
    aspect-ratio: 16/9;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 1px solid #eaeaea;
}

/* Code Blocks */
.pro-wp-content pre {
    background: #2d2d2d;
    color: #f8f8f2;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
    border-left: 4px solid var(--bs-primary);
}

.pro-wp-content code {
    background: #f1f3f4;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: #d63384;
    font-size: 0.9em;
}

/* Gutenberg Gallery - Grid layout */
.pro-wp-content .wp-block-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pro-wp-content .wp-block-gallery img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.pro-wp-content .wp-block-gallery img:hover {
    transform: scale(1.02);
}

/* Gutenberg Quote - Match blockquote styling */
.pro-wp-content .wp-block-quote {
    border-left: 4px solid var(--bs-primary);
    padding-left: 1.5rem;
    color: #555;
    font-style: italic;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

/* Author info styling - Based on PDF */
.pro-wp-content .author-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--bs-primary);
}

/* Tags styling - Based on PDF tags section */
.pro-wp-content .post-tags {
    margin: 2rem 0;
    padding-top: 1rem;
    border-top: 1px solid #eaeaea;
}

.pro-wp-content .post-tags a {
    display: inline-block;
    background: #f1f3f4;
    padding: 0.4rem 0.8rem;
    margin: 0.25rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #555;
    text-decoration: none;
}

.pro-wp-content .post-tags a:hover {
    background: var(--bs-primary);
    color: white;
    text-decoration: none;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .pro-wp-content h1 { 
        font-size: 1.75rem; 
        margin-top: 1.5rem;
    }
    .pro-wp-content h2 { 
        font-size: 1.5rem; 
        padding-left: 0.75rem;
    }
    .pro-wp-content h3 { 
        font-size: 1.25rem; 
    }
    
    .pro-wp-content img, 
    .pro-wp-content iframe { 
        margin: 1rem 0; 
    }
    
    .pro-wp-content .wp-block-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.75rem;
    }
    
    .pro-wp-content blockquote,
    .pro-wp-content .wp-block-quote {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Print styles */
@media print {
    .pro-wp-content {
        font-size: 12pt;
        line-height: 1.6;
        color: #000;
    }
    
    .pro-wp-content a {
        color: #000;
        text-decoration: underline;
    }
    
    .pro-wp-content img,
    .pro-wp-content iframe {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
}
