.wide_card_image{
    padding: 5rem 0;
    background: #F8F9FA;
}
.wide_card_image h1,
.wide_card_image h2,
.wide_card_image h3,
.wide_card_image h4,
.wide_card_image h5,
.wide_card_image h6 {
	color: var(--main_colour);
	
    line-height: 1;
}
.wide_card_image h1 strong,
.wide_card_image h2 strong,
.wide_card_image h3 strong,
.wide_card_image h4 strong,
.wide_card_image h5 strong,
.wide_card_image h6 strong{
	color: var(--secondary_colour)!important;
}
.wide_card_image h1{
	font-size: 60px;
}
.wide_card_image h2{
	font-size: 60px;
}
.wide_card_image h3{
	font-size: 42px;
}
.wide_card_image h4{
	font-size: 26px;
}
.wide_card_image h5{
	font-size: 24px;
}
.wide_card_image h6{
	font-size: 20px;
}
.pre_image_content p{
    font-size: 1.1rem;
}
.wide_card_image .pre_image_content{
    justify-self: anchor-center;
}
.wide_card_image .image_wrapper {
    margin: 2rem 0;
    height: 50vh;
    overflow: hidden;
    border-radius: 2rem;
}
.wide_card_image .image_wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wide_card_image .card_content{
    border-radius: 16px;
    border: 2px solid #eab308;
    padding: 2rem;
}
.wide_card_image ul{
    column-count: 2;
    column-gap: 1.5rem;
    max-height: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    box-sizing: border-box;
    width: 100%; 
    padding-left: 1.5em;
    line-height: 3;
}
.wide_card_image li {
    break-inside: avoid;
    list-style: none;
    margin-left: 1em;
    position: relative;
    padding-left: 2em;
    font-weight: 600;
}
.wide_card_image li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 13px;
    height: 31px;
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='31' viewBox='0 0 13 31' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.0216675 17.427L9.57343 0.867676L7.80093 14.1151H12.9707L3.46819 30.6743L5.48686 17.427H0.0216675Z' fill='%23F7E30A'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.content_after_card{
    font-size: 1.2rem;
}
@media(orientation:portrait){
    .wide_card_image .pre_image_content{
        max-width: unset;
    }
    .wide_card_image ul{
        column-count: unset;
    }
}