/* Start custom CSS for html, class: .elementor-element-3e2e499a */.read-more-fullwidth {
    width: 100%;
    background-color: #f5f3ee; /* Dodany kolor tła */
    font-family: 'Montserrat', sans-serif;
    color: #5a534c;
    padding: 40px; /* Zwiększony padding, aby treść miała oddech od krawędzi tła */
    box-sizing: border-box;
}

/* Nagłówek sekcji */
.section-header {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 400;
    margin: 0;
    padding-right: 20px;
    white-space: nowrap;
    color: #5a534c;
}

.header-line {
    flex-grow: 1;
    height: 1px;
    background-color: #d1cbc4;
}

/* Układ treści */
.content-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.image-box {
    flex: 0 0 40%;
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.text-box {
    flex: 1;
}

.text-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 15px 0;
}

.text-box .meta {
    font-size: 12px;
    color: #8c8279;
    margin-bottom: 30px;
    text-transform: lowercase;
}

/* Przycisk */
.action-button {
    display: inline-block;
    background-color: #B46A4D;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.action-button:hover {
    opacity: 0.9;
    color: #ffffff;
}

/* RWD - Tablet i Mobile */
@media (max-width: 1024px) {
    .content-wrapper {
        gap: 30px;
    }
    .text-box h3 {
        font-size: 20px;
    }
    .read-more-fullwidth {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .image-box {
        width: 100%;
    }
    .section-header h2 {
        font-size: 18px;
    }
    .read-more-fullwidth {
        padding: 20px;
    }
}/* End custom CSS */