body.rustud-home-body {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
}

body.rustud-home-body > .rustud-site-header {
    position: relative;
    z-index: 1200;
    flex: 0 0 auto;
}

body.rustud-home-body > .cont {
    height: auto;
    min-height: 0;
    flex: 1 1 auto;
    overflow-y: auto;
}

.rustud-home-proof {
    width: 100%;
    background: #f8f8fd;
    color: #202023;
    border-top: 1px solid #d7e9ff;
}

.rustud-home-proof__shell {
    width: calc(100% - 136px);
    max-width: 1264px;
    margin: 0 auto;
    padding: 76px 68px 100px;
    text-align: left;
}

.rustud-home-proof__intro {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.rustud-home-proof__intro h2 {
    margin: 0;
    color: #202023;
    font-size: 48px;
    line-height: 1.12;
    font-weight: 600;
}

.rustud-home-proof__intro p {
    margin: 22px auto 0;
    max-width: 760px;
    color: #4d5666;
    font-size: 17px;
    line-height: 1.65;
}

.rustud-home-proof__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-top: 58px;
}

.rustud-home-proof__heading--reviews {
    margin-top: 72px;
}

.rustud-home-proof__heading h3 {
    margin: 0;
    color: #202023;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
}

.rustud-home-proof__heading p {
    margin: 9px 0 0;
    color: #687184;
    font-size: 15px;
    line-height: 1.5;
}

.rustud-home-proof__heading > a {
    flex: 0 0 auto;
    padding: 10px 18px 12px;
    border: 1px solid #729aff;
    border-radius: 5px;
    color: #315bc7;
    background: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.rustud-home-proof__heading > a:hover,
.rustud-home-proof__heading > a:focus-visible {
    color: #fff;
    background: #729aff;
}

.rustud-home-tasks,
.rustud-home-reviews {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.rustud-home-task {
    display: flex;
    min-width: 0;
    min-height: 190px;
    padding: 24px;
    flex-direction: column;
    border: 1px solid #d7e9ff;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    color: #202023;
    text-decoration: none;
}

.rustud-home-task:hover,
.rustud-home-task:focus-visible {
    border-color: #729aff;
}

.rustud-home-task__type {
    color: #315bc7;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
}

.rustud-home-task h4 {
    margin: 13px 0 18px;
    color: #202023;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.rustud-home-task__meta {
    margin-top: auto;
    color: #737b8b;
    font-size: 13px;
    line-height: 1.4;
}

.rustud-home-task__link {
    margin-top: 14px;
    color: #315bc7;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.rustud-home-review {
    display: flex;
    min-width: 0;
    min-height: 250px;
    margin: 0;
    padding: 24px;
    flex-direction: column;
    border: 1px solid #d7e9ff;
    border-top: 4px solid #729aff;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.rustud-home-review__rating {
    color: #e8a923;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 2px;
}

.rustud-home-review > p {
    margin: 18px 0 24px;
    color: #343b48;
    font-size: 15px;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.rustud-home-review footer {
    display: flex;
    margin-top: auto;
    padding-top: 17px;
    flex-direction: column;
    border-top: 1px solid #e6ebf2;
}

.rustud-home-review footer strong {
    color: #202023;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.rustud-home-review footer span {
    margin-top: 4px;
    color: #737b8b;
    font-size: 13px;
    line-height: 1.45;
}

@media (max-width: 1040px) {
    .rustud-home-proof__shell {
        width: calc(100% - 64px);
        padding-right: 32px;
        padding-left: 32px;
    }

    .rustud-home-tasks,
    .rustud-home-reviews {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .rustud-home-proof__shell {
        width: calc(100% - 32px);
        padding: 56px 16px 72px;
    }

    .rustud-home-proof__intro h2 {
        font-size: 32px;
    }

    .rustud-home-proof__intro p {
        margin-top: 17px;
        font-size: 16px;
        line-height: 1.55;
    }

    .rustud-home-proof__heading,
    .rustud-home-proof__heading--reviews {
        align-items: flex-start;
        margin-top: 48px;
        flex-direction: column;
        gap: 17px;
    }

    .rustud-home-proof__heading h3 {
        font-size: 26px;
    }

    .rustud-home-tasks,
    .rustud-home-reviews {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 20px;
    }

    .rustud-home-task,
    .rustud-home-review {
        min-height: 0;
        padding: 21px;
    }
}
