/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    background-color: #ffffff;
    color: #222222;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

button,
input,
textarea {
    padding: 0;
    background: none;
    border: 0;
    outline: none;
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    max-width: 1170px;
    padding: 0 15px;
}

/* Tendency Section */
.tendency#tendency {
    padding: 47px 0 40px;
}

#tendency .tendency__wr {
    max-width: 660px;
    width: 100%;
}

#tendency .tendency__title {
    color: #222;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
    margin-bottom: 40px;
}

#tendency .tendency__first {
    color: #222;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
}

#tendency .tendency__second {
    color: #222;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 40px;
}

#tendency .tendency__wrapper {
    border-radius: 5px;
    background: #f7f7f7;
    padding: 15px;
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

#tendency .tendency__text-first {
    color: #222;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 15px !important;
}

#tendency .tendency__text-first a {
    text-decoration: underline;
    color: #ff7e21 !important;
    font-weight: 600;
}

#tendency .tendency__text-second {
    color: #222;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.7;
}

#tendency .tendency__text-second a {
    text-decoration: none;
    color: currentColor;
}

#tendency .tendency__get {
    color: #222;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
}

#tendency .tendency__list {
    padding-left: 18px;
    margin-top: 0;
    margin-bottom: 40px;
}

#tendency .tendency__item {
    color: #222;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    list-style-type: initial;
    padding-left: 10px !important;
    margin-bottom: 0;
    list-style-position: outside;
    list-style-type: decimal;
}

#tendency .tendency__item a {
    color: currentColor;
    text-decoration: none;
    font-weight: 400;
}

.tendency__item + .tendency__item {
    margin-top: 15px;
}

#tendency .tendency__four {
    color: #222;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
}

#tendency .tendency__four a {
    font-weight: 700;
    color: currentColor;
    text-decoration: none;
}

#tendency .tendency__last {
    color: #222;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.7;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 430px) {
    .tendency#tendency {
        padding: 30px 0;
    }

    #tendency .tendency__title {
        font-size: 30px;
        line-height: 100%;
        margin-bottom: 30px;
    }

    #tendency .tendency__first {
        font-size: 16px;
    }

    #tendency .tendency__second {
        font-size: 16px;
        margin-bottom: 30px;
    }

    #tendency .tendency__wrapper {
        margin-bottom: 30px;
        display: block;
    }

    #tendency .tendency__text {
        margin-top: 15px;
    }

    #tendency .tendency__list {
        margin-bottom: 30px;
    }
}