.wisdom-hero {
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 70px;
    align-items: center;
    min-height: 315px;
    margin-bottom: 60px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e1e1e1;
}

.wisdom-hero-copy h2 {
    margin: 0;
    color: #4b4b4b;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.55;
}

.wisdom-hero-copy h2 strong,
.shape-copy h2 strong {
    color: #25a8c8;
    font-weight: 400;
}

.wisdom-hero-image,
.shape-image {
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #fff;
}

.wisdom-hero-image {
    height: 315px;
}

.wisdom-shape-section {
    display: grid;
    grid-template-columns: 730px 1fr;
    gap: 42px;
    align-items: center;
    margin-bottom: 70px;
    padding-bottom: 70px;
    border-bottom: 1px solid #e1e1e1;
}

.shape-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.shape-image {
    height: 140px;
    background-color: #eef2f3;
}

.shape-label {
    min-height: 118px;
    padding: 18px 18px;
    background: #27a8d1;
    color: #fff;
    font-size: 17px;
    line-height: 1.45;
    box-sizing: border-box;
}

.shape-copy h2 {
    margin: 0 0 24px;
    color: #4b4b4b;
    font-size: 34px;
    font-weight: 400;
}

.shape-copy p {
    margin: 0;
    color: #666;
    font-size: 18px;
    line-height: 1.85;
}

.problem-head {
    display: grid;
    grid-template-columns: 390px 1fr;
    gap: 28px;
    align-items: center;
    margin-bottom: 38px;
    padding: 24px 48px;
    border: 1px dashed #d4d4d4;
}

.problem-head h2 {
    margin: 0;
    color: #4b4b4b;
    font-size: 27px;
    font-weight: 400;
}

.problem-head p {
    margin: 0;
    color: #777;
    font-size: 17px;
}

.problem-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.problem-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #555;
    font-size: 17px;
    line-height: 1.55;
}

.problem-list span {
    display: inline-flex;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #25a8c8;
    color: #fff;
    font-size: 14px;
}

@media (max-width: 768px) {

    .wisdom-hero,
    .wisdom-shape-section,
    .problem-head,
    .problem-list {
        grid-template-columns: 1fr;
    }

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