.elementor-3118 .elementor-element.elementor-element-04bddca{--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;}/* Start custom CSS for html, class: .elementor-element-dac2a96 *//* GoPro Garage Doors Blog Post Styles */

:root {
    --primary-red: #DF1F3D;
    --primary-blue: #0A5DAC;
    --text-dark: #333333;
    --text-light: #666666;
    --background-light: #F8F9FA;
    --border-color: #E0E0E0;
    --white: #FFFFFF;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 16px;
}

/* Container and Layout */
.blog-post {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.post-header {
    margin-bottom: 40px;
}

.breadcrumb {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-red);
}

.post-header h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--text-light);
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Featured Image */
.featured-image {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content Styles */
.post-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 400;
}

.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    margin-top: 40px;
}

.content-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    margin-top: 30px;
}

.content-section p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-section ul,
.content-section ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-section li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.content-section li strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* Links */
a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-red);
}

/* Tip Box */
.tip-box {
    background: linear-gradient(135deg, #E3F2FD 0%, #F3E5F5 100%);
    border-left: 4px solid var(--primary-blue);
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.tip-box h3 {
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.tip-box p {
    margin-bottom: 0;
    color: var(--text-dark);
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    border-left: 4px solid #FF9800;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.info-box h3 {
    color: #F57C00;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.info-box p {
    margin-bottom: 0;
    color: var(--text-dark);
}

/* Call to Action Box */
.call-to-action-box {
    background: linear-gradient(135deg, var(--primary-red) 0%, #C51830 100%);
    color: var(--white);
    padding: 40px;
    margin: 50px 0;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 30px rgba(223, 31, 61, 0.3);
}

.call-to-action-box h3 {
    color: var(--white);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
}

.call-to-action-box p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-red);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Comparison Table */
.comparison-table {
    margin: 50px 0;
    overflow-x: auto;
}

.comparison-table h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

thead {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #085A9E 100%);
    color: var(--white);
}

thead th {
    padding: 18px;
    text-align: left;
    font-weight: 800;
    font-size: 16px;
}

tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

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

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

tbody td {
    padding: 18px;
    font-size: 15px;
}

tbody td:first-child {
    font-weight: 700;
    color: var(--text-dark);
}

/* FAQ Items */
.faq-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h3 {
    color: var(--primary-blue);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.faq-item p {
    margin-bottom: 0;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    padding: 50px;
    margin: 60px 0;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.final-cta h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.final-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, #C51830 100%);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(223, 31, 61, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(223, 31, 61, 0.4);
}

.cta-button.secondary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #085A9E 100%);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 93, 172, 0.3);
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(10, 93, 172, 0.4);
}

/* Related Posts */
.related-posts {
    margin: 80px 0 60px;
    padding-top: 60px;
    border-top: 2px solid var(--border-color);
}

.related-posts h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-card h3 {
    padding: 20px 20px 10px;
    font-size: 20px;
    font-weight: 700;
}

.related-card h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.related-card h3 a:hover {
    color: var(--primary-red);
}

.related-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
    font-size: 15px;
}

/* Footer */
.post-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.author-bio {
    margin-bottom: 40px;
}

.author-info h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.author-info p {
    color: var(--text-light);
    line-height: 1.7;
}

.share-buttons h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.social-share {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    color: var(--white);
    text-decoration: none;
}

.share-btn.facebook {
    background-color: #1877F2;
}

.share-btn.twitter {
    background-color: #1DA1F2;
}

.share-btn.linkedin {
    background-color: #0A66C2;
}

.share-btn.email {
    background-color: #666666;
}

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-post {
        padding: 15px;
    }

    .post-header h1 {
        font-size: 32px;
    }

    .intro-text {
        font-size: 18px;
    }

    .content-section h2 {
        font-size: 26px;
    }

    .content-section h3 {
        font-size: 20px;
    }

    .tip-box,
    .info-box,
    .call-to-action-box {
        padding: 20px;
    }

    .call-to-action-box h3 {
        font-size: 24px;
    }

    .final-cta {
        padding: 30px 20px;
    }

    .final-cta h2 {
        font-size: 28px;
    }

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

    .cta-button,
    .cta-button.primary,
    .cta-button.secondary {
        width: 100%;
        padding: 15px 30px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    table {
        font-size: 14px;
    }

    thead th,
    tbody td {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .post-header h1 {
        font-size: 26px;
    }

    .intro-text {
        font-size: 16px;
    }

    .content-section h2 {
        font-size: 22px;
    }

    .post-meta {
        flex-direction: column;
        gap: 10px;
    }

    .comparison-table {
        overflow-x: scroll;
    }

    table {
        min-width: 500px;
    }
}

/* Print Styles */
@media print {
    .call-to-action-box,
    .final-cta,
    .share-buttons,
    .breadcrumb {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .post-header h1 {
        font-size: 24pt;
    }

    .content-section h2 {
        font-size: 18pt;
        page-break-after: avoid;
    }

    .content-section {
        page-break-inside: avoid;
    }
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Focus Styles */
a:focus,
button:focus,
.cta-button:focus {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Selection Styles */
::selection {
    background-color: var(--primary-red);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--primary-red);
    color: var(--white);
}/* End custom CSS */