.intro-container{
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
.cover-image-gradient-container{
    position: relative;
    min-height: 400px;
}
.cover-image-gradient{
    /* background: linear-gradient(to left, #EDEDED 50%, #fff 50%); */
    background: linear-gradient(to bottom, transparent 70%, orange 100% );
    background-size: cover;
    background-position: bottom;
    height: 100%;
    width: 100%;
    bottom: 0;
    position: absolute;
}
.category-badge{
    background-color: white;
    color: #7ABAC6;
    font-size: 0.7em;
    font-weight: normal;
    border-radius: 20px;
    margin: 10px 10px 10px 0px;
    text-transform: uppercase;
    padding: 10px;
    min-width: 100px;
}
.main-category{
    margin-top: 10px;
    color: white;
    border-bottom: 2px white solid;
    padding-bottom: 15px;
    width: 150px;
}
.intro-categories-container{
    display: flex;
    align-items: end;
    padding: 0px 20px 20px 0px;
}
.intro-categories-container::-webkit-scrollbar{
    height: 5px;
    width: 5px;
    background: white;
    border-radius: 10px;
}
.intro-categories-container::-webkit-scrollbar-track {
  background: white; 
  border-radius: 10px;
}
.intro-categories-container::-webkit-scrollbar-thumb {
  background: white; 
  border-radius: 10px;
  border: 3px solid #7ABAC6;
}
.intro-categories-container::-webkit-scrollbar-thumb:hover {
  background: white; 
  border-radius: 10px;
}
.intro-categories-container::-webkit-scrollbar-thumb:horizontal{
    background: #7ABAC6;
    border-radius: 10px;
}

.intro-content-container{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.intro-text-container{
    padding: 0px 0px 20px 40px;
}

@media(max-width: 991px){
    .intro-content-container{
        flex-direction: column;
    }
    .intro-categories-container{
        padding-left: 45px;
        overflow-x: auto;
        width: 95%;
        text-align: right;
        padding-right: 0px;
        margin-bottom: 10px;
    }
}

.content-container{
    padding-top: 100px;
}
.main-category-content{
    margin-top: 10px;
    color: #C6A11E;
    border-bottom: 2px #C6A11E solid;
    padding-bottom: 10px;
    width: 150px;
}
.images-container{
    background-color: #d9d9d9;
    margin-bottom: 20px;
}
.images-container:first-child{
    padding-top: 30px;
}
.blog-image{
    margin-bottom: 70px;
}
.blog-image img{
    width: 110%;
    margin: -5%;
    height: auto;
}
.blog-image.blog-image-final{
    margin-bottom: 0;
    padding-bottom: 50px;
}
.blog-text-container{
    padding: 40px 0px 20px 100px;
}
.block-quote{
    color: white;
    background-color: #7ABAC6;
    padding: 30px 30px 30px 50px;
    font-size: 1.6em;
    margin: 50px 0px;
}
.block-quote div{
    border-left: 1px solid white;
    padding-left: 20px;
}
@media(max-width: 767px){
    .blog-text-container{
        padding-left: 0px;
    }
}
@media(max-width: 575px){
    .blog-image img{
        width: 106%;
        margin: -3%;
    }
}

/** Force tables to have borders and be full width on the blog post page */
table > :not(caption) > * > * {
    border-width: 0 var(--bs-border-width);
}
table > :not(caption) > * {
    border-width: var(--bs-border-width) 0;
}
table{
    width: 100%
}