/* BREAKPOINT */
/* bloc-large-img-txt */
.large-img-txt {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media screen and (min-width: 1025px) {
    .large-img-txt {
        padding: 0;
        flex-direction: row-reverse;
        align-items: end;
        gap: 0;
    }

    .large-img-txt.reverse {
        flex-direction: row;
        align-items: flex-start;
    }
}

.large-img-txt.dark {
    background: var(--black);
    color: var(--white);
}

.large-img-txt--content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media screen and (min-width: 1025px) {
    .large-img-txt--content {
        width: calc(350px + 160px);
        padding: 80px;
    }
}

.large-img-txt--content-title {
    line-height: 140%;
    display: flex;
    align-items: center;
    gap: 32px;
}

.large-img-txt--content-title::before {
    content: '';
    -webkit-mask: url("../images/icon/locationstroke.svg");
    mask: url("../images/icon/locationstroke.svg");
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    width: 32px;
    height: 32px;
    background: var(--orange);
}

.large-img-txt--content-title p {
    font-family: var(--silka);
    font-size: 1.5rem;
    font-style: italic;
}

@media screen and (min-width: 1025px) {
    .large-img-txt--content-title p {
        font-size: 2rem;
    }
}

.large-img-txt--img {
    height: 220px;
    position: relative;
}

@media screen and (min-width: 1025px) {
    .large-img-txt--img {
        flex: 1;
        height: 570px;
    }
}

.large-img-txt--img::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(360deg, rgba(27, 27, 27, 0.9) 0%, rgba(27, 27, 27, 0) 100%);
}

.large-img-txt--img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.large-img-txt--img-legend {
    position: absolute;
    margin-left: 16px;
    bottom: 0;
    left: 0;
    border-left: 1px solid var(--orange);
    color: var(--white);
    padding: 16px 10px 50px 32px;
    line-height: normal;
}

@media screen and (min-width: 1025px) {
    .large-img-txt--img-legend {
        max-width: 330px;
        margin-left: 80px;
    }
}

/* //bloc-large-img-txt */