.elementor-1487 .elementor-element.elementor-element-88a5fc0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:120px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-c37c3c1 *//* =============================================
   AeroSpect NY Blog Styles
   Matches site design: dark tones, clean typography, professional layout
   ============================================= */

:root {
    --color-primary: #1a1a2e;
    --color-accent: #e94560;
    --color-accent-hover: #d63851;
    --color-text: #2c2c2c;
    --color-text-light: #6b6b6b;
    --color-bg: #ffffff;
    --color-bg-alt: #f5f5f7;
    --color-bg-dark: #0f0f1a;
    --color-border: #e0e0e0;
    --color-link: #e94560;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --max-width: 820px;
    --max-width-wide: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 17px;
    line-height: 1.75;
    color: var(--color-text);
    background-color: var(--color-bg);
}

/* =============================================
   Hero Section
   ============================================= */

.blog-hero {
    position: relative;
    width: 100%;
    height: 55vh;
    max-height: 520px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?w=1400&q=80');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    overflow: hidden;
}

.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.75), rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.55));
    z-index: 1;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 3rem 2rem 3.5rem;
}

.blog-hero-spacer {
    height: 10vh;
}

.blog-hero h1 {
    font-size: clamp(1.85rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 800px;
    letter-spacing: -0.02em;
}

.blog-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    max-width: 650px;
    margin: 0;
}

/* =============================================
   Blog Detail Section
   ============================================= */

.blog-detail {
    padding: 0;
}

.blog-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
}

/* Meta Bar */
.blog-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.blog-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-meta-item i {
    font-size: 0.8rem;
    color: var(--color-accent);
}

.blog-meta-item a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-meta-item a:hover {
    color: var(--color-accent);
}

.blog-meta-divider {
    border: none;
    border-top: 1px dotted var(--color-border);
    margin: 1.5rem 0;
}

/* =============================================
   Article Content
   ============================================= */

.blog-content p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text);
}

.blog-content a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s;
}

.blog-content a:hover {
    border-bottom-color: var(--color-accent);
    color: var(--color-accent-hover);
}

/* Headings */
.blog-content h2 {
    font-size: clamp(1.4rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.blog-content h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

/* Lists */
.blog-content ul,
.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-content ul {
    list-style: disc;
}

.blog-content ol {
    list-style: decimal;
}

.blog-content li {
    margin-bottom: 0.65rem;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-text);
}

.blog-content li strong {
    color: var(--color-primary);
}

/* =============================================
   Comparison Table
   ============================================= */

.comparison-table-wrap {
    overflow-x: auto;
    margin: 2rem 0 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    min-width: 560px;
}

.comparison-table thead {
    background-color: var(--color-primary);
}

.comparison-table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
}

.comparison-table td {
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
    vertical-align: top;
    line-height: 1.55;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: var(--color-bg-alt);
}

.comparison-table tbody tr:hover {
    background-color: #f0f0f3;
}

/* =============================================
   CTA Box
   ============================================= */

.blog-cta-box {
    background: linear-gradient(135deg, var(--color-primary) 0%, #16213e 100%);
    color: #ffffff;
    padding: 2.5rem 2.5rem;
    border-radius: 10px;
    margin: 3.5rem 0 3rem;
}

.blog-cta-box h2 {
    color: #ffffff;
    font-size: 1.65rem;
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-cta-box p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.blog-cta-box p:last-of-type {
    margin-bottom: 1.5rem;
}

.blog-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--color-accent);
    color: #ffffff !important;
    padding: 0.85rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none !important;
    border: none !important;
    transition: background-color 0.25s, transform 0.15s;
}

.blog-cta-button:hover {
    background-color: var(--color-accent-hover);
    color: #ffffff !important;
    transform: translateY(-1px);
}

.blog-cta-button i {
    font-size: 1rem;
    transition: transform 0.2s;
}

.blog-cta-button:hover i {
    transform: translateX(3px);
}

/* =============================================
   FAQ Section
   ============================================= */

.blog-faq-section {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--color-bg-alt);
}

.blog-faq-section h2 {
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2rem;
    margin-top: 0;
}

.faq-item {
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 0.65rem;
    line-height: 1.4;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text);
    margin-bottom: 0;
}

/* =============================================
   Sharing Links
   ============================================= */

.blog-sharing {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    padding: 0.5rem 0;
}

.blog-sharing a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-bg-alt);
    color: var(--color-text-light);
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s, transform 0.15s;
}

.blog-sharing a:hover {
    background-color: var(--color-accent);
    color: #ffffff;
    transform: translateY(-2px);
}

/* =============================================
   Responsive Styles
   ============================================= */

@media (max-width: 768px) {
    .blog-hero {
        height: 45vh;
        max-height: 400px;
    }

    .blog-hero-content {
        padding: 2rem 1.25rem 2.5rem;
    }

    .blog-hero-spacer {
        height: 6vh;
    }

    .blog-container {
        padding: 2rem 1.25rem 3rem;
    }

    .blog-meta-bar {
        gap: 1rem;
    }

    .blog-cta-box {
        padding: 2rem 1.5rem;
    }

    .blog-cta-box h2 {
        font-size: 1.4rem;
    }

    .blog-content h2 {
        margin-top: 2.5rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        height: 40vh;
        max-height: 320px;
    }

    .blog-hero h1 {
        font-size: 1.65rem;
    }

    .blog-hero-subtitle {
        font-size: 0.95rem;
    }

    body {
        font-size: 16px;
    }

    .blog-content p,
    .blog-content li {
        font-size: 1rem;
    }

    .blog-cta-button {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
    }

    .blog-sharing {
        gap: 0.75rem;
    }

    .blog-sharing a {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .blog-hero {
        height: auto;
        max-height: none;
        background: none;
    }

    .blog-hero-overlay {
        display: none;
    }

    .blog-hero h1 {
        color: #000;
    }

    .blog-sharing,
    .blog-cta-box {
        display: none;
    }
}/* End custom CSS */