#about_features,
#about_story {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 16px;
}

.about_page_heading_wrap {
    margin: 56px auto 40px;
    padding: 0 10%;
}

.about_intro_heading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about_intro_heading img {
    width: 34px;
    height: auto;
}

.about_intro_heading h1 {
    margin: 0;
    font-size: 23px;
    font-weight: 700;
    color: #292929;
}

#about_features {
    margin-top: 20px;
    margin-bottom: 72px;
}

.about_features_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 44px;
}

.about_feature_item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    text-decoration: none;
    color: #292929;
}

.about_feature_item > img {
    width: 44px;
    height: 44px;
    margin-top: 0;
}

.about_feature_item h3 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
}

.about_feature_item p {
    margin: 0 0 10px;
    color: #323232;
    line-height: 1.45;
    font-size: 16px;
}

.about_feature_item span {
    color: #b4000a;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.about_feature_item span img {
    width: 20px;
    height: auto;
    transition: transform 0.2s ease;
}

.about_feature_item:hover span img {
    transform: translateX(6px);
}

#about_story {
    margin-bottom: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.about_story_image {
    position: relative;
    overflow: hidden;
    height: 460px;
}

.about_story_image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.25);
}

.about_story_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right 80%;
    display: block;
}

.about_story_image p {
    position: absolute;
    left: 35px;
    bottom: 50px;
    margin: 0;
    color: #fff;
    z-index: 2;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.about_story_text {
    background: #c40d0e;
    color: #fff;
    padding: 40px 42px 52px;
    display: flex;
    flex-direction: column;
}

.about_story_text > p {
    margin: 0 0 30px;
    font-size: 16px;
    line-height: 1.45;
}

.about_story_text > p:last-of-type {
    margin-bottom: auto;
}

.about_story_signature {
    margin-top: 34px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
}

.about_story_signature strong {
    display: block;
    margin-bottom: -2px;
    font-size: 20px;
}

.about_story_signature p {
    margin: 0;
    font-size: 16px;
}

.about_story_signature img {
    max-width: 190px;
    height: auto;
}

@media (max-width: 1440px) {
    .about_story_image p {
        font-size: 20px;
        max-width: 340px;
    }

    .about_story_text > p {
        font-size: 15px;
    }

    .about_story_signature strong {
        font-size: 18px;
    }

    .about_story_signature p {
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    .about_story_image {
        height: 400px;
    }

    .about_features_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #about_story {
        grid-template-columns: 1fr;
    }

    .about_story_image p {
        font-size: 18px;
        max-width: 320px;
    }

    .about_story_text {
        padding: 30px 24px 40px;
    }
}

@media (max-width: 700px) {
    .about_page_heading_wrap {
        margin-top: 30px;
        margin-bottom: 18px;
    }

    .about_intro_heading h1 {
        font-size: 20px;
    }

    .about_story_image {
        height: 280px;
    }

    #about_features {
        margin-bottom: 34px;
    }

    .about_features_grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about_story_image p {
        left: 18px;
        bottom: 18px;
        font-size: 16px;
        max-width: 250px;
    }

    .about_story_text > p {
        font-size: 14px;
    }

    .about_story_signature {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-top: 22px;
    }
}

@media only screen and (max-width: 1680px) {
    .about_page_heading_wrap {
        padding: 0 5%;
    }
}

@media only screen and (max-width: 1314px) {
    .about_page_heading_wrap {
        padding: 0 2%;
    }
}

@media only screen and (max-width: 1199px) {
    .about_page_heading_wrap {
        padding: 0 10%;
    }
}

@media (max-width: 700px) {
    .about_page_heading_wrap {
        padding: 0 clamp(0.8rem, 4vw, 1.5rem);
    }
}
