/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
    box-sizing: border-box;
}
/*
2. Remove default margin
*/
* {
    margin: 0;
}
/*
Typographic tweaks!
3. Add accessible line-height
4. Improve text rendering
*/
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
/*
5. Improve media defaults
*/
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}
/*
6. Remove built-in form typography styles
*/
input, button, textarea, select {
    font: inherit;
}
/*
7. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}
/*
8. Create a root stacking context
*/
#root, #__next {
    isolation: isolate;
}

:root {
    --wrap-w: 1242px;
    --content-wrap-w: 800px;
    --cpw-white: #FFFFFF;
    --cpw-black: #000000;
    --cp-sm: 640px;
    --cp-md: 768px;
    --cp-lg: 1024px;
}

/* Utilities */
.tz-link {
    color: var(--cpw-black) !important;
    display: inline;
    text-decoration: underline !important;
    text-underline-offset: 4px !important; 
    text-decoration-thickness: 1px !important;           
    font-weight: 700 !important;
}

.tz-section-wrap {
    max-width: var(--wrap-w);
    margin: 0 auto;
}

/* Global Classes */
#blog p {
    color: var(--cpw-black) !important;
}

#blog #euro-brake-wrap h2 {
    font-size: clamp(1.875rem, 1.5909rem + 1.4205vw, 2.625rem);
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

/* Back to top */
.backtotop {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    visibility: hidden;
    user-select: none;
}

.backtotop:hover .backtotop-txt {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transform: translateY(0);
}

.backtotop:hover .tz-arrow-upward {
    color: #fff;
    background: #62686d;
}

.backtotop .tz-arrow-upward {
    color: #000000;
    font-size: 2rem;
    padding: 0.8rem;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(60, 64, 67, 0.3), 0 0 0 0 rgba(60, 64, 67, 0.15);
    background: #3c4043;
    color: #9aa0a6;
}

.backtotop .backtotop-txt {
    color: #000000;
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transform: translateY(15px);
    transition: all 0.1s ease-out;
}

/* Logo */
.tf-cp-itg-logo {
    padding: 1rem;
    position: relative;
    z-index: 3;
    /* background: #0C1536; */

    &:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, rgba(12, 21, 54, 0) 0%, #0C1536 100%);
        z-index: -1;
    }
}

.tf-cp-itg-logo a {
    display: inline-block;
}

.tf-cp-itg-logo a:focus {
    outline: none;
}

.tf-cp-itg-logo img {
    width: 200px;
}

#euro-brake-wrap {
    font-family: 'Inter', sans-serif;
}

/* Menu */
#tz-toggle-hamburger-icon {
    position: relative;
    /* background-color: var(--cp-white); */
    border-radius: 8px;
    transition: all 0.2s ease;
    display: inline-block;
    font-size: 0px;
    cursor: pointer;
    top: 20px;
    right: 20px;
    position: absolute;
    padding: 5px;
    z-index: 9999;
}

#tz-toggle-hamburger-icon:before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    z-index: -1;
}

#tz-toggle-hamburger-icon > div {
    width: 25px;
    height: 2px;
    background-color: var(--cp-white);
    margin: 5px;
    transition: all 0.3s ease;
}

#tz-toggle-hamburger-icon img {
    width: 28px;
}

.toggle-burger .tz-line-1 {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.toggle-burger .tz-line-2 {
    opacity: 0;
}

.toggle-burger .tz-line-3 {
    transform: rotate(45deg) translate(-5px, -5px);
}

#tz-nav-transparent-bg {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 98;
    opacity: 0;
    visibility: hidden;
}

.tz-nav {
    position: fixed;
    align-items: center;
    text-align: left;
    padding: 2rem;
    margin: 0;
    background-color: #111F30;
    display: grid;
    place-content: center;
    height: 100vh;
    top: 0;
    right: -1px;
    z-index: 999;
    transform: translateX(100%);
    transition: all 0.65s cubic-bezier(0.76, 0, 0.24, 1);
}

.tz-nav.toggle-nav-anim {
    transform: translateX(0);
}

.tz-nav .tz-main-nav {
    margin: 2rem auto 2rem !important;
    padding: 0;
    display: block;
    padding: 0;
}

.tz-nav .tz-main-nav li {
    margin: 0 !important;
    padding: 0 8px 0;
    display: inherit;
    list-style: none !important;
}

.tz-nav .tz-main-nav li.tz-active a {
    transition: all 0.3s ease;
    color: var(--cp-white) !important;
}

.tz-nav .tz-main-nav li.tz-active a:before {
    background-color: var(--cp-white);
    height: 1px;
    transform: translateX(0);
}

.tz-nav .tz-main-nav li a {
    display: inline-block;
    position: relative;
    overflow: hidden;
    color: #ffffff !important;
    font-size: clamp(1.25rem, 0.93rem + 1.0667vw, 1.75rem);
    transition: all 0.3s ease;
    font-family: 'Inter-Tight', sans-serif;
    font-weight: 400 !important;
    font-style: italic !important;
    text-decoration: none !important;
}

.tz-nav .tz-main-nav li a span {
    position: relative;
    z-index: 5;
}

.tz-nav .tz-main-nav li a:before {
    content: "";
    transition: 0.4s;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
    transform: translateX(-101%);
    z-index: 1;
}

.tz-nav .tz-main-nav li a:hover {
    opacity: 1;
}

.tz-nav .tz-main-nav li a:hover:before {
    background-color: var(--cp-white);
    transform: translateX(0);
}

.tz-nav .nav-menu-social {
    margin: 0.125rem auto 0 auto;
}

.tz-nav .nav-menu-social .nav-social-list {
    margin: 0;
    padding: 0;
}

.tz-nav .nav-menu-social .nav-social-list li {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block;
    list-style: none;
}

.tz-nav .nav-menu-social .nav-social-list li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    display: grid;
    place-content: center;
}

.tz-nav .nav-menu-social .nav-social-list li a svg {
    width: 20px;
    height: 20px;
}

.tz-nav .nav-menu-social .nav-social-list li:nth-child(1) {
    margin-right: 0 !important;
}

/* socmed article styles */
.socmed{
    button{
        border: 0;
    }
    section{
        display: block;
        padding: 0 !important;
        margin: $gap 0 !important;
        background: transparent !important;

        a, button{
            background: #111F30 !important;
        }

        svg{
            width: 30px !important;
            height: 30px !important;
        }

        .tp-social-icon{
            gap:$gap;
            display: flex;
        }

    
    }

    .social-items {
        padding: 5px;
    }

    .social-items-prime {
        background-color: transparent !important;
    }
}

/* sticky button  */
#ft-share-button{
    svg{
        padding: 8px;
        border-radius: 4px;
        color: $white!important;
        background: #0C1536 !important;

        path.cpb-blue{
            fill: #FF7C1F !important;
        }
    }
}

/* Hero */
#blog .euro-brake-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    margin-top: -108px;

    picture img {
        display: block;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .euro-brake-hero-info-wrap {
        width: 100%;
        margin-top: 400px;
        position: relative;

        &:before {
            content: "";
            position: absolute;
            width: 100%;
            height: calc(100% + 80px);
            left: 0;
            bottom: 0;
            background: linear-gradient(
                to bottom,
                rgba(191, 191, 207, 0) 0%,
                rgba(191, 191, 207, 0.9) 14.904%,
                #BFBFCF 100%
            );
            z-index: -1;
        }
        
        .euro-brake-hero-info {
            max-width: var(--wrap-w);
            margin: 0 auto;

            .euro-brake-hero-info-inner {
                max-width: 992px;
                padding: 0 1rem 4rem;
                
                h1 {
                    font-family: 'Inter-Tight', sans-serif;
                    font-size: clamp(2.8125rem, 0.8333rem + 4.9479vw, 4rem);
                    line-height: 1.1;
                    color: #111F30;
                    text-align: left;
                    font-style: italic;
                    font-weight: 700;
                    display: block;
                    padding: 2rem 0;
                    position: relative;
                    z-index: 2;
                    margin: 0;
                }

                .ebh-author-info {
                    span {
                        display: block;
                    }

                    font-family: 'Inter Tight', sans-serif;
                    font-style: italic;
                    font-size: 20px;
                    color: var(--cpw-black) !important;
                    margin-bottom: 30px;
                }

                .ebh-hero-desc {
                    font-family: 'Inter', sans-serif;
                    font-weight: 300;
                    font-size: 20px;
                    line-height: 26px;
                    color: var(--cpw-black) !important;
                    max-width: 866px;
                    
                    p {
                        margin-bottom: 0;
                        
                        &:last-child {
                            margin-bottom: 0;
                        }
                        
                        .tz-link {
                            font-weight: 600;
                            color: var(--cp-white);
                        }
                    }
                }

            }
            
        }
    
    }
   


}

/* Brands Section */
#blog .euro-brake-brands {
    background-color: #0C1536;
    display: flex;
    flex-direction: column;
    gap: 60px;
    
    .euro-brake-brands-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
        padding: 100px 1rem;
        
        h2 {
            font-family: 'Inter Tight', sans-serif;
            font-style: italic;
            font-size: 42px;
            color: white;
            line-height: normal;
        }
        
        .euro-brake-brands-intro {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 20px;
            line-height: 26px;
            color: var(--cpw-white) !important;
            max-width: 1000px;
            margin-bottom: 20px;
        }
        
        .euro-brake-brands-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 60px;

            a {
                display: block;
            }
            
            .euro-brake-brands-logo-item {
                border-radius: 20px;
                padding: 20px;
                flex: 0 1 240px;
                position: relative;

                &:before {
                    content: "";
                    position: absolute;
                    inset: 0;
                    border-radius: inherit;
                    padding: 1px;
                    background: linear-gradient(
                        155deg,
                        #111F30 0%,
                        #BEBECE 34%,
                        #111F30 67%,
                        #BEBECE 100%
                    );
                    -webkit-mask:
                        linear-gradient(#fff 0 0) content-box,
                        linear-gradient(#fff 0 0);
                    -webkit-mask-composite: xor;
                    mask-composite: exclude;
                    pointer-events: none;
                }
                
                img {
                    max-width: 210px;
                    height: auto;
                }
            }
        }

    }
}

/* Brand Detail Sections */
#blog .euro-brake-brands-details {
    background-color: #BFBFCF;
    padding: 60px 0;

    .euro-brake-brand-detail {
        padding: 50px;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        gap: 40px;
        
        &.trw,
        &.brembo,
        &.zimmermann,
        &.porsche {
            background-color: transparent;

            .es-part-images .es-part-item .es-part-image {
                border: 1px solid #000000;
            }

            .es-brand-description .es-key-features .es-features-list {
                color: #000000;

                strong {
                    font-weight: 700;
                }
            }

        }
        
        &.bosch,
        &.bmw,
        &.audi {
            background-color: #0C1536;

            .es-part-images .es-part-item .es-part-image {
                border: 1px solid #ffffff !important;
            }

            .es-part-images .es-part-item .es-part-name,
            .es-brand-description .es-key-features .es-features-list,
            .es-brand-description p {
                color: #ffffff !important;
            }

        }
        
        .euro-brake-brand-header {
            display: flex;
            gap: 30px;
            align-items: center;
            
            .euro-brake-brand-logo-box {
                border-radius: 20px;
                height: 135px;
                width: 262.64px;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 40px 100px;
                position: relative;
                background: #0C1536;

                &:before {
                    content: "";
                    position: absolute;
                    inset: 0;
                    border-radius: inherit;
                    padding: 1px;
                    background: linear-gradient(
                        155deg,
                        #111F30 0%,
                        #BEBECE 34%,
                        #111F30 67%,
                        #BEBECE 100%
                    );
                    -webkit-mask:
                        linear-gradient(#fff 0 0) content-box,
                        linear-gradient(#fff 0 0);
                    -webkit-mask-composite: xor;
                    mask-composite: exclude;
                    pointer-events: none;
                }
                
                img {
                    max-width: 210px;
                    height: auto;
                }
            }
            
            a {
                text-decoration: none;
             
                .es-cta-button {
                    background-color: #ffcd05;
                    color: black;
                    border: none;
                    border-radius: 10px;
                    padding: 30px;
                    height: 58px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-family: 'Inter Tight', sans-serif;
                    font-weight: 700;
                    font-size: clamp(1.25rem, 0.2083rem + 2.6042vw, 1.875rem);
                    line-height: 26px;
                    cursor: pointer;
                    white-space: pre;
                    
                    &:hover {
                        background-color: #e6b800;
                    }
                }
            
            }
        }
        
        .es-part-images {
            display: flex;
            gap: 30px;
            align-items: start;
            flex-wrap: wrap;
            
            .es-part-item {
                text-decoration: none;
                display: flex;
                flex-direction: column;
                gap: 9.936px;
                align-items: center;
                width: 262.64px;
                
                .es-part-image {
                    border: 1px solid white;
                    border-radius: 4px;
                    width: 262.64px;
                    height: 262.64px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    padding: 17.804px 39.881px;
                    
                    img {
                        width: 200px;
                        height: auto;
                        object-fit: cover;
                    }
                }
                
                .es-part-name {
                    font-family: 'Inter', sans-serif;
                    font-weight: 700;
                    font-style: italic;
                    font-size: 19.873px;
                    text-align: center;
                    color: white;
                    line-height: normal;
                    margin: 0;
                }
            }
        }
        
        .es-brand-description {
            display: flex;
            gap: 50px;
            align-items: start;
            
            p {
                font-family: 'Inter', sans-serif;
                font-weight: 300;
                font-size: 20px;
                line-height: 26px;
                color: white;
                width: 420.961px;
                
                strong {
                    font-family: 'Inter', sans-serif;
                    font-weight: 700;
                }
            }
            
            .es-key-features {
                flex: 1 1 0;
                display: flex;
                flex-direction: column;
                gap: 20px;
                align-items: flex-start; 
                
                .es-features-header {
                    background-color: black;
                    padding: 15px 20px;
                    border-radius: 10px;
                    font-family: 'Inter', sans-serif;
                    font-weight: 700;
                    font-size: 16px;
                    color: white;
                    text-transform: uppercase;
                    letter-spacing: 1.6px;
                    text-align: center;
                }
                
                .es-features-list {
                    display: flex;
                    flex-direction: column;
                    gap: 10px;
                    padding: 0;
                    font-family: 'Inter', sans-serif;
                    font-weight: 300;
                    font-size: 20px;
                    color: white;
                    
                    li {
                        margin-left: 30px;
                        line-height: 26px;

                        strong {
                            font-weight: 700;
                        }
                    }
                }
            }
        }
    }

}

/* Recommendation Section */
#blog .euro-brake-recommendation {
    background-color: #0C1536;
    
    .recommendation-section {
        padding: 100px 1rem;
        display: flex;
        flex-direction: column;
        gap: 60px;
        
        .recommendation-content {
            display: flex;
            gap: 70px;
            align-items: center;
            
            .recommendation-image {
                width: 600px;
                height: 500px;
                overflow: hidden;
                position: relative;
                
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: right center;
                }
            }
            
            .recommendation-text {
                width: 570px;
                display: flex;
                flex-direction: column;
                gap: 30px;
                
                .checkmark-icon {
                    width: 100px;
                    height: 100px;
                }
                
                h2 {
                    font-family: 'Inter Tight', sans-serif;
                    font-style: italic;
                    font-size: 42px;
                    color: white;
                    line-height: normal;
                }
                
                p {
                    font-family: 'Inter', sans-serif;
                    font-weight: 300;
                    font-size: 20px;
                    line-height: 26px;
                    color: #ffffff !important;
                    
                    strong {
                        font-family: 'Inter', sans-serif;
                        font-weight: 700;
                    }
                }
            }
        }
    }

}

/* Brake Systems */
#blog .brake-systems {
    position: relative;
    background-color: #0C1536;
    
    .brake-systems-bg {
        width: 100%;
        height: 500px;
        overflow: hidden;
        position: relative;
        
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: 50% 50%;
        }
    }
    
    .brake-systems-content {
        padding: 100px;
        display: flex;
        flex-direction: column;
        gap: 30px;
        
        h2 {
            font-family: 'Inter Tight', sans-serif;
            font-style: italic;
            font-size: 50px;
            color: white;
            line-height: normal;
        }
        
        .brake-systems-text {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 20px;
            line-height: 26px;
            color: white;
            
            p {
                margin-bottom: 0;
                color: #ffffff !important;
                
                &:last-child {
                    margin-bottom: 0;
                }
                
                strong {
                    font-family: 'Inter', sans-serif;
                    font-weight: 700;
                    font-style: normal;
                }
            }

        }

        .es-key-features {
            flex: 1 1 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: flex-start; 
            
            .es-features-header {
                background-color: #ffffff;
                padding: 15px 20px;
                border-radius: 10px;
                font-family: 'Inter', sans-serif;
                font-weight: 700;
                font-size: 16px;
                color: #000000;
                text-transform: uppercase;
                letter-spacing: 1.6px;
                text-align: center;
            }
            
            .es-features-list {
                display: flex;
                flex-direction: column;
                gap: 10px;
                padding: 0;
                font-family: 'Inter', sans-serif;
                font-weight: 300;
                font-size: 20px;
                color: white;
                
                li {
                    margin-left: 30px;
                    line-height: 26px;

                    strong {
                        font-weight: 700;
                    }
                }
            }
        }

    }
}

/* Some European Models & Commonly Reported Suspension Problems */
.common-issues {
    background-color: #BFBFCF;
    
    .common-issues-content {
        padding: 100px 1rem;
        display: flex;
        flex-direction: column;
        gap: 60px;
        align-items: center;
        
        
        .common-issues-header {
            display: flex;
            flex-direction: column;
            gap: 40px;
            align-items: center;
            text-align: center;
            
            h2 {
                font-family: 'Inter Tight', sans-serif;
                font-style: italic;
                font-size: 42px;
                color: #111F30;
                line-height: normal;
            }

            h3 {
                font-family: 'Inter Tight', sans-serif;
                font-style: italic;
                font-weight: normal;
                font-size: 30px;
                color: #111F30;
                line-height: normal;
            }
            
            .common-issues-subtitle {
                font-family: 'Inter', sans-serif;
                font-weight: 300;
                font-size: 20px;
                line-height: 26px;
                color: #000000;
                max-width: 1000px;
                text-align: left;

                strong {
                    font-weight: 700;
                }
            }
        }
        
        .common-issues-grid {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            justify-content: center;
            
            .common-issues-item {
                flex: 1 1 300px;
                max-width: 373.33px;
                display: flex;
                flex-direction: column;
                gap: 10px;
                align-items: center;
                text-align: center;
                
                .common-issues-image {
                    width: 100%;
                    aspect-ratio: 1 / 1;
                    overflow: hidden;
                    position: relative;
                    
                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }
                }
                
                h3 {
                    font-family: 'Inter', sans-serif;
                    font-weight: 700;
                    font-size: 20px;
                    line-height: 26px;
                    color: #000000;
                    margin: 0;
                }
                
                p {
                    font-family: 'Inter', sans-serif;
                    font-weight: 300;
                    font-size: 20px;
                    line-height: 26px;
                    color: white;
                    margin: 0;
                }
            }
        }
    }

}

/* What To Consider Section */
#blog .consider-suspension-parts {
    background-color: #0C1536;
    
    .consider-suspension-parts-wrap {
        padding: 100px 1rem;
        display: flex;
        flex-direction: column;
        gap: 60px;
        
        h2 {
            font-family: 'Inter Tight', sans-serif;
            font-style: italic;
            font-size: 42px;
            color: white;
            text-align: center;
            line-height: normal;
        }
        
        .consider-suspension-parts-grid {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            justify-content: flex-start;
            
            .consider-suspension-parts-item {
                border: 1px solid white;
                border-radius: 20px;
                padding: 30px;
                display: flex;
                gap: 30px;
                align-items: start;
                align-self: flex-start;
                height: auto;
                /* max-width: 585px; */
                flex: 0 1 585px;

                &.consider-suspension-parts-last-item {
                    /* border: none;
                    margin-top: -80px; */
                    margin-left: auto;
                    margin-right: auto;
                }
                
                .check-icon {
                    width: 56px;
                    height: 56px;
                    flex-shrink: 0;
                }
                
                .consider-suspension-parts-content {
                    flex: 1;
                    display: flex;
                    flex-direction: column;
                    gap: 30px;
                    
                    h3 {
                        font-family: 'Inter', sans-serif;
                        font-weight: 700;
                        font-style: italic;
                        font-size: clamp(1.6875rem, 1.375rem + 0.7813vw, 1.875rem);
                        color: white;
                        line-height: 40px;
                        margin: 0;
                    }
                    
                    p {
                        font-family: 'Inter', sans-serif;
                        font-weight: 300;
                        font-size: 20px;
                        line-height: 26px;
                        color: #ffffff !important;
                        margin: 0;
                    }
                }
            }
        }
    }

}

/* Recommended Braking Maintenance Schedule for European Cars */
#blog .braking-maintenance-schedule {
    padding: 100px 0;
    background-color: #BFBFCF;

    .euro-models-suspension-problems-content {
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        gap: 60px;
        align-items: center;
        
        
        .euro-models-suspension-problems-header {
            display: flex;
            flex-direction: column;
            gap: 40px;
            align-items: center;
            text-align: center;
            
            h3 {
                font-family: 'Inter Tight', sans-serif;
                font-style: italic;
                font-size: 30px;
                font-weight: 400;
                color: #111F30;
                line-height: normal;
            }
            
            .common-issues-subtitle {
                font-family: 'Inter', sans-serif;
                font-weight: 300;
                font-size: 20px;
                line-height: 26px;
                color: white;
                max-width: 1000px;
            }
        }
        
        .euro-models-suspension-problems-grid {
            display: grid;
            gap: 30px;
            grid-template-columns: repeat(3, 1fr);
            
            .euro-models-suspension-problems-item {
                width: 100%;
                display: flex;
                flex-direction: column;
                gap: 10px;
                align-items: center;
                text-align: center;
                
                .euro-models-suspension-problems-image {
                    width: 100%;
                    aspect-ratio: 1 / 1;
                    overflow: hidden;
                    position: relative;
                    
                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }
                }
                
                h4 {
                    font-family: 'Inter', sans-serif;
                    font-weight: 700;
                    font-size: 20px;
                    line-height: 26px;
                    color: #000000;
                    margin: 0;
                }
                
                p {
                    font-family: 'Inter', sans-serif;
                    font-weight: 300;
                    font-size: 20px;
                    line-height: 26px;
                    color: white;
                    margin: 0;
                }

                span {
                    display: block;
                    font-family: 'Inter', sans-serif;
                    font-style: italic;
                    font-weight: 300;
                    font-size: 13px;
                    line-height: 26px;
                    color: white;
                    padding-top: 10px;

                    a {
                        color: white !important;
                        text-decoration: underline;
                    }
                }

                &:last-child {
                    grid-column: span 2;

                    > div {
                        background-color: #0C1536;
                        padding: 4rem;
                        border-radius: 4px;
                        
                        p {
                            color: #ffffff !important;
                            text-align: left;
                            
                        }
                    }
                }
            }
        }
    }
    
}

/* Hero Banner */
.cp-euro-banner {
    background-color: #0C1536;
    padding: 50px 0;

    a {
        display: block;
        width: 100%;

        img {
            display: block;
            width: 100%;
            height: auto;
            object-fit: cover;
        }

    }

}

/* Responsive Design */
@media (max-width: 1242px) {

    #blog {

        .euro-brake-brands-details {
            .euro-brake-brand-detail {
                &.bosch, &.bmw, &.audi {
                    margin: 0 1rem;
                }
            }
        }

        .euro-brake-brands-details {
            .euro-brake-brand-detail {
                padding: 50px 1rem;
            }
        }

        .consider-brake-parts {
            .consider-brake-parts-wrap {
                .consider-brake-parts-grid {
                    display: grid;
                    grid-template-columns: repeat(2, 1fr);
                    gap: 40px;

                    .consider-brake-parts-item {
                        box-sizing: border-box;
                        max-width: none;
                        width: 100%;
                    }
                }
            }
        }

    }

}

@media (max-width: 990px) {

    .brake-systems {
        .suspension-systems-content {
            padding: 100px 1rem;
        }
    }

}

@media (max-width: 897px) {

    #blog {

        .euro-brake-brands-details {
            .euro-brake-brand-detail {
                .euro-brake-brand-header {
                    flex-direction: column;
                }
            }
        }

        .euro-brake-brands-details {
            padding: 0;

            .euro-brake-brand-detail {
                .es-part-images {
                    display: flex;
                    flex-wrap: nowrap;
                    gap: 16px;
                    overflow-x: auto;
                    -webkit-overflow-scrolling: touch;
                    scroll-snap-type: x mandatory;
                    padding-bottom: 8px;
                    
                    .es-part-item {
                        flex: 0 0 262px; /* card width for swipe */
                        scroll-snap-align: start;
                    }
                }
            }
        }

        .euro-brake-brands-details {
            .euro-brake-brand-detail {
                padding: 50px 16px;
            }
        }

        .euro-brake-brands-details {
            .euro-brake-brand-detail {
                .es-brand-description {
                    flex-direction: column;
                }
            }
        }

        .euro-brake-brands-details {
            .euro-brake-brand-detail {
                .es-brand-description {
                    p {
                        width: 100%;
                    }
                }
            }
        }

        .consider-brake-parts {
            .consider-brake-parts-wrap {
                padding: 50px 1rem;

                .consider-brake-parts-grid {
                    grid-template-columns: repeat(1, 1fr);

                    .consider-brake-parts-item {
                        &.consider-brake-parts-last-item {
                            margin: 0;
                            padding: 0;
                        }
                    }
                }

            }
        }

    }

}

/* Mobile */
@media (max-width: 640px) {

    #blog {

        .tf-cp-itg-logo {
            padding: 16px;
        }

        #tz-toggle-hamburger-icon {
            top: 20px;
            right: 18px;
        }

        .euro-brake-hero {
            picture img {
                height: 500px;
            }
        }    

        .euro-brake-hero {
            .euro-brake-hero-info-wrap {
                margin-top: 340px;

                &:before {
                    background: linear-gradient(to bottom, rgba(191, 191, 207, 0) 0%, rgba(191, 191, 207, 1) 14.904%, #BFBFCF 100%);
                }
            }
        }

        .euro-brake-hero {
            .euro-brake-hero-info-wrap {
                .euro-brake-hero-info {
                    .euro-brake-hero-info-inner {
                        .esh-hero-desc {
                            max-width: none;
                            width: 100%;
                        }
                    }
                }
            }
        }

        .euro-brake-hero {
            .euro-brake-hero-info-wrap {
                .euro-brake-hero-info {
                    .euro-brake-hero-info-inner {
                        max-width: none;
                        width: 100%;
                        padding: 2rem 1rem 4rem;
                    }
                }
            }
        }

        .euro-brake-brands {
            .euro-brake-brands-content {
                padding: 50px 1rem;
            }
        }

        .euro-brake-brands {
            .euro-brake-brands-content {
                .euro-brake-brands-logos {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 20px;
                    a {
                        display: flex;
                        flex: 0 0 calc(50% - 10px);
                        justify-content: center;
                    }
                    .euro-brake-brands-logo-item {
                        flex: 1 1 auto;
                        width: 100%;

                        img {
                            max-width: 160px;
                            height: auto;
                            margin: 0 auto;
                        }
                    }
                }
            }
        }

        .euro-brake-recommendation {
            .recommendation-section {
                padding: 50px 0;

                .recommendation-content {
                    flex-direction: column;
                    padding: 0 1rem;

                    .recommendation-image {
                        width: 100%;
                        height: 320px;
                    }

                    .recommendation-text {
                        width: 100%;

                        .checkmark-icon {
                            display: table;
                            margin: 0 auto;
                        }

                        h2 {
                            text-align: center;
                        }
                    }
                }
            }
        }

        .brake-systems {
            .brake-systems-content {
                padding: 50px 1rem;
            }
        }

        .common-issues {
            .common-issues-content {
                padding: 50px 1rem;
            }
        }

        .consider-suspension-parts {
            .consider-suspension-parts-wrap {
                padding: 50px 1rem;
            }
        }

        .braking-maintenance-schedule{
            padding: 50px 0;

            .euro-models-suspension-problems-content {
                padding: 0 1rem;

                .euro-models-suspension-problems-grid {
                    grid-template-columns: repeat(1, 1fr);

                    .euro-models-suspension-problems-item {
                        min-width: 100%;
                        max-width: none;

                        &:last-child {
                            grid-column: span 1;

                            > div {
                                padding: 2rem;
                            }
                        }

                        .euro-models-suspension-problems-image {
                            width: 100%;
                            height: auto;
                        }
                    }
                }
            }
        }

    }

}

