﻿
A, A:link, A:active, A:visited {
    color: #cfb481;
    -webkit-transition: color 0.1s ease-in-out;
    transition: color 0.1s ease-in-out;
}
.blog_articles .blog_article_item > .article_title * {
    font-size: 32px;text-decoration:none;
}
.blog_articles .blog_article_item > .article_button span.b_boxed {
	display:block;
	color:#fff;
    padding: 0.25em 0.5em;
	border:1px solid #ffcb05;
	font-weight:700;
	font-size:0.8em;
	background-color: rgba(0, 0, 0, 0.5); /* Black with 50% transparency */
	border-radius: 4px; /* Rounded corners with a significant radius */
}
.blog_articles .blog_article_item > * {
    text-align: center;
    z-index: 2;
    position: relative;
}
.blog_articles .blog_article_item {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    display: -webkit-flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
}
.blog_articles .blog_article_item:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 1; /* Visible initially */
    z-index: 1; /* Adjust if necessary, removed !important */
    transition: opacity 0.5s ease-in-out; /* Transition applies to opacity */
}

.blog_articles .blog_article_item:hover:after {
	opacity: 0.4; /* Fade out on hover */
    cursor: pointer; /* Correct cursor style */}
	
.blog_articles .blog_article_item > * {
    text-align: left;
    z-index: 2;
    position: relative;
	padding-bottom:1.5em;
}
.blog_articles .blog_article_item a {
    color: #FFF;
}
	
.outlined, button.b_boxed, a.b_icon, a.rvdsfEditCartAction.b_boxed, a.rvdPrintAction.b_boxed, a.rvdsfContinueShoppingAction.b_boxed {
    background-color: transparent;
    color: #e1daca;
    border: 1px solid #e1daca;
    box-sizing: border-box;
    display: inline-block;
    text-align: center;
    border: 1px solid #e1daca;
    position: relative;
	text-decoration:none;
	text-transform:uppercase;
}

button.outlined:hover, button.b_boxed:hover, a.b_icon:hover, .dnnPrimaryAction:hover, .rvdSearchAction:hover {
    color: #e1daca !important;
}
.article_date span {font-family: Georgia,"Times New Roman",Times,serif;}