.str-bg {
    width: 100%;
    height: 300px;
    border-radius: 20px;
}

.str-title {
    color: #666;
    text-align: center;
    margin: 7rem 0;
}

.str-title p {
    font-size: 22px;
    line-height: 1.75;
    font-family: 'BookkMyungjo-Bd';
}

.str-title h5 {
    font-size: 18px;
    font-family: 'BookkMyungjo-Bd';
    text-align: right;
    margin-top: 1rem;
}

@font-face {
    font-family: 'BookkMyungjo-Bd';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302@1.0/BookkMyungjo-Bd.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

.str-wrapper {
    width: 85%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.str-box-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.str-box {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
    border-radius: 20px;
    border: 1px solid #eee;
    background-color: #fafafa;
}

.str-box p {
    color: #666;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    font-family: 'BMHANNAAir';
}

.str-box-icon {
    height: 65px;
    margin-bottom: 5px;
}

.str-text p {
    color: #666;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.85;
    font-family: 'BMHANNAAir';
}


/*==================================================*/
@media (max-width: 1050px) {
    .str-wrapper {
        width: 100%;
        gap: 2rem;
    }

    .str-bg {
        height: 50%;
    }
}


@media (max-width: 768px) {
    .str-bg {
        border-radius: 10px;
    }
    
    .str-title {
        margin: 4rem 0;
    }
    
    .str-box-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .str-box {
        border-radius: 10px;
    }
}


@media (max-width: 550px) {
    .str-title {
        margin: 3rem 0;
    }
    
    .str-title p,
    .str-title h5 {
        font-size: 16px;
    }

    .str-box {
        padding: 24px;
        gap: 10px;
    }
    
    .str-box p {
        font-size: 14px;
    }

    .str-box-icon {
        height: 45px;
    }

    .str-text p {
        font-size: 14px;
    }
}