/* Bike Custom Component Styles */
.bike-custom__container {
    max-width: 1320px;
    width: 100%;
    height: 720px;
    margin: 0 auto;
    padding: 2% 2%;
    font-family: 'Arial', sans-serif;
    box-sizing: border-box;
    position: relative;
}

.bike-custom__header {
    text-align: center;
    margin-bottom: 2%;
}

.bike-custom__title {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.bike-custom__subtitle {
    font-size: clamp(0.9rem, 1.2vw, 1.2rem);
    color: #666;
    margin-top: 0;
}

.bike-custom__images-container {
    display: flex;
    gap: 1.5%;
    justify-content: space-between;
    height: 100%;
    margin-bottom: 2%;
}

.bike-custom__large-image {
    position: relative;
    width: 47.2%;  /* 670px / 1320px ≈ 47.2% */
    height: 100%;
    margin-bottom: 40px; /* Add margin to prevent overlap with name */
}

.bike-custom__large-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bike-custom__person-name {
    position: absolute;
    font-size: clamp(1rem, 1.7vw, 24px);
    bottom: -40px;
    left: 0;
    width: 100%;
    text-align: center;
    color: black;
    font-weight: 500;
    font-size: 1.2rem;
}

.bike-custom__small-images {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 48.3%;  /* 600px / 1320px ≈ 42.3% */
}

.bike-custom__small-image {
    width: 100%;
    height: 48.5%;  /* 325px / 670px ≈ 48.5% */
}

.bike-custom__small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bike-custom__button-container {
    text-align: center;
    position: relative;
    margin-top: 3%;
    width: 100%;
}

.bike-custom__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #e41c1c;
    color: white;
    width: 420px;
    height: 60px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.3rem;
}




/* Responsive Styles */
@media (max-width: 1320px) {
    .bike-custom__container {
        height: auto;
        aspect-ratio: 1320 / 720;
    }
}

@media (max-width: 1200px) {
    .bike-custom__images-container {
        flex-direction: column;
        gap: 1rem;
        height: auto;
    }
    
    .bike-custom__large-image {
        width: 100%;
        height: 0;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        margin-bottom: 50px; /* Increased margin for stacked layout */
    }
    
    .bike-custom__large-image img {
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .bike-custom__small-images {
        width: 100%;
        gap: 1rem;
    }
    
    .bike-custom__small-image {
        width: 100%;
        height: 0;
        padding-bottom: 54.2%; /* 325/600 aspect ratio */
        position: relative;
    }
    
    .bike-custom__small-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .bike-custom__person-name {
        bottom: -40px;
    }
}

@media (max-width: 768px) {
    .bike-custom__container {
        aspect-ratio: auto;
        height: auto;
    }
    
    .bike-custom__title {
        font-size: 1.5rem;
    }
    
    .bike-custom__subtitle {
        font-size: 1.2rem;
    }
    
    .bike-custom__container {
        padding: 1rem;
    }
    
    .bike-custom__button {
        width: 280px;
        height: 50px;
    }
} 