.page-banner {
    background-color: #454646;
    background-image: url('assets/img/backgrounds/blog-banner.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 110px 0 80px;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(12,10,12,0.62);
}

.page-banner__content {
    position: relative;
    z-index: 2;
}

.page-banner__title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-banner__title span {
    color: #b0ce5a;
}

.breadcrumb-wrap {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 8px;
}

.breadcrumb-wrap li {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
}

.breadcrumb-wrap li a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
}

.breadcrumb-wrap li a:hover {
    color: #b0ce5a;
}

.breadcrumb-wrap li+li::before {
    content: '›';
    margin-right: 8px;
}

.blog-card {
    background: #fff;
    border: 1px solid #dcdfdf;
    margin-bottom: 30px;
    transition: box-shadow 0.2s;
}

.blog-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.09);
}

.blog-card__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #dcdfdf;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card__image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Post thumbnail. Keeps the 220px band the icon placeholder used, so
   card heights are unchanged, and holds the light grey underneath as
   a backdrop while the image loads. */
.blog-card__image {
    width: 100%;
    height: 220px;
    background: #dcdfdf;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.04);
}

.blog-card__body {
    padding: 26px 28px;
}

.blog-card__cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #b0ce5a;
    margin-bottom: 10px;
}

.blog-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #454646;
    line-height: 1.35;
    margin-bottom: 12px;
}

.blog-card__title a {
    color: #454646;
    text-decoration: none;
}

.blog-card__title a:hover {
    color: #b0ce5a;
}

.blog-card__date {
    font-size: 12px;
    color: #888;
    margin-bottom: 12px;
}

.blog-card__excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 20px;
}

.blog-card__readmore {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #454646;
    text-decoration: none;
}

.blog-card__readmore:hover {
    color: #b0ce5a;
}

.blog-card__readmore i {
    margin-left: 6px;
}

.sidebar-widget {
    margin-bottom: 36px;
}

.sidebar-widget__title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #454646;
    padding-bottom: 12px;
    border-bottom: 2px solid #b0ce5a;
    margin-bottom: 20px;
}

.sidebar-recent-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.sidebar-recent-item img {
    width: 64px;
    height: 56px;
    object-fit: cover;
    background: #dcdfdf;
    flex-shrink: 0;
}

.sidebar-recent-item__placeholder {
    width: 64px;
    height: 56px;
    background: #dcdfdf;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-recent-item__title {
    font-size: 13px;
    font-weight: 700;
    color: #454646;
    line-height: 1.4;
    text-decoration: none;
    display: block;
}

.sidebar-recent-item__title:hover {
    color: #b0ce5a;
}

.sidebar-recent-item__date {
    font-size: 11px;
    color: #888;
    margin-top: 4px;
}

.sidebar-cat-item {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.sidebar-cat-item a {
    color: #555;
    text-decoration: none;
}

.sidebar-cat-item a:hover {
    color: #b0ce5a;
}

.sidebar-cat-item span {
    color: #b0ce5a;
    font-weight: 700;
}
