.boat-section {
    position: relative;
    background-color: var(--lb-sand); /* Matchar maskens färg */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0rem 1.875rem;
    padding-bottom: 9.37rem;
    margin-bottom: 0!important;
}

@media (max-width: 992px) {
    .boat-section__line {
        display: none;
    }

    .boat-section {
        padding: 0rem 1.125rem;
        padding-bottom: 4rem;
    }
}

.boat-section--container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: var(--lb-container);
}

.boat-section__content {
    max-width: 60%;
    margin-bottom: 3rem;
}

.boat-section__line {
    margin-bottom: 2.06rem;
    line-height: 0;
}

.boat-section__text p {
    margin-bottom: 20px;
}

.boat-section__headline {
    font-size: clamp(1.9rem, 4vw, 4.0625rem);
    line-height: 110%;
    font-family: var(--lb-font-display);
    white-space: pre-line;
    color: var(--lb-faq);
    font-weight: 400;
    padding-bottom: 2.13rem;
}

.boat-section__text {
    font-family: var(--lb-font-sans);
    font-size: clamp(1rem, 1vw, 1.125rem);
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.boat-section__button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: transparent;
    border: 1px solid var(--lb-slate);
    color: var(--lb-slate);
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-bottom: 3rem;
}

.boat-section__button:hover {
    background-color: var(--lb-slate);
    color: #fff;
}

/* Bilderna ska vara flex-end och anpassa sig efter sin höjd */
.boat-section__images {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    align-items: flex-end; /* Flyttar bilderna till botten */
}

.boat-section__image-left {
    display: flex;
    gap: 1.5rem;
    align-items: flex-end; /* Flyttar bilderna till botten */
}

.boat-section__image-small,
.boat-section__image-large {
    height: auto;
    max-width: 100%;
    border-radius: 7px;
    object-fit: cover; /* Håller proportionerna på bilderna */
}

@media only screen and (max-width: 1024px) {
    .boat-section__content {
        max-width: 100%;
    }

    .boat-section__image-small,
    .boat-section__image-large {
        width: 90%;
        max-width: 400px;
    }
}

@media only screen and (max-width: 767px) {
    .boat-section__image-small,
    .boat-section__image-large {
        width: 100%;
        max-width: 400px;
    }
}

.boat-section__actions {
    display: flex;
    margin-top: 46px;
    gap: 14px;
}

.boat-section__actions .button.outlined {
    color: var(--lb-deep);
    border-color: var(--lb-deep);
}
