/************************ Blog ***************************/
.blog_detail_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 96px;
}

.blog_detail {
    width: calc(100% - 400px - 96px);
    margin-top: 80px;
}

.main_body {
    min-height: 400px;
}

.main_body h2:first-of-type {
    margin-top: 0;
    margin-bottom: 20px;
}

.main_body h3 {
    color: var(--black);
    margin-bottom: -10px;
}

.main_body img {
    margin: 10px auto;
}

.main_body a {
    color: var(--black);
    font-weight: 700;
    text-decoration: underline;
}

.blog_category {
    background-color: var(--black);
    color: var(--white);
    margin-right: 25px;
}

.blog_date {
    background-color: var(--gold);
    color: var(--black);
}

.more_posts h2 {
    margin: 80px auto 0;
    text-align: center;
}

.more_posts .button {
    margin: 30px auto 96px;
}

.mobile {
    display: none;
}

.visual-anchor-class {
    position: absolute;
    margin-top: -100px;
    visibility: hidden;
}
  
blockquote {
    font-size: 20px;
    margin: 25px 0;
    padding: 60px 60px 60px 90px;
    border-top: 2px solid var(--light-blue);
    border-bottom: 2px solid var(--light-blue);
    background-color: var(--light-blue);
    line-height: 1.6;
    position: relative;
}

blockquote p {
    font-size: 26px;
    font-family: 'noah_grotesqueextrabold';
    text-transform: uppercase;
    font-style: normal;
    line-height: 1.3;
    padding-right: 40px;
    text-align: center;
    box-sizing: border-box;
    color: var(--white);
}
  
blockquote::before,
blockquote::after {
    font-family: "Font Awesome 5 Free";
    content: "\f10d";
    font-weight: 900;
    color: var(--dark-blue);
    font-size: 40px;
    position: absolute;
    left: 25px;
    top: 10px;
    opacity: 0.2;
}
  
blockquote::after {
    content: "\f10e";
    left: unset;
    top: unset;
    right: 25px;
    bottom: 10px;
}

.more_posts .BlogSlider {
    display: none;
}

/************************ Blog Side Column ***************************/
.apply_column {
    position: sticky;
    top: 192px;
    width: 400px;
    margin-top: 96px;
}

.apply_panel,
.mailing_list_form {
    background-color: var(--white);
    border: 2px solid var(--border-grey);
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
}

.mailing_list_form {
    margin-top: 30px;
}

.apply_panel_large {
    background-color: var(--white);
    border: 2px solid var(--border-grey);
    padding: 15px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    margin-top: 30px;
}

.apply_panel .apply_header {
    display: flex;
    align-items: flex-start;
}
    
.apply_panel h4,
.apply_panel_large h4 {
    margin-top: 20px;
    margin-bottom: 0;
}

.apply_panel h4:first-of-type,
.apply_panel_large h4:first-of-type {
    margin-top: 0;
}

.apply_panel .details_flex {
    display: flex;
    align-items: center;
}

.apply_panel .category {
    background-color: var(--gold);
    color: var(--black);
    height: 46px;
    padding: 0 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    box-sizing: border-box;
    font-weight: 500;
}

.apply_panel .created_at {
    border: 2px solid var(--dark-blue);
    color: var(--dark-blue);
    background-color: transparent;
    margin-left: 15px;
}

.apply_panel .category i {
    margin-right: 8px;
}

.mailing_list_form h4 {
    margin-top: 0;
    margin-bottom: 10px;
}

.apply_panel .apply_header h4 {
    margin-top: -7px;
}

.apply_panel .apply_header .deadline_date {
    margin-top: -3px;
}

.apply_panel .apply_header .deadline_date i {
    margin-right: 8px;
}

.apply_panel p,
.apply_panel_large p {
    margin-top: 0;
}

.apply_panel .square_icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    background-color: var(--light-grey);
    color: var(--black);
    box-sizing: border-box;
    border: 2px solid var(--border-grey);
    margin-right: 15px;
}

.apply_button {
    margin: 15px auto 0 auto;
    width: 100%;
}

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

.apply_panel_large .blog_social {
    justify-content: center;
}

.blog_social a {
    background-color: transparent;
    color: var(--dark-blue);
    border: 2px solid var(--dark-blue);
    width: 46px;
    height: 46px;
    font-size: 1.2em;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 15px 0 0;
    cursor: pointer;
    box-sizing: border-box;
    transition: 0.2s all ease-in-out;
}

.blog_social a:hover {
    background-color: var(--dark-blue);
    color: var(--white);
    transition: 0.2s all ease-in-out;
}

.blog_social .fa-link {
    font-size: 16px;
}

.blog_social a:last-child {
    margin-right: 0;
    margin-bottom: 0;
}

.mailing_list_form .form_group {
    display: flex;
    align-items: center;
    width: 100%;
}

.mailing_list_form .form_input {
    width: calc(100% - 61px);
}

.mailing_list_form .form_field {
    color: var(--form-grey);
    background-color: transparent;
    border: solid 2px var(--form-grey);
    height: 46px;
    width: 100%;
    padding-left: 15px;
    font-size: 16px;
    box-sizing: border-box;
    outline: none;
    font-family: 'Roboto', sans-serif !important;
}

.mailing_list_form .form_field::placeholder {
    color: var(--form-grey);
}

.mailing_list_form .form_field:focus,
.mailing_list_form .form_field:active {
    outline: none;
}

.mailing_list_form .square_button {
    background-color: var(--dark-blue);
    border: none;
    color: var(--white);
    margin-left: 15px;
}

.successMessage {
    display: none;
}

@media (max-width: 1400px) {
    .blog_detail {
        width: calc(100% - 360px - 30px);
    }

    .apply_column {
        width: 360px;
    }
}

@media (max-width: 1350px) {
    .more_posts .blog_wrapper .blog_card:nth-of-type(3) {
        margin: 30px auto 0;
    }
}

@media (max-width: 1250px) {
    .apply_column {
        position: sticky;
        top: 121px;
    }
}

@media (max-width: 950px) {
    .blog_detail_wrapper {
        flex-direction: column-reverse;
    }

    .apply_column {
        position: relative;
        top: unset;
        width: 100%;
    }

    .blog_detail {
        width: 100%;
    }
}

@media (max-width: 750px) {
    .more_posts .slick-track {
        display: flex;
        align-items: stretch;
    }

    .more_posts .blog_wrapper {
        display: none
    }

    .more_posts .BlogSlider {
        display: block;
        width: calc(100% + 40px);
        margin-left: -20px;
    }

    .more_posts .blog_card {
        margin: 30px 8px 0 !important;
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
    }
}

@media (max-width: 700px) {
    .mobile {
        display: flex;
    }

    .blog_detail_info {
        display: block;
    }

    .blog_information {
        width: 100%;
    }

    .blog_date {
        margin-right: 0;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .more_posts .button {
        width: 100%;
    }
}

@media (max-width: 450px) {
    .apply_panel .details_flex {
        display: block;
    }

    .apply_panel .details_flex .category {
        width: 100%;
    }

    .apply_panel .details_flex .created_at {
        margin-left: 0;
        margin-top: 15px;
    }
}