.container-bristol-hotel-events {
    margin: 0 auto;
    max-width: 1440px;
    width: 100%;
    padding: 120px 64px;
    box-sizing: border-box;
}

.container-bristol-hotel-events .inner {
    display: flex;
    gap: 64px;
    align-items: center;
}

.container-bristol-hotel-events .visual {
    flex: 1;
    height: 560px;
    border-radius: 4px;
    overflow: hidden;
}

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

.container-bristol-hotel-events .content {
    flex: 1;
    max-width: 540px;
}

.container-bristol-hotel-events .title  {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin: 0 0 16px 0;
    color: #5A4F4C;

    font-size: 40px;
    font-style: normal;
    line-height: 105%;
}

.container-bristol-hotel-events .bar {
    width: 40px;
    height: 2px;
    background-color: #c2a175;
    margin-bottom: 32px;
}

.container-bristol-hotel-events .description {
    line-height: 1.6;
    margin-bottom: 40px;
    color: #5A4F4C;

}

.container-bristol-hotel-events .btn {
    line-height: 1;
    display: inline-flex;
    height: 56px;
    padding: 0 32px;
    background-color: #9e5520;
    color: #FBF8F8;
    border: none;
    font-family: 'Montserrat', sans-serif;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.container-bristol-hotel-events .btn:hover {
    background-color: #735835;
}

@media (max-width: 1200px) {
    .container-bristol-hotel-events {
        padding: 60px 40px;
    }
    .container-bristol-hotel-events .inner {
        gap: 48px;
    }
}

@media (max-width: 1024px) {
    .container-bristol-hotel-events .inner {
        flex-direction: column;
    }
    .container-bristol-hotel-events .visual {
        width: 100%;
        height: 400px;
    }
    .container-bristol-hotel-events .content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .container-bristol-hotel-events {
        padding: 40px 20px;
    }
    .container-bristol-hotel-events .title  {
        font-size: 28px;
    }
    .container-bristol-hotel-events .visual {
        height: 300px;
    }
}
