.elementor-1503 .elementor-element.elementor-element-399b89d{--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-f140b78 *//* =========================================
   AeroSpect NY Blog — Redesigned
   Matches actual site design system
   ========================================= */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: #0d47a1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   HERO SECTION
   - Fixed height contained within viewport
   - Background image stays inside hero bounds
   - Proper aspect ratio on all screens
   ========================================= */
.hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.65) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem 2.5rem;
}

.hero-spacer {
    height: 40px;
}

.hero-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.85rem;
}

.hero-title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.18;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    max-width: 750px;
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    max-width: 550px;
    margin: 0;
}

/* =========================================
   BLOG DETAIL SECTION
   ========================================= */
.blog-detail {
    padding: 2.5rem 0 4rem;
}

.blog-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Meta Bar — matches site pattern */
.meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    padding: 1.25rem 0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    color: #777;
}

.meta-item i {
    font-size: 0.75rem;
    color: #aaa;
}

.meta-item a {
    color: #777;
    transition: color 0.2s ease;
}

.meta-item a:hover {
    color: #1a73e8;
}

.meta-item time {
    color: #777;
}

/* Separator — dotted, like the site */
.separator {
    border: none;
    border-top: 1px dotted #d0d0d0;
    margin: 1.5rem 0;
}

/* =========================================
   ARTICLE CONTENT
   ========================================= */
.content {
    padding-top: 1.5rem;
}

.content > p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
}

.content > h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #111;
    margin-top: 3.25rem;
    margin-bottom: 1rem;
    line-height: 1.25;
    letter-spacing: -0.015em;
    position: relative;
    padding-bottom: 0.75rem;
}

.content > h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #1a73e8, #4fc3f7);
    border-radius: 2px;
}

.content > h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-top: 2.25rem;
    margin-bottom: 0.6rem;
    line-height: 1.35;
}

.content > ul {
    margin: 0.5rem 0 1.75rem 0;
    padding: 0;
    list-style: none;
}

.content > ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.content > ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    background-color: #1a73e8;
    border-radius: 50%;
}

.content > ul li strong {
    color: #111;
}

.content a {
    color: #1a73e8;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(26, 115, 232, 0.3);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.content a:hover {
    border-bottom-color: #1a73e8;
    color: #0d47a1;
}

/* Content Images */
.content-image {
    margin: 2.5rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-image img {
    width: 100%;
    display: block;
}

.image-caption {
    font-size: 0.85rem;
    color: #888;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    text-align: center;
    font-style: italic;
    margin: 0;
}

/* =========================================
   COMPARISON TABLE
   ========================================= */
.table-wrap {
    margin: 2rem 0 2.5rem;
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}

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

thead {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 600;
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

td {
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
    vertical-align: top;
}

td strong {
    color: #111;
}

tbody tr:nth-child(even) {
    background-color: #fafbfc;
}

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

tbody tr:hover {
    background-color: #eef3ff;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
    padding: 1rem 0;
}

.faq-heading {
    font-size: 1.55rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 2rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 0.75rem;
}

.faq-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #1a73e8, #4fc3f7);
    border-radius: 2px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    padding: 1.75rem 0;
    border-bottom: 1px solid #e8e8e8;
}

.faq-item:first-child {
    padding-top: 0;
}

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

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.65rem;
    line-height: 1.45;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.faq-item h3 i {
    color: #1a73e8;
    font-size: 0.7rem;
    margin-top: 0.35rem;
    flex-shrink: 0;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    padding-left: 1.3rem;
}

.faq-item a {
    color: #1a73e8;
    font-weight: 500;
    border-bottom: 1px solid rgba(26, 115, 232, 0.3);
    transition: border-color 0.2s ease;
}

.faq-item a:hover {
    border-bottom-color: #1a73e8;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    margin: 1rem 0;
}

.cta-inner {
    padding: 3rem 3rem 2.75rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-inner::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-text {
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-text p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0.75rem;
}

.cta-text p:last-of-type {
    margin-bottom: 0;
}

.cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.65rem;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: 5px;
    transition: all 0.25s ease;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.btn:hover {
    text-decoration: none;
}

.btn i {
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-light {
    background: #fff;
    color: #1a1a2e;
}

.btn-light:hover {
    background: #e8eaf6;
    color: #1a1a2e;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* =========================================
   SHARING
   ========================================= */
.sharing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.sharing-label {
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
}

.sharing-icons {
    display: flex;
    gap: 0.6rem;
}

.sharing-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #666;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.sharing-icons a:hover {
    background: #1a1a2e;
    color: #fff;
}

/* =========================================
   RESPONSIVE — TABLET
   ========================================= */
@media (max-width: 900px) {
    .hero {
        height: 360px;
    }

    .hero-content {
        padding: 0 2rem 2rem;
    }

    .hero-spacer {
        height: 30px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .blog-container {
        padding: 0 1.5rem;
    }

    .content > h2 {
        font-size: 1.5rem;
        margin-top: 2.5rem;
    }

    .cta-inner {
        padding: 2.25rem 2rem;
    }
}

/* =========================================
   RESPONSIVE — MOBILE
   ========================================= */
@media (max-width: 640px) {
    .hero {
        height: 300px;
    }

    .hero-content {
        padding: 0 1.25rem 1.5rem;
    }

    .hero-spacer {
        height: 20px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
    }

    .hero-title {
        font-size: 1.5rem;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-img img {
        object-position: center 40%;
    }

    .blog-container {
        padding: 0 1rem;
    }

    .meta-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

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

    .content > h2 {
        font-size: 1.35rem;
        margin-top: 2.25rem;
    }

    .content > h3 {
        font-size: 1.1rem;
    }

    .content-image {
        margin: 1.75rem -1rem;
        border-radius: 0;
    }

    .table-wrap {
        margin-left: -1rem;
        margin-right: -1rem;
        border-radius: 0;
    }

    th, td {
        padding: 0.7rem 0.85rem;
        font-size: 0.85rem;
    }

    .faq-heading {
        font-size: 1.3rem;
    }

    .faq-item h3 {
        font-size: 1rem;
    }

    .faq-item p {
        font-size: 0.95rem;
        padding-left: 1.3rem;
    }

    .cta-inner {
        padding: 2rem 1.5rem;
    }

    .cta-text h2 {
        font-size: 1.35rem;
    }

    .cta-text p {
        font-size: 0.95rem;
    }

    .cta-actions {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
        width: 100%;
    }

    .sharing {
        flex-direction: column;
        gap: 0.6rem;
    }
}

/* =========================================
   RESPONSIVE — SMALL MOBILE
   ========================================= */
@media (max-width: 400px) {
    .hero {
        height: 260px;
    }

    .hero-spacer {
        height: 15px;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .content > h2 {
        font-size: 1.25rem;
    }

    .cta-inner {
        padding: 1.5rem 1.25rem;
    }

    .cta-text h2 {
        font-size: 1.2rem;
    }
}/* End custom CSS */