#NewsRoomBoxes .box {
    padding: 20px;
}

.box {
    width: 100%;
    background-color: #fafafa;
    border: 1px solid #cacaca;
    margin: 10px 0 10px 0;
    padding: 0;
    overflow: hidden;
}
.box.box-sm {
    height: 160px;
}
.box.box-md {
    height: 220px;
}
.box.box-lg {
    height: 300px;
}
.box.box-xl {
    height: 400px;
}
.box.box-xxl {
    height: 500px;
}
.box.box-xxxl {
    height: 600px;
}
.box > .box-body {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    height: inherit;
    transition: background-color 0.15s ease-in-out;
}
.box a {
    text-decoration: none !important;
}
.box > .box-body > a {
    width: inherit;
    height: inherit;
}
.box > .box-body:hover {
    background-color: #C7362D;
}
.box > .box-body > a > .box-heading {
    width: inherit;
    min-height: 30px;
    min-width: 100%;
    height: 30px;
    line-height: 30px;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    overflow: hidden;
    vertical-align: middle;
    background-color: rgba(255,255,255,0.8);
    text-align: center;
    padding: 0 10px 0 10px;
    transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
}
.box > .box-body > a > .box-heading > span {
    font-size: 20px;
    font-family: "Shruti", serif;
    color: #262626;
}

.box > .box-body > a:hover > .box-heading {
    background-color: #b92c28;
}
.box > .box-body > a:hover > .box-heading > span {
    color: #fafafa;
}

.box > .box-body > a > .box-image {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
}
.box > .box-body > a > .box-image > img {
    width: inherit;
    height: inherit;
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.4)), to(rgba(0,0,0,1)));
}
.box > .box-body > .box-footer {
    width: 100%;
    height: 24px;
    background-color: rgba(20,10,20,0.1);
    line-height: 24px;
    vertical-align: middle;
    text-overflow: ellipsis;
    position: absolute;
    bottom: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    transition: height 0.55s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out;
    transition-delay: 0.15s;
    padding: 0 10px 0 10px;
    text-decoration: none;
}
.box > .box-body > .box-footer > span {
    font-size: 14px;
    color: #fafafa;
    font-family: "Bookman Old Style", serif;
    text-decoration: none;
    transition: font-size 0.25s ease-in-out;
}
.box > .box-body > .box-footer:hover {
    height: calc(100% - 30px);
    white-space: unset;
    background-color: rgba(25,25,25,0.6);
    line-height: unset;
    vertical-align: unset;
    scrollbar-base-color: black;
}

.box-footer::-webkit-scrollbar {
    width: 10px;
}
.box-footer::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.box-footer::-webkit-scrollbar-thumb {
    background: #888;
}
.box-footer::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@media screen and (max-width: 768px) {

}
