/* seo-premium.css - SEO & Design Optimized for FoilRent */

:root {
    --color-storm: #081015;
    --color-deep-slate: #0D1820;
    --color-teal: #2BB3C0;
    --color-lime: #B8E85A;
    --color-text: #F5F7F7;
    --color-muted: #9CB2B8;
    --glass: rgba(12, 21, 26, 0.8);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Accessibility & Readability */
body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* SEO Content Blocks */
.content-section {
    contain: layout;
    will-change: transform, opacity;
}

.text-wrap p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.text-wrap strong {
    color: var(--color-lime);
}

/* Premium Images */
.image-wrap {
    overflow: hidden;
    backface-visibility: hidden;
}

.image-wrap img {
    transform: scale(1.001); /* Fix for subpixel rendering */
    transition: var(--transition);
}

/* Mobile-First Accessibility */
@media (max-width: 480px) {
    .btn {
        width: 100%;
        display: block;
        margin-bottom: 10px;
    }
}

/* Structured Data Visualization (Optional helper) */
.article-meta-summary {
    display: none; /* Only for bots if needed */
}
