
.summary {
    border-radius: 20px;
    background-color: #fff;
    border: 1px solid #F0F0F0;
    background-image: url('../img/bg_squares.svg');
    background-position: center center;
    padding: 80px 185px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 150px;
    margin-bottom: 126px;
}

.summary .summary_heading {
    font-family: Rubik;
    font-size: 42px;
    font-weight: 600;
    line-height: 60px;
    text-align: center;
    color: #474766;
    margin-bottom: 24px;
}

.summary .summary_text {
    font-family: Rubik;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: center;
    color: var(--Secondary-400-Text-Base, #8787AB);
    margin-bottom: 32px;
}

.summary .event_time {
    font-family: Rubik;
    font-size: 24px;
    font-weight: 600;
    line-height: 31.2px;
    text-align: center;
    color: var(--Secondary-500-Text-Heading, #474766);
    margin-bottom: 32px;
}

.summary .socials_block {
    max-width: 506px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 60px;
}

.summary .socials_block .socials {
    display: flex;
    gap: 16px;
}

.summary .socials_block .socials .social_link {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--Secondary-500-Text-Heading, #474766);
    border: 1px solid #C7E1FF;
    flex: 1;
    padding: 9.75px;
    border-radius: 12px;
    font-family: Rubik;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
}

.summary .socials_block .socials .social_link .social_icon {
    height: 26px;
    width: 26px;
    object-fit: contain;
}

.summary .socials_block .social_subtext {
    font-family: Rubik;
    font-size: 13px;
    font-weight: 450;
    line-height: 19.5px;
    text-align: center;
    color: var(--Secondary-400-Text-Base, #8787AB);
}

@media screen and (max-width: 1200px) {
    .summary .summary_heading {
        font-size: 32px;
        line-height: 150%;
    }
}

@media screen and (max-width: 1150px) {
    .summary {
        padding: 80px;
    }
}

@media screen and (max-width: 800px) {
    .summary {
        margin-top: 65px;
        margin-bottom: 50px;
        padding: 40px;
    }

    .summary .summary_heading {
        font-size: 28px;
        line-height: 120%;
    }

    .summary .summary_text {
        font-size: 16px;
        line-height: 120%;
        margin-bottom: 22px;
    }

    .summary .event_time {
        font-size: 18px;
        line-height: 120%;
        margin-bottom: 22px;
    }

    .summary .socials_block {
        margin-top: 36px;
    }
}

@media screen and (max-width: 680px) {
    .summary .socials_block .socials {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .summary {
        padding: 20px;
    }

    .summary .summary_text {
        text-align: left;
    }

    .summary .summary_heading {
        margin-bottom: 20px;
    }
}

