/*
Theme Name: hudhudnews.net
Author: hudhudnews.net
Author URI: http://www.hudhudnews.net
Description: This is a wordpress theme that created by Mohd Robel for hudhudnews.net
Version: 2.0
*/

/* --------------------------------------------------------------------------
   Design tokens — বাংলা চ্যানেল editorial system
   Deep teal + crimson urgency, soft paper ground
-------------------------------------------------------------------------- */
:root {
  --hh-ink: #1a2332;
  --hh-ink-soft: #3d4a5c;
  --hh-muted: #6b7a8d;
  --hh-paper: #f3f6f8;
  --hh-surface: #ffffff;
  --hh-line: #d8e0e8;
  --hh-teal: #0b6e5f;
  --hh-teal-deep: #085548;
  --hh-teal-soft: rgba(11, 110, 95, 0.12);
  --hh-crimson: #c2182b;
  --hh-crimson-soft: rgba(194, 24, 43, 0.1);
  --hh-gold: #c9a227;
  --hh-radius: 6px;
  --hh-shadow: 0 8px 28px rgba(26, 35, 50, 0.08);
  --hh-shadow-sm: 0 2px 10px rgba(26, 35, 50, 0.06);
  --hh-font: 'AdorshoLipi', 'Noto Sans Bengali', Georgia, serif;
  --hh-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(ellipse 120% 80% at 0% 0%, rgba(11, 110, 95, 0.06), transparent 50%),
    radial-gradient(ellipse 90% 60% at 100% 10%, rgba(194, 24, 43, 0.04), transparent 45%),
    linear-gradient(180deg, #eef3f5 0%, var(--hh-paper) 40%, #e8eef2 100%);
  background-attachment: fixed;
  color: var(--hh-ink);
  font-family: var(--hh-font) !important;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--hh-teal) !important;
  text-decoration: none;
  transition: color 0.25s var(--hh-ease), opacity 0.25s var(--hh-ease);
}

a:hover {
  color: var(--hh-crimson) !important;
}

/* --------------------------------------------------------------------------
   Utilities (legacy class compatibility)
-------------------------------------------------------------------------- */
.p0 { padding: 0 !important; }
.txtw { color: #f8f9fa !important; }
.disnone { display: none !important; }
.mt10 { margin-top: 10px; }
.mtb10 { margin-top: 12px; margin-bottom: 12px; }
.clearfix { margin-top: 14px; clear: both; }
.showmenow { display: block; }
.hidemenow { display: none; }
.height250 { height: 250px; object-fit: cover; }
.height190 { height: 190px; }
.news { width: auto; min-width: 140px; }
.bred { border: none; }
.img100 img { width: 100%; height: auto; }
.ads img { height: auto !important; width: 100%; }

/* --------------------------------------------------------------------------
   Top date strip
-------------------------------------------------------------------------- */
.hh-datebar {
  background: linear-gradient(90deg, var(--hh-teal-deep), var(--hh-teal) 55%, #0a8a74);
  color: #fff;
  padding: 8px 0;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12);
}

.hh-datebar i {
  margin-right: 6px;
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   Navbar / brand
-------------------------------------------------------------------------- */
.navbar-white1,
.navbar.navbar-white1 {
  background: var(--hh-surface) !important;
  border-bottom: 3px solid var(--hh-teal);
  box-shadow: var(--hh-shadow-sm);
  padding: 0.65rem 1rem;
  transition: box-shadow 0.3s var(--hh-ease), padding 0.3s var(--hh-ease);
}

.navbar.fixed-top {
  box-shadow: 0 10px 30px rgba(26, 35, 50, 0.12);
  animation: hh-nav-in 0.35s var(--hh-ease);
}

@keyframes hh-nav-in {
  from { transform: translateY(-12px); opacity: 0.85; }
  to { transform: translateY(0); opacity: 1; }
}

.navbarmarginremove { margin-top: 25px; }

.img-fluidlogo {
  max-width: 200px;
  height: auto;
  transition: transform 0.35s var(--hh-ease);
}

.navbar-brand:hover .img-fluidlogo {
  transform: scale(1.03);
}

.navbar-toggler {
  border: 1px solid var(--hh-line);
  color: var(--hh-teal);
  padding: 0.4rem 0.65rem;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--hh-teal-soft);
}

a.nav-link {
  font-size: 1.05rem;
}

.topmenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0.25rem;
}

.topmenu li {
  display: inline-block;
  float: none;
  padding: 0;
  position: relative;
}

.topmenu ul li {
  float: none;
}

.topmenu a {
  color: var(--hh-ink) !important;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.45rem 0.75rem;
  display: inline-block;
  border-radius: 4px;
  position: relative;
}

.topmenu a::after {
  content: '';
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--hh-crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--hh-ease);
}

.topmenu a:hover::after,
.current-menu-item a::after {
  transform: scaleX(1);
}

.topmenu a:hover {
  color: var(--hh-teal) !important;
  background: var(--hh-teal-soft);
}

.current-menu-item a {
  color: var(--hh-crimson) !important;
}

ul.sub-menu {
  padding: 0.4rem 0;
  margin: 0;
  min-width: 180px;
  width: auto;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  background: var(--hh-surface);
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-radius);
  box-shadow: var(--hh-shadow);
}

.menu-item-has-children:hover .sub-menu {
  display: block;
  background: var(--hh-surface) !important;
}

.menu-item-has-children .sub-menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
}

.menu-item-has-children .sub-menu a::after {
  display: none;
}

/* Search */
.navbar .form-inline .btn-bdr-suc,
.btn-bdr-suc {
  border: 1px solid var(--hh-line);
  border-right: none;
  border-radius: var(--hh-radius) 0 0 var(--hh-radius);
  background: var(--hh-paper);
  color: var(--hh-ink);
  padding: 0.45rem 0.75rem;
  outline: none;
}

.btn-bdr-suc:focus {
  border-color: var(--hh-teal);
  box-shadow: 0 0 0 3px var(--hh-teal-soft);
}

.navbar .btn-danger {
  background: var(--hh-crimson) !important;
  border-color: var(--hh-crimson) !important;
  border-radius: 0 var(--hh-radius) var(--hh-radius) 0;
  padding: 0.45rem 0.85rem;
  transition: background 0.25s var(--hh-ease), transform 0.2s var(--hh-ease);
}

.navbar .btn-danger:hover {
  background: #a01424 !important;
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   Breaking news ticker
-------------------------------------------------------------------------- */
.breaking-news {
  border: none !important;
  border-radius: var(--hh-radius);
  overflow: hidden;
  box-shadow: var(--hh-shadow-sm);
  background: var(--hh-surface) !important;
  margin: 0.5rem 0 1rem;
}

.breaking-news .news {
  background: linear-gradient(135deg, var(--hh-crimson), #9e1424) !important;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  min-width: 150px;
  position: relative;
}

.breaking-news .news::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  width: 20px;
  background: inherit;
  transform: skewX(-12deg);
}

.news-scroll {
  padding: 0.55rem 0.75rem;
  display: flex;
  align-items: center;
}

.news-scroll a {
  text-decoration: none;
  color: var(--hh-ink) !important;
  font-weight: 600;
  margin-right: 1.25rem;
  transition: color 0.25s var(--hh-ease);
}

.news-scroll a:hover {
  color: var(--hh-crimson) !important;
}

.dot {
  height: 6px;
  width: 6px;
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 2px !important;
  background-color: var(--hh-crimson);
  border-radius: 50%;
  display: inline-block;
}

._1dro._2ph-.clearfix {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Section headers
-------------------------------------------------------------------------- */
.newshead1 {
  border: none;
  border-left: 4px solid var(--hh-crimson);
  background: linear-gradient(90deg, var(--hh-teal-soft), transparent 85%);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  padding: 10px 16px;
  color: var(--hh-ink);
  border-radius: 0 var(--hh-radius) var(--hh-radius) 0;
  position: relative;
}

.newshead1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--hh-crimson), var(--hh-teal));
}

.newshead1 a {
  color: var(--hh-ink) !important;
}

.newshead1 a:hover {
  color: var(--hh-teal) !important;
}

/* --------------------------------------------------------------------------
   Story titles & meta
-------------------------------------------------------------------------- */
.binduconttext1 {
  width: 100%;
  min-height: 0;
  max-height: none;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 1.55;
  padding: 0 0 4px;
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--hh-ink);
  transition: color 0.25s var(--hh-ease);
  word-break: break-word;
}

.binduconttext {
  width: 100%;
  min-height: 0;
  max-height: none;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 1.6;
  padding: 2px 0 6px;
  margin: 0 0 6px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--hh-ink);
  word-break: break-word;
}

a:hover .binduconttext1,
a:hover .binduconttext,
.binduconttext1:hover,
.binduconttext a:hover {
  color: var(--hh-teal) !important;
}

.dottedborder {
  border-bottom: 1px dotted var(--hh-line);
  list-style: none;
  font-size: 0.8rem;
  color: var(--hh-muted);
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.dottedborder a {
  color: var(--hh-muted) !important;
  font-size: inherit;
}

.dottedborder li i {
  margin-right: 3px;
  color: var(--hh-teal);
}

/* --------------------------------------------------------------------------
   Images & story blocks
-------------------------------------------------------------------------- */
.imgindex1 img,
.imgindex1 {
  height: 380px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--hh-radius) !important;
  transition: transform 0.45s var(--hh-ease), box-shadow 0.45s var(--hh-ease);
}

.imgindex2 {
  height: 80px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--hh-radius) !important;
}

.height100 img {
  height: 100px !important;
  width: 100%;
  object-fit: cover;
  border-radius: var(--hh-radius) !important;
  transition: transform 0.4s var(--hh-ease);
}

.bin img {
  width: 100%;
  height: 160px;
  float: left;
  object-fit: cover;
  border-radius: var(--hh-radius) !important;
  transition: transform 0.4s var(--hh-ease), filter 0.4s var(--hh-ease);
}

.bin1 img {
  width: 100%;
  height: 70px;
  float: left;
  object-fit: cover;
  border-radius: var(--hh-radius) !important;
  transition: transform 0.35s var(--hh-ease);
}

a:hover .imgindex1 img,
a:hover .bin img,
a:hover .bin1 img,
a:hover .height100 img {
  transform: scale(1.03);
}

.carousel-item img,
.single img {
  width: 100%;
  border-radius: var(--hh-radius) !important;
}

.col-md-12.single.text-justify {
  font-size: 1.15rem !important;
  line-height: 1.85;
  color: var(--hh-ink-soft);
}

.col-md-12.single.text-justify img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  margin: 0.75rem 0 1rem;
}

.single {
  line-height: 1.85 !important;
}

.featured-image-caption {
  font-size: 0.9rem;
  color: var(--hh-muted);
  margin-bottom: 1rem;
  font-style: italic;
}

/* Featured home columns */
.col-md-8 > .row > .col-md-6,
.col-md-8 > .row > .col-md-3,
.container-fluid > .row > [class*="col-md-"] {
  margin-bottom: 0.5rem;
}

.hh-story {
  background: var(--hh-surface);
  border-radius: var(--hh-radius);
  padding: 0.65rem;
  margin-bottom: 0.75rem;
  box-shadow: var(--hh-shadow-sm);
  transition: box-shadow 0.35s var(--hh-ease), transform 0.35s var(--hh-ease);
  overflow: hidden;
}

.hh-story:hover {
  box-shadow: var(--hh-shadow);
  transform: translateY(-3px);
}

.hh-story .bin,
.hh-story .bin1 {
  overflow: hidden;
  border-radius: var(--hh-radius);
}

.hh-cat-block {
  background: var(--hh-surface);
  border-radius: var(--hh-radius);
  padding: 0.75rem;
  margin-bottom: 1rem;
  box-shadow: var(--hh-shadow-sm);
  height: 100%;
  border-top: 3px solid var(--hh-teal);
  animation: hh-fade-up 0.55s var(--hh-ease) both;
}

@keyframes hh-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hh-cat-block .row {
  margin-left: -6px;
  margin-right: -6px;
  margin-bottom: 8px;
}

.hh-cat-block .row > [class*="col-"] {
  padding-left: 6px;
  padding-right: 6px;
}

.fb-page {
  width: 100% !important;
  border-radius: var(--hh-radius);
  overflow: hidden;
}

/* Ads strip */
.clr {
  padding: 0.5rem 0;
}

.clr aside {
  margin: 0.35rem 0;
}

/* Breadcrumbs */
.breadcrumbs,
.breadcrumb {
  background: var(--hh-surface);
  border-radius: var(--hh-radius);
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  border: 1px solid var(--hh-line);
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   Site footer — full layout
-------------------------------------------------------------------------- */
.hh-site-footer {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(ellipse 80% 70% at 0% 0%, rgba(11, 110, 95, 0.28), transparent 55%),
    radial-gradient(ellipse 55% 50% at 100% 20%, rgba(194, 24, 43, 0.14), transparent 50%),
    linear-gradient(165deg, #0b1620 0%, #12202e 42%, #152a38 100%);
  border-top: 3px solid var(--hh-teal);
}

.hh-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Categories strip */
.hh-footer-cats-section {
  padding: 1.75rem 0 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hh-footer-nav-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.hh-footer-nav-label {
  flex-shrink: 0;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.85rem;
  background: linear-gradient(135deg, var(--hh-teal), var(--hh-teal-deep));
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(11, 110, 95, 0.35);
}

.hh-footer-nav-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent 90%);
}

.footermenu {
  width: 100%;
}

.footermenu ul,
.footermenu ul.hh-footer-cats,
.hh-footer-cats {
  list-style: none !important;
  text-align: left;
  padding: 0 !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.55rem 0.65rem;
  width: 100%;
}

.footermenu li,
.footermenu ul li,
.hh-footer-cats > li {
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  float: none !important;
  width: auto !important;
}

.footermenu ul li a,
.hh-footer-cats > li > a {
  display: block;
  color: rgba(255, 255, 255, 0.88) !important;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  padding: 0.55rem 0.7rem;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    color 0.25s var(--hh-ease),
    background 0.25s var(--hh-ease),
    border-color 0.25s var(--hh-ease),
    transform 0.25s var(--hh-ease),
    box-shadow 0.25s var(--hh-ease);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footermenu ul li a:hover,
.hh-footer-cats > li > a:hover {
  color: #fff !important;
  background: rgba(11, 110, 95, 0.45);
  border-color: rgba(11, 110, 95, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.footermenu ul li.current-menu-item > a,
.footermenu ul li.current-menu-parent > a,
.footermenu ul li.current-post-parent > a,
.hh-footer-cats > li.current-menu-item > a,
.hh-footer-cats > li.current-menu-parent > a,
.hh-footer-cats > li.current-post-parent > a {
  color: #fff !important;
  background: rgba(194, 24, 43, 0.35);
  border-color: rgba(194, 24, 43, 0.55);
}

/* Brand / contact / social */
.hh-footer-brand-section {
  padding: 2rem 0 1.5rem;
}

.hh-footer-brand-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 0.9fr;
  gap: 2rem 2.5rem;
  align-items: start;
}

.hh-footer-logo {
  display: inline-block;
  margin-bottom: 0.85rem;
  transition: transform 0.3s var(--hh-ease), opacity 0.3s var(--hh-ease);
}

.hh-footer-logo:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.hh-footer-logo img {
  max-width: 240px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.hh-footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
  max-width: 28ch;
}

.hh-footer-col-title {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid rgba(11, 110, 95, 0.55);
  display: inline-block;
  min-width: 8rem;
}

.hh-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hh-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.55;
}

.hh-footer-contact li i {
  margin-top: 0.25rem;
  color: var(--hh-teal);
  width: 1.1rem;
  text-align: center;
  flex-shrink: 0;
}

.hh-footer-contact a,
.hh-footer-contact .footer-info-email {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none;
  transition: color 0.25s var(--hh-ease);
}

.hh-footer-contact a:hover,
.hh-footer-contact .footer-info-email:hover {
  color: #7fd4c2 !important;
}

.hh-footer-contact a i {
  margin-top: 0.25rem;
}

.hh-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.hh-footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1rem;
  transition:
    background 0.25s var(--hh-ease),
    transform 0.25s var(--hh-ease),
    border-color 0.25s var(--hh-ease),
    box-shadow 0.25s var(--hh-ease);
}

.hh-footer-social a:hover {
  background: var(--hh-teal);
  border-color: var(--hh-teal);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(11, 110, 95, 0.35);
  color: #fff !important;
}

.hh-footer-social a:nth-child(1):hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 8px 18px rgba(24, 119, 242, 0.35);
}

.hh-footer-social-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Legal bar */
.hh-footer-legal-section {
  padding: 1rem 0 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legalmenu {
  width: 100%;
}

.legalmenu ul,
.legalmenu ul.hh-legal-list,
.hh-legal-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.25rem;
}

.legalmenu ul li,
.hh-legal-list > li {
  float: none !important;
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
}

.legalmenu ul li a,
.hh-legal-list > li > a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.25s var(--hh-ease), background 0.25s var(--hh-ease);
}

.legalmenu ul li a:hover,
.hh-legal-list > li > a:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
}

.legalmenu ul li + li::before,
.hh-legal-list > li + li::before {
  content: '·';
  color: rgba(255, 255, 255, 0.35);
  margin-right: 0.15rem;
  font-weight: 700;
}

/* Copyright */
.hh-footer-copy {
  background: linear-gradient(90deg, var(--hh-teal-deep), var(--hh-teal) 55%, #0a8a74) !important;
  padding: 0 !important;
  margin-top: 0;
  font-size: 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hh-footer-copy-inner {
  padding: 0.85rem 1rem;
  text-align: center;
}

.hh-footer-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

.hh-footer-copy a,
.hh-footer-copy a.txtw {
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: border-color 0.25s var(--hh-ease);
}

.hh-footer-copy a:hover {
  border-bottom-color: #fff;
}

/* Footer responsive */
@media (max-width: 1199.98px) {
  .footermenu ul,
  .footermenu ul.hh-footer-cats,
  .hh-footer-cats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hh-footer-brand-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }

  .hh-footer-brand-col:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767.98px) {
  .hh-footer-cats-section {
    padding: 1.35rem 0 1.15rem;
  }

  .hh-footer-nav-head {
    margin-bottom: 0.9rem;
  }

  .hh-footer-nav-label {
    font-size: 1rem;
  }

  .footermenu ul,
  .footermenu ul.hh-footer-cats,
  .hh-footer-cats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .footermenu ul li a,
  .hh-footer-cats > li > a {
    font-size: 0.88rem;
    padding: 0.5rem 0.55rem;
    white-space: normal;
  }

  .hh-footer-brand-section {
    padding: 1.5rem 0 1.15rem;
  }

  .hh-footer-brand-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .hh-footer-brand-col:first-child {
    grid-column: auto;
  }

  .hh-footer-logo {
    display: block;
  }

  .hh-footer-logo img {
    margin: 0 auto;
    max-width: 200px;
  }

  .hh-footer-tagline {
    max-width: none;
    margin: 0 auto;
  }

  .hh-footer-col-title {
    display: inline-block;
  }

  .hh-footer-contact li,
  .hh-footer-contact a,
  .hh-footer-contact .footer-info-email {
    justify-content: center;
    text-align: left;
  }

  .hh-footer-social {
    justify-content: center;
  }

  .hh-footer-social-note {
    text-align: center;
  }

  .legalmenu ul li + li::before,
  .hh-legal-list > li + li::before {
    display: none;
  }
}

@media (max-width: 399.98px) {
  .footermenu ul,
  .footermenu ul.hh-footer-cats,
  .hh-footer-cats {
    grid-template-columns: 1fr 1fr;
  }
}

/* Sticky nav offset */
.position-fixed,
.position-fixedremove {
  background-color: #fff !important;
  font-size: 15px;
  line-height: 30px;
}

.NABCLRBLACK {
  color: black !important;
}

/* Owl carousel polish */
.owl-carousel .item {
  padding: 0.35rem;
}

.owl-theme .owl-nav [class*='owl-'] {
  background: var(--hh-teal) !important;
  color: #fff !important;
  border-radius: 4px !important;
  transition: background 0.25s var(--hh-ease);
}

.owl-theme .owl-nav [class*='owl-']:hover {
  background: var(--hh-crimson) !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--hh-teal) !important;
}

/* Share buttons on single */
.single .btn,
.col-md-12 .btn-primary,
.col-md-12 .btn-info,
.col-md-12 .btn-success {
  border: none;
  border-radius: var(--hh-radius);
  margin: 0.25rem 0.35rem 0.25rem 0;
  padding: 0.45rem 0.9rem;
  font-weight: 600;
  transition: transform 0.2s var(--hh-ease), box-shadow 0.2s var(--hh-ease);
}

.single .btn:hover,
.col-md-12 .btn-primary:hover,
.col-md-12 .btn-info:hover,
.col-md-12 .btn-success:hover {
  transform: translateY(-2px);
  box-shadow: var(--hh-shadow-sm);
}

/* --------------------------------------------------------------------------
   Carousel multi-item (legacy)
-------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .carousel-inner .active,
  .carousel-inner .active + .carousel-item,
  .carousel-inner .active + .carousel-item + .carousel-item,
  .carousel-inner .active + .carousel-item + .carousel-item + .carousel-item {
    display: block;
  }

  .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left),
  .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item,
  .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item + .carousel-item,
  .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item + .carousel-item + .carousel-item {
    transition: none;
  }

  .carousel-inner .carousel-item-next,
  .carousel-inner .carousel-item-prev {
    position: relative;
    transform: translate3d(0, 0, 0);
  }

  .carousel-inner .active.carousel-item + .carousel-item + .carousel-item + .carousel-item + .carousel-item {
    position: absolute;
    top: 0;
    right: -25%;
    z-index: -1;
    display: block;
    visibility: visible;
  }

  .active.carousel-item-left + .carousel-item-next.carousel-item-left,
  .carousel-item-next.carousel-item-left + .carousel-item,
  .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item,
  .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item + .carousel-item,
  .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item + .carousel-item + .carousel-item {
    position: relative;
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  .carousel-inner .carousel-item-prev.carousel-item-right {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    visibility: visible;
  }

  .active.carousel-item-right + .carousel-item-prev.carousel-item-right,
  .carousel-item-prev.carousel-item-right + .carousel-item,
  .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item,
  .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item + .carousel-item,
  .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item + .carousel-item + .carousel-item {
    position: relative;
    transform: translate3d(100%, 0, 0);
    visibility: visible;
    display: block;
  }
}

/* --------------------------------------------------------------------------
   Responsive
-------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .img-fluidlogo {
    max-width: 150px;
  }

  .topmenu ul {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 0.5rem 0;
  }

  .topmenu a {
    display: block;
    width: 100%;
  }

  ul.sub-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--hh-paper);
  }

  .imgindex1,
  .imgindex1 img {
    height: auto !important;
    width: 100%;
    max-height: 260px;
  }

  .bin img {
    height: 200px;
    width: 100%;
  }

  .imgindex2 {
    height: 200px;
    width: 100%;
  }

  .height100 img {
    height: 200px !important;
    width: 100%;
  }

  .feature-img {
    margin-bottom: 8px !important;
  }

  .footermenu ul li {
    float: none;
    width: auto !important;
  }

  .single img {
    width: 100%;
    height: auto !important;
    border-radius: var(--hh-radius) !important;
  }

  .breaking-news .news::after {
    display: none;
  }

  .binduconttext1 {
    font-size: 1.1rem;
    max-height: none;
  }

  .hh-cat-block {
    margin-bottom: 1rem;
  }
}

@media (max-width: 575.98px) {
  .topmenu ul li {
    width: 100%;
    margin: 0;
  }

  .news {
    min-width: 110px;
    font-size: 0.8rem;
  }
}
