.one--case__section h1 {
    margin-bottom: 35px;
    font-family: Montserrat;
    color: #0039C8;
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    margin-top: 30px;
}

.case-detail {
    padding: 20px 0 80px 0;
}

.case-detail__header {
    margin-bottom: 60px;
}

.case-detail__title {
    margin: 24px 0 0;

    font-size: 54px;
    line-height: 1.1;
    font-weight: 700;

    color: #111;
}

.sb-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 18px;

    border: 1px solid rgba(0, 57, 200, .25);
    border-radius: 40px;

    background: #fff;

    color: #111;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    text-transform: uppercase;
    letter-spacing: .08em;

    box-shadow:
            0 4px 12px rgba(0, 57, 200, .08);

    transition: all .3s ease;
}

.sb-tag::before {
    content: "";

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #0039C8;

    box-shadow:
            0 0 12px rgba(0, 57, 200, .5);
}

.sb-tag:hover {
    border-color: #0039C8;

    box-shadow:
            0 8px 20px rgba(0, 57, 200, .15);

    transform: translateY(-1px);
}
.case-detail__content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.case-section {
    position: relative;

    padding: 36px;

    background: #fff;

    border-radius: 24px;

    border: 1px solid #e9edf7;

    box-shadow:
            0 8px 30px rgba(0,0,0,.04);

    transition: .3s;
}

.case-section:hover {
    transform: translateY(-2px);

    box-shadow:
            0 16px 40px rgba(0,57,200,.08);
}

.case-section__head {
    display: flex;
    align-items: center;

    gap: 16px;

    margin-bottom: 24px;
}

.case-section__line {
    width: 48px;
    height: 4px;

    border-radius: 50px;

    background: #0039C8;
}

.case-section__title {
    margin: 0;

    font-size: 24px;
    font-weight: 700;

    color: #111;
}

.case-section__body {
    font-size: 17px;
    line-height: 1.85;

    color: #4b5565;
}

.case-section__body p:first-child {
    margin-top: 0;
}

.case-section__body p:last-child {
    margin-bottom: 0;
}

.case-section--result {
    background:
            linear-gradient(
                    135deg,
                    #0039C8 0%,
                    #002a93 100%
            );

    border: 0;

    color: #fff;
}

.case-section--result .case-section__title {
    color: #fff;
}

.case-section--result .case-section__body {
    color: rgba(255,255,255,.92);
}

.case-section--result .case-section__line {
    background: #fff;
}