@import "./colors.css";

.section_inner {
    margin: 0 auto;
    @media screen and (max-width: 1023px) {
        width: calc(100% - 2.5rem);
    }
}
.section_text {
    font-size: 1rem;
    margin: 2.5rem 0 2.5rem;
    line-height: 1.78;
    @media screen and (max-width: 1023px) {
        margin: 1.5rem 0 1.5rem;
        line-height: 1.69;
        font-size: 0.75rem;
    }
}
.section_edit {
    @media screen and (max-width: 1023px) {
        padding-top: 0.875rem;
    }
}
.section_edit h3 {
    font-size: 1.25rem;
    color: var(--color-pink);
    font-weight: 700;
    padding-bottom: 0.325rem;
    @media screen and (max-width: 1023px) {
        font-size: 1rem;
    }
}
.section_edit p {
    font-size: 1rem;
    color: var(--color-black);
    font-weight: 500;
    margin-top: 1rem;
    margin-bottom: 2.125rem;
    line-height: 1.78;
    @media screen and (max-width: 1023px) {
        margin-top: 0;
        font-size: 0.75rem;
        line-height: 1.69;
    }
}
.section_item {
    padding-left: 1.75rem;
    position: relative;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-black);
    line-height: 1.69;
    @media screen and (max-width: 1023px) {
        padding-left: 1.25rem;
        font-size: 0.75rem;
    }
}
.section_item:nth-child(n + 2) {
    margin-top: 0.675rem;
}
.section_item:before {
    content: "";
    width: 8px;
    height: 14px;
    display: inline-block;
    position: absolute;
    left: 0.3rem;
    top: 0.25rem;
    transform: rotate(-135deg);
    border-top: 2px solid var(--color-pink);
    border-left: 2px solid var(--color-pink);
    @media screen and (max-width: 1023px) {
        width: 0.5rem;
        height: 0.875rem;
        top: 0;
    }
}
