.runda_science_standards {
    padding: calc(var(--text-gap-lg) * 2) 0;
}
.runda_science_standards .runda-title{
    margin-bottom: 16px;
}
.runda_science_standards_content {
    display: flex;
    align-items: center;
    margin-top: var(--text-gap);
    gap: var(--text-gap-lg);
}

.runda_science_standards_content_list {
    width: 54.6%;
    display: flex;
    flex-direction: column;
    gap: var(--text-gap-sm);
}

.runda_science_standards_content_item {
    display: flex;
    align-items: center;
}

.runda_science_standards_content_item_num {
    width: 80px;
    font-family: Montserrat;
    font-style: italic;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1667;
    background: linear-gradient(180deg, #AE9D6F 0%, #E7CF8E 54.69%, #E7CF8E 84.38%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.runda_science_standards_content_item_content {
    flex: 1;
}

.runda_science_standards_content_item_content-title {
    font-family: var(--semiBold-font-family);
    color: var(--title-text-color);
    font-size: var(--text-flag-size);
    font-weight: 500;
    line-height: normal;
    margin-bottom: 8px;
}

.runda_science_standards_content_item_content .runda-text {
    color: #2F201A;
}

.runda_science_standards_content_pic_wrap {
    flex: 1;
    aspect-ratio: 1/1;
}

.runda_science_standards_content_pic_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1200px) {
    .runda_science_standards_content_item_num {
        width: 60px;
        font-size: 40px;
    }
}

@media screen and (max-width: 992px) {
    .runda_science_standards_content {
        flex-direction: column;
    }

    .runda_science_standards_content_list {
        width: 100%;
    }

    .runda_science_standards_content_pic_wrap {
        width: 100%;
        order: -1;
    }

    .runda_science_standards_content_item_num {
        width: 50px;
        font-size: 30px;
    }

    .runda_science_standards_content_list {
        gap: 20px;
    }
}