/*********************** News ************************/
.news_cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.news_card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 31%;
    background-color: var(--white);
    box-shadow: 0px 5px 10px #00000014;
    border-radius: 10px;
    padding: 15px;
    box-sizing: border-box;
    margin-top: 45px;
}

.news_card .news_image {
    height: 200px;
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
}

.news_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 5px;
}

.news_justify .news_card:first-of-type {
    margin-right: 45px;
}

.news_card h3,
.news_card h4 {
    margin: 0;
}

.news_card h3 {
    font-size: 24px;
    margin-top: 15px;
    color: var(--black);
}

.news_card h4 {
    color: var(--bronze);
    font-size: 18px;
    margin-bottom: 20px;
}

.news_card .button {
    width: 100%;
}

.square_icon,
.news_social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
    font-size: 16px;
    border-radius: 5px;
    box-shadow: 0px 3px 5px #00000014;
    color: var(--green);
    cursor: pointer;
    overflow: hidden;
}

.news_social {
    display: flex;
    flex-wrap: wrap;
}

.news_social a {
    margin-bottom: 0;
    background-color: var(--green);
    color: var(--white);
    margin-right: 15px;
    margin-top: 20px;
}

.news_social a:last-of-type {
    margin-right: 0;
}

.list_dummy_card {
    height: 0px !important;
    padding-top: 0px !important;
    margin-top: 0px !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
}

.news_opening .button {
    width: max-content;
    margin: 0 auto;
}

.news_info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 200px);
}

.news_info h3 {
    margin-bottom: 15px;
}

.news_info i {
    margin-right: 10px;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

@media (max-width: 1330px) {
    .news_card {
        width: 48%;
    }

    .news_justify .news_card {
        width: 46%;
    }
}

@media (max-width: 750px) {
    .news_cards {
        flex-direction: column;
    }

    .news_card,
    .news_justify .news_card {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 600px) {
    .news_opening .button {
        width: 100%;
    }
}

/*********************** Action Plans ************************/
.action_plan h1 {
    text-align: center;
}

.action_plan .news_cards .news_card {
    margin-top: 0;
    margin-bottom: 45px;
}

@media (max-width: 1330px) {
    .action_plan .news_cards .news_card:last-of-type {
        margin: 0 auto 45px;
    }
}

.caterers .news_card .button {
    margin-top: 20px;
}

#pumpkin_recipes {
    position: absolute;
    margin-top: -146px;
}

@media (max-width: 600px) {
    #pumpkin_recipes {
        margin-top: -126px;
    }
}