/**
 * Bloc Paragraphes - Styles
 * 
 * @package MediaPilote
 * @since 1.0.0
 */

.block-paragraphes {
    width: 100%;
    background-color: transparent;
}

.block-paragraphes .paragraphs-wrapper {
    max-width: 1640px;
    margin: 0 auto;
    /* padding: 0 20px; */
}

.block-paragraphes .paragraph-item {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 80px 0;
}

/* .block-paragraphes .paragraph-item.has-separator {
    border-bottom: 1px solid rgba(54, 69, 0, 0.2);
} */

/* Titre */
.block-paragraphes .paragraph-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(54, 69, 0, 0.85);
    margin: 0;
}

/* Contenu */
.block-paragraphes .paragraph-content {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 3.2px;
    color: #364500;
}

.block-paragraphes .paragraph-content p {
    margin: 0 0 1em 0;
}

.block-paragraphes .paragraph-content p:last-child {
    margin-bottom: 0;
}

.block-paragraphes .paragraph-content strong,
.block-paragraphes .paragraph-content b {
    font-weight: 700;
    line-height: 1.875;
}

.block-paragraphes .paragraph-content ul,
.block-paragraphes .paragraph-content ol {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.block-paragraphes .paragraph-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 0.5em;
    font-weight: 700;
    line-height: 1.875;
}

.block-paragraphes .paragraph-content li::before {
    content: '>';
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* Bouton */
.block-paragraphes .paragraph-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: none;
    border-bottom: 1px solid rgba(54, 69, 0, 0.85);
    background: transparent;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    color: rgba(54, 69, 0, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.block-paragraphes .paragraph-button:hover {
    opacity: 0.7;
    transform: translateX(5px);
}

.block-paragraphes .button-icon {
    width: 21px;
    height: 20.5px;
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 21'%3E%3Cpath d='M0 10.5L19 10.5M19 10.5L10.5 2M19 10.5L10.5 19' stroke='%23364500' stroke-opacity='0.85' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.block-paragraphes .button-text {
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 1440px) {
    /* .block-paragraphes .paragraphs-wrapper {
        max-width: 90%;
    } */

    .block-paragraphes .paragraph-title {
        font-size: 2.08vw;
    }
}

@media (max-width: 1024px) {
    .block-paragraphes .paragraph-item {
        padding: 60px 0;
        gap: 30px;
    }

    .block-paragraphes .paragraph-title {
        font-size: 24px;
        letter-spacing: 4px;
    }

    .block-paragraphes .paragraph-content {
        font-size: 15px;
        letter-spacing: 2.5px;
    }


}

@media (max-width: 768px) {
    /* .block-paragraphes .paragraphs-wrapper {
        padding: 0 15px;
    } */

    .block-paragraphes .paragraph-item {
        padding: 40px 0;
        gap: 25px;
    }

    .block-paragraphes .paragraph-title {
        font-size: 4vw;
        letter-spacing: 3px;
    }

    .block-paragraphes .paragraph-content {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .block-paragraphes .paragraph-button {

        gap: 8px;
    }

    .block-paragraphes .button-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .block-paragraphes .paragraph-item {
        padding: 30px 0;
        gap: 20px;
    }

    .block-paragraphes .paragraph-title {
        font-size: 5vw;
        letter-spacing: 2px;
    }

    .block-paragraphes .paragraph-content {
        letter-spacing: 1.5px;
    }


}