.container-bristol-events {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 64px 40px 64px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    gap: 20px;
}

.container-bristol-events .left {
    width: 640px;
    flex-shrink: 0;
}

.container-bristol-events .image-large {
    width: 100%;
    height: 700px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    background-color: #f3f3f3;
}

.container-bristol-events .image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.container-bristol-events .right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.container-bristol-events .content-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 0 32px 88px;
    min-height: 480px;
    justify-content: center;
    gap: 50px;
}

.container-bristol-events .title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    max-width: 448px;
}

.container-bristol-events .title  {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 41px;

    line-height: 1.05;
    color: #5a4f4c;
    margin: 0;
    white-space: pre-wrap;
}

.container-bristol-events .title-line {
    background-color: #9e5520;
    height: 2px;
    width: 40px;
}

.container-bristol-events .description {
line-height: 25.817px;
    color: #5a4f4c;
    max-width: 448px;
}

.container-bristol-events .btn-wrapper {
    width: 100%;
    max-width: 448px;
}

.container-bristol-events .btn {
    line-height: 1;
    background-color: #9e5520;
    border: 0.5px solid #957143;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    min-width: 240px;
    padding: 0 20px;
    color: #fbf8f8;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.container-bristol-events .btn:hover {
    background-color: #8c491b;
}

.container-bristol-events .image-small-wrapper {
    height: 300px;
    position: relative;
    width: 100%;
}

.container-bristol-events .image-small {
    position: absolute;
    left: -60px;
    top: 0;
    max-width: 712px;
    height: 280px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #fbf8f8;
}

.container-bristol-events .image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .container-bristol-events {
        flex-direction: column;
        padding: 20px 16px;
    }

    .container-bristol-events .left {
        width: 100%;
    }

    .container-bristol-events .image-large {
        height: 500px;
    }

    .container-bristol-events .content-top {
        padding: 32px 0;
        min-height: auto;
    }

    .container-bristol-events .image-small-wrapper {
        height: auto;
    }

    .container-bristol-events .image-small {
        position: relative;
        left: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 767px) {
    .container-bristol-events .image-large {
        height: 350px;
    }

    .container-bristol-events .title  {
        font-size: 28px;
    }

    .container-bristol-events .btn {
    line-height: 1;
        width: 100%;
    }
}