:root {
  --primary-color: #e01c19;
  --secondary-color: #1d3557;
  --bg-color: #f9f9f9;
  --text-dark: #2b2d42;
  --text-grey: #6c757d;
  --white: #ffffff;
  --font-family: 'Inter', sans-serif;
  --transition: all 0.3s ease-in-out;
}

body {
  font-family: var(--body-font, var(--font-family));
  background-color: var(--hb-body-bg, var(--bg-color));
  color: var(--hb-color-body, var(--text-dark));
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

:root {
  /* Font Ailesi */
  --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
  /* Ölçeklendirilmiş Font Boyutları */
  --text-3xl: 2rem;
  /* h1 */
  --text-2xl: 1.75rem;
  /* h2 */
  --text-xl: 1.5rem;
  /* h3 */
  --text-lg: 1.25rem;
  /* h4 */
  --text-base: 1rem;
  /* h5 ve Standart Metin */
  --text-sm: 0.875rem;
  /* h6 ve Küçük Metin */
  --text-xs: 0.75rem;
  /* Çok Küçük Metin */
  /* Satır Aralığı */
  --line-height-base: 1.6;
  --line-height-heading: 1.2;
}

/* Global Reset & Standartlar */
html {
  font-size: 16px;
  /* 1rem = 16px */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: var(--text-base);
  /* Tüm site varsayılan olarak 1rem başlar */
  line-height: var(--line-height-base);
  color: #2d3436;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

/* Başlıkların Otomatik Hiyerarşisi */
h1,
.h1 {
  font-size: var(--hb-h1-size, var(--text-3xl));
  font-weight: var(--hb-h1-weight, 800);
  color: var(--hb-h1-color, inherit);
  line-height: var(--line-height-heading);
  margin-bottom: 1.5rem;
}

h2,
.h2 {
  font-size: var(--hb-h2-size, var(--text-2xl));
  font-weight: var(--hb-h2-weight, 700);
  color: var(--hb-h2-color, inherit);
  line-height: var(--line-height-heading);
  margin-bottom: 1.25rem;
}

h3,
.h3 {
  font-size: var(--hb-h3-size, var(--text-xl));
  font-weight: var(--hb-h3-weight, 700);
  color: var(--hb-h3-color, inherit);
  line-height: var(--line-height-heading);
  margin-bottom: 1rem;
}

h4,
.h4 {
  font-size: var(--hb-h4-size, var(--text-lg));
  font-weight: var(--hb-h4-weight, 600);
  color: var(--hb-h4-color, inherit);
  line-height: var(--line-height-heading);
  margin-bottom: 0.75rem;
}

h5,
.h5 {
  font-size: var(--hb-h5-size, var(--text-base));
  font-weight: var(--hb-h5-weight, 600);
  color: var(--hb-h5-color, inherit);
  margin-bottom: 0.5rem;
}

h6,
.h6 {
  font-size: var(--hb-h6-size, var(--text-sm));
  font-weight: var(--hb-h6-weight, 600);
  color: var(--hb-h6-color, inherit);
}

a {
  color: var(--hb-link-color, var(--primary-color));
}
a:hover {
  color: var(--hb-link-hover, var(--secondary-color));
}

/* Genel Elemanlar */
p {
  margin-bottom: 1.25rem;
}

small,
.text-muted {
  font-size: var(--text-sm);
  color: #636e72;
}

/* Her yerde margin ayarlamak istemiyorsanız son öğenin marginini sıfırlayın */
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
p:last-child {
  margin-bottom: 0;
}

.text-primary {
  color: #666;
}

/* --- Top Header & Navbar --- */
.top-header {
  background-color: var(--secondary-color);
  color: var(--white);
  font-size: var(--hb-top-menu-size, 0.85rem);
  padding: var(--hb-top-menu-pad, 8px 0);
}

.top-header a {
  color: var(--hb-top-menu-color, #adb5bd);
  text-decoration: none;
  margin-left: 0px;
  transition: var(--transition);
}

.top-header a:hover {
  color: var(--hb-top-menu-hover, var(--white));
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--primary-color) !important;
  letter-spacing: -1px;
}

.navbar.premium-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-bottom: 2px solid var(--primary-color);
  padding: 15px 0;
}

.premium-nav .nav-link {
  font-weight: 600;
  color: var(--secondary-color) !important;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin: 0 5px;
  position: relative;
}

.premium-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.premium-nav .nav-link:hover::after {
  width: 100%;
}

/* --- Hero Section & News Grid --- */
.hero-news {
  position: relative;
  /*  border-radius: 12px;*/
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
  cursor: pointer;
}

.hero-news img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-news:hover img {
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 40px 30px 20px;
  color: var(--white);
}

.hero-badge {
  background: var(--primary-color);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}

/* Side News */
.side-news {
  display: flex;
  margin-bottom: 20px;
  background: var(--white);
  /*  border-radius: 10px;*/
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.side-news:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.side-news img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.side-news-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.side-news-title {
  font-size: var(--hb-widget-itemtitle-size, 1.05rem);
  font-weight: var(--hb-widget-itemtitle-weight, 700);
  color: var(--hb-widget-itemtitle-color, var(--secondary-color));
  text-decoration: none;
  line-height: 1.3;
}

.side-news-title:hover {
  color: var(--hb-widget-itemtitle-hover, var(--primary-color));
}

.side-news-meta {
  font-size: var(--hb-widget-itemmeta-size, 0.8rem);
  color: var(--hb-widget-itemmeta-color, var(--text-grey));
  font-style: var(--hb-widget-itemmeta-style, normal);
  margin-top: 8px;
}

/* --- Footer --- */
.premium-footer {
  background: var(--hb-footer-bg, var(--primary-color)) !important;
  color: var(--white);
  padding: 60px 0 20px;
  margin-top: 60px;
  border-top: var(--hb-footer-bt, 4px solid var(--secondary-color));
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
}

.footer-title {
  font-weight: var(--hb-footer-coltitle-weight, 700);
  font-size: var(--hb-footer-coltitle-size, inherit);
  margin-bottom: 20px;
  color: var(--hb-footer-coltitle-color, var(--white));
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--hb-footer-links-color, #adb5bd);
  font-size: var(--hb-footer-links-size, inherit);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--hb-footer-links-hover, var(--primary-color));
  padding-left: 5px;
}

/* --- News Content (Article Body) --- */
.news-content p {
  margin-bottom: 1.2em;
}

.news-content img {
  max-width: 100%;
  height: auto;
  /*  border-radius: 8px;*/
  margin: 0;
}

.news-content blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 15px 20px;
  margin: 1.5em 0;
  background: #ebedef;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #807e9b;
}

/* --- Breadcrumb --- */
.breadcrumb {
  background: transparent;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 900;
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Mobile Menu Appearance */
#mobileMenuOffcanvas,
#mobileMenuOffcanvas .offcanvas-header,
#mobileMenuOffcanvas .offcanvas-body,
#mobileMenuOffcanvas .bg-light {
  background-color: var(--hb-mobile-menu-bg, #ffffff) !important;
  color: var(--hb-mobile-menu-color, #333333) !important;
}

#mobileMenuOffcanvas .list-group-item {
  background-color: transparent !important;
  color: var(--hb-mobile-menu-color, #333333) !important;
  font-size: var(--hb-mobile-menu-size, 1rem) !important;
}

#mobileMenuOffcanvas .list-group-item i {
  color: inherit !important;
  opacity: 0.8;
}

/* --- Card Animations --- */
.card {
  transition: var(--transition);
  border-radius: var(--hb-card-radius, 0px);
  background-color: var(--hb-card-bg, #ffffff);
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* --- Gallery & Video Overlay --- */
.card .position-absolute {
  transition: var(--transition);
}

/* --- Ticker (Son Dakika) --- */
.ticker-wrap {
  cursor: default;
}

.ticker-move:hover {
  animation-play-state: paused !important;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.badge.bg-danger {
  background-color: var(--primary-color) !important;
}

/* --- Pagination --- */
.page-link {
  color: var(--secondary-color);
  border-color: #dee2e6;
}

.page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .hero-news img {
    height: 280px;
  }

  .hero-title {
    font-size: 1.4rem;
  }

  .hero-overlay {
    padding: 20px 15px 10px;
  }

  /* Center Brand on Mobile */
  .navbar-brand {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .navbar-toggler {
    position: absolute;
    left: 15px;
    z-index: 10;
  }

  .side-news img {
    width: 80px;
    height: 80px;
  }

  .top-header {
    font-size: 0.75rem;
  }

  .premium-nav .nav-link {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .hero-news img {
    height: 200px;
  }

  .hero-title {
    font-size: 1.2rem;
  }

  .top-header .d-flex {
    flex-direction: column;
    gap: 5px;
  }
}

/* --- Smooth Page Transitions --- */
main {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: inherit;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c5303c;
}

/* --- Premium Dark Mode (Admin controlled) --- */
.dark-mode {
  --bg-color: #121212;
  --text-dark: #e4e6eb;
  --secondary-color: #0b101a;
  --white: #1e1e1e;
  --text-grey: #a0aab2;
  background-color: var(--bg-color);
  color: var(--text-dark);
}

.dark-mode .bg-white,
.dark-mode .card,
.dark-mode .side-news {
  background-color: var(--white) !important;
  border-color: #2a2a2a !important;
  color: var(--text-dark);
}

.dark-mode .text-dark {
  color: var(--text-dark) !important;
}

.dark-mode .text-secondary {
  color: #90a4ae !important;
}

.dark-mode .premium-nav {
  background: rgba(30, 30, 30, 0.95);
  border-bottom: 2px solid var(--primary-color);
}

.dark-mode .premium-nav .nav-link {
  color: var(--text-dark) !important;
}

.dark-mode .alert-light,
.dark-mode .bg-light {
  background-color: #2a2a2a !important;
  color: var(--text-dark) !important;
  border-color: #3b3b3b !important;
}

.dark-mode .breadcrumb-item a {
  color: var(--text-grey);
}

.dark-mode .breadcrumb-item.active {
  color: var(--text-dark);
}

.dark-mode .border,
.dark-mode .border-top,
.dark-mode .border-bottom {
  border-color: #2a2a2a !important;
}

.dark-mode .list-group-item {
  background-color: var(--white);
  color: var(--text-dark);
  border-color: #2a2a2a;
}

/* --- Premium Glassmorphism & Animations --- */
.glass-panel {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  /*  border-radius: 12px;*/
}

.hover-scale {
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hover-scale:hover {
  transform: scale(1.02);
}

.dynamic-shadow {
  transition: box-shadow 0.3s ease;
}

.dynamic-shadow:hover {
  box-shadow: 0 15px 35px rgba(230, 57, 70, 0.15);
}

/* --- Premium Mega Menu --- */
.hover-opacity {
  transition: opacity 0.2s;
  opacity: 0.8;
}

.hover-opacity:hover {
  opacity: 1;
}

.mega-menu-bar {
  background-color: var(--hb-mega-menu-bg, var(--primary-color));
  border-radius: var(--hb-mega-menu-radius, 0px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-mega-menu .nav-link {
  color: var(--hb-mega-menu-color, rgba(255, 255, 255, 0.9)) !important;
  font-size: var(--hb-mega-menu-size, 0.95rem);
  transition: all 0.2s;
  border-bottom: 3px solid transparent;
  padding-top: 1.2rem !important;
  padding-bottom: 0.7rem !important;
  letter-spacing: 0.3px;
}

.header-mega-menu .nav-link:hover,
.header-mega-menu .nav-item:hover .nav-link {
  background-color: rgba(0, 0, 0, 0.15);
  color: var(--hb-mega-menu-hover, #fff) !important;
  border-bottom-color: var(--accent-color, #ff4081);
}

/* Line Clamp Utilities */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hover-text-primary:hover {
  color: var(--primary-color) !important;
}

.hover-bg-light:hover {
  background-color: #f8f9fa !important;
}

/* --- Premium Image & Card Zoom (Gallery, Video, Sliders) --- */
.slider-news-link {
  transition: var(--transition);
}

.slider-bg-layer {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider-news-link:hover .slider-bg-layer {
  transform: scale(1.05) !important;
}

.slider-content-layer {
  transition: padding-bottom 0.3s ease, background 0.3s ease;
}

.slider-news-link:hover .slider-content-layer {
  padding-bottom: 25px !important;
}

.bottom-gradient {
  background: linear-gradient(180deg, transparent, #000);
  bottom: 0;
  color: #f2f2f2;
  left: 0;
  margin-bottom: 0;
  padding: 100px 0px;
  position: absolute;
  width: 100%;
}

/* --- New Premium UI Aesthetics --- */
.premium-card {
  border: none;
  border-radius: 0;
  background: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
  overflow: hidden;
}

.premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.premium-overlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  backdrop-filter: blur(2px);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.premium-badge {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  backdrop-filter: blur(5px);
  letter-spacing: 0.5px;
  padding: 0.4em 0.8em;
  border-radius: 0;
}

.glass-header {
  background: rgba(var(--primary-color-rgb, 230, 57, 70), 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.premium-img-wrap {
  overflow: hidden;
  border-radius: 0;
}

.premium-img-wrap img {
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.premium-card:hover .premium-img-wrap img {
  transform: scale(1.05);
}

.premium-play-btn {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.premium-card:hover .premium-play-btn {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.1);
}

/* --- Content Meta Info Block (Content Detail Pages) --- */
@media screen and (max-width: 767px) {
  .content-meta-info {
    -ms-overflow-style: none;
    overflow: auto;
    scrollbar-width: none;
    white-space: nowrap
  }

  .content-meta-info::-webkit-scrollbar {
    display: none
  }
}

.content-meta-info {
  display: flex;
  font-size: .75rem;
  line-height: 1.3;
  padding: 10px 0;
  position: relative
}

.content-meta-info .box:first-child {
  padding-left: 0
}

.content-meta-info .box {
  align-items: center;
  border-right: 1px solid var(--bs-gray-400);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10px
}

.content-meta-info .box:last-child {
  border-right: none
}

.content-meta-info .info {
  font-size: .625rem;
  letter-spacing: .1em;
  text-transform: uppercase
}

@media screen and (max-width: 767px) {
  .share-area {
    -ms-overflow-style: none;
    scrollbar-width: none;
    white-space: nowrap
  }

  .share-area::-webkit-scrollbar {
    display: none
  }
}

.bottom-num-item {
    width: 32px !important;
    height: 32px !important;
    padding: 1px 9px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    /* Tam yuvarlak */
    font-size: 14px !important;
    font-weight: 800 !important;
    border: 1px solid #333 !important;
    background-color: #1a1a1a !important;
    color: #888 !important;
    transition: all 0.2s ease-in-out;
}

/* Aktif ve Hover durumu */
.bottom-num-item.active,
.bottom-num-item:hover {
  background-color: #df1b22 !important;
  /* Yan manşet kırmızı tonu */
  color: #fff !important;
  border-color: #df1b22 !important;
}

/* --- Author Profile Banner --- */
.author-header-banner {
  background: linear-gradient(135deg, #cc0000 0%, #8a0000 100%);
  position: relative;
  height: 80px;
  border-radius: 8px 8px 0 0;
  margin-top: 20px;
  margin-bottom: 0px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: visible;
}

.author-header-social {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  gap: 10px;
}

.author-header-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: #333;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.author-header-social a:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.author-header-content {
  display: flex;
  align-items: flex-start;
  padding: 0 20px;
  margin-top: -40px;
  /* Overlap effect */
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.author-header-img {
  width: 130px;
  height: 130px;
  border: 4px solid #fff;
  background-color: #f8f9fa;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.author-header-info {
  margin-left: 20px;
  padding-top: 50px;
  /* Push below the banner area */
}

/* =========================================================
   HB Style Dynamic Utilities
   These classes consume the dynamic variables from _Layout.cshtml 
========================================================= */

.hb-detail-title {
  font-size: var(--hb-detail-title-size, inherit) !important;
  color: var(--hb-detail-title-color, inherit) !important;
  font-weight: var(--hb-detail-title-weight, inherit) !important;
}

.hb-detail-spot {
  font-size: var(--hb-detail-spot-size, inherit) !important;
  color: var(--hb-detail-spot-color, inherit) !important;
  font-weight: var(--hb-detail-spot-weight, inherit) !important;
  font-style: var(--hb-detail-spot-style, inherit) !important;
}

.hb-detail-content {
  font-size: var(--hb-detail-content-size, inherit) !important;
  color: var(--hb-detail-content-color, inherit) !important;
  line-height: var(--hb-detail-content-lh, inherit) !important;
}

.hb-detail-meta {
  font-size: var(--hb-detail-meta-size, inherit) !important;
  color: var(--hb-detail-meta-color, inherit) !important;
  font-style: var(--hb-detail-meta-style, inherit) !important;
}

.hb-widget-maintitle {
  font-size: var(--hb-widget-maintitle-size, inherit) !important;
  color: var(--hb-widget-maintitle-color, inherit) !important;
  font-weight: var(--hb-widget-maintitle-weight, inherit) !important;
  border-bottom: var(--hb-widget-maintitle-bb, inherit) !important;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

/* =========================================================
   Global Generic Selectors to Apply HB Appearance
   Without Modifying All Individual Widget Views
========================================================= */

.template-module .fs-5:first-child,
.widget-title-area {
  font-size: var(--hb-widget-maintitle-size, inherit) !important;
  color: var(--hb-widget-maintitle-color, inherit) !important;
  font-weight: var(--hb-widget-maintitle-weight, inherit) !important;
}

.template-module h5, 
.template-module h6, 
.template-module .card-title,
.side-news-title,
.template-module .list-group-item h6 {
  font-size: var(--hb-widget-itemtitle-size, inherit) !important;
  color: var(--hb-widget-itemtitle-color, inherit) !important;
  font-weight: var(--hb-widget-itemtitle-weight, inherit) !important;
}

.template-module a:hover h5,
.template-module a:hover h6,
.template-module .card:hover .card-title,
.template-module .list-group-item:hover h6,
.side-news-title:hover {
  color: var(--hb-widget-itemtitle-hover, var(--primary-color)) !important;
}

.template-module small, 
.template-module .text-muted,
.side-news-meta {
  font-size: var(--hb-widget-itemmeta-size, inherit) !important;
  color: var(--hb-widget-itemmeta-color, inherit) !important;
  font-style: var(--hb-widget-itemmeta-style, inherit) !important;
}
