.page_heder {
    padding-block: 50px;
    margin-top: 25px;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-top: 0;
}

.page_heder h1 {
    font-weight: 700;
    color: black;
}

@media (max-width: 768px) {
    .page_content {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
}

.main {
    width: 100%;
    background-color: rgb(237, 239, 239);

}

.cards {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding-block: 90px;
    width: 100%;
    padding-right: 0px;
}

.cards_item {
    display: flex;
    padding: 1rem;
    width: 100%;
    margin-top: 0px;
}

.card_image {
    position: relative;
    max-height: 239px;
}

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

@media (min-width: 40rem) {
    .cards_item {
        width: 50%;
    }
}

@media (min-width: 56rem) {
    .cards_item {
        width: 33.3333%;
        margin-top: 0px;
    }
}

.card {
    width: 100%;
    background-color: white;
    border-radius: 0.25rem;
    box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card_content {
    position: relative;
    padding: 16px 10px 10px 20px;
    margin: 0px 8px 8px 0;
    max-height: 350px;
    min-height: 350px;
}

.card_title {
    position: relative;
    margin: 20px 0 24px;
    padding-bottom: 10px;
    text-align: right;
    font-size: 16px;
    font-weight: 700;
    color: black;
}

hr {
    margin: 24px auto;
    width: 50px;
    border-top: 2px solid #c89b3f;
}

.card_text p {
    margin: 0 0 24px;
    color: black;
    /* font-size: 12px; */
    /* line-height: 1.5; */
}

.card_text p:last-child {
    margin: 0;
}

.card_information {
    display: flex;
    justify-content: space-between;
    font-size: small;
    color: rgb(158, 158, 158);
    font-weight: bold;
}

.separator_line {
    margin: 0;
    margin-bottom: 20px;
    text-align: right;
    width: 60px;
    border-top: 2px solid rgb(158, 158, 158);
}

.separator_buttom_line {
    margin: 0;
    margin-bottom: 20px;
    text-align: right;
    width: 100%;
    border-top: 1px solid rgb(218, 215, 215);
}

.card_button_space {
    display: flex;
    justify-content: end;
    align-items: center;
}

.card_button {
    display: flex;
    border: none;
    margin-top: 5px;
    border-radius: 12px;
    width: fit-content;
    padding-inline: 15px;
    padding-block: 2px;
    font-weight: bold;
    opacity: 0.6;
}

.card .admin_section {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 25px;
    padding-bottom: 8px;
}

.card .admin_section .admin_image {
    width: 50px;
    height: 50px;
}

.card .admin_section .admin_image img {
    border-radius: 50%;
}

.card .admin_section .admin_information {
    width: calc(100% - (50px + 50px));
    height: 100%;
    text-align: left;
    padding: 7px;
    font-size: 14px;
    font-weight: 700;
    color: black;
    opacity: .4;
}

.card .admin_section .admin_information .teacher_position {
    font-size: 12px;
    font-weight: 400;
}

.card .admin_section .admin_shere {
    width: 50px;
    height: 50px;
    padding: 10px;
}


.cta-button {
    width: auto;
    font-size: 30px;
    text-align: center;
    border-radius: 15px;
    margin: 0px auto 0;
    background-color: var(--ai-blue-color);
    color: var(--ai-white-color);
    font-weight: bolder;
    display: inline-block;
    padding: 20px 60px;
    text-decoration: none;
    padding: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
    color: #e0e0e0;
}

.next_button_blog {
    text-align: center;
}

.next_blog_button {
    padding-inline: 20px;
    padding-block: 10px;
    margin-bottom: 30px;
}

body>.content {
    padding-bottom: 0px;
}