/* HTML */
html {
  scroll-padding-top: 230px;
}
/* Body */
body {
  font-family: "Manrope", Arial, Sans-Serif;
  width: 100%;
}

.font-roboto {
  font-family: "Roboto Slab", Arial, Sans-Serif;
}

.container {
  max-width: 1050px;
  z-index: 2;
  position: relative;
}

article a .entry-header img {
  transition: opacity .2s; 
}
article a:hover .entry-header img {
  opacity: 0.9;
  transition: opacity .2s; 
}

/* Article */
.post .entry-content p, .post .entry-content li, .page .entry-content p, .page .entry-content li  {
  font-size: 1.2rem;
  line-height: 2rem;
}

.post .entry-content h1, .post .entry-content h2, .post .entry-content h3, .post .entry-content h4, .post .entry-content h5, .post .entry-content h6,
.page .entry-content h1, .page .entry-content h2, .page .entry-content h3, .page .entry-content h4, .page .entry-content h5, .page .entry-content h6  {
  margin-bottom: 1.6rem;
  margin-top: 1.6rem;
  font-weight: 600;
}

.post .entry-content p a, .post .entry-content li a, .post .entry-content h4 a, .post .entry-content h3 a,
.page .entry-content p a, .page .entry-content li a, .page .entry-content h4 a, .page .entry-content h3 a  {
  color: #212529;
  text-decoration: none;
  border-bottom: solid 2px #2D333A;
}
.post .entry-content p a:hover, .post .entry-content li a:hover, .post .entry-content h4 a:hover, .post .entry-content h3 a:hover,
.page .entry-content p a:hover, .page .entry-content li a:hover, .page .entry-content h4 a:hover, .page .entry-content h3 a:hover  {
  color: #ffffff;
  text-decoration: none;
  background: #2D333A;
}
.post .entry-content figure, .page .entry-content figure {
  padding: 5px 0px 5px 0px;
}
.post .entry-content img, .page .entry-content img {
  background-color: #f1f1f1;
  width: 100%;
}
.post .wp-block-image figcaption, .post .entry-content .wp-caption-text,
.page .wp-block-image figcaption, .page .entry-content .wp-caption-text {
  font-size: 80%;
  color: #6c757d;
  text-align: center;
}
.post .wp-block-quote, .page .wp-block-quote {
  padding-left: 20px;
  background: #f1f1f1;
  border-left: solid 2px #212529;
  padding-top: 15px;
  padding-bottom: 10px;
  padding-right: 15px;
}
.post .aligncenter, .page .aligncenter {
  width: 100% !important;
}
.post .entry-content table, .page .entry-content table {
  width: 100%;
  overflow-wrap: break-word;
  font-size: 0.9rem;
}
.post .entry-content table tr, .page .entry-content table tr {
}
.post .entry-content table tr th {
  text-align: center;
  background: #f8f9fa;
  color: #212529;
  border-top: solid 1px #dee2e6;
}

.site-footer ul li {
  margin: 9px 0;
  list-style: none;
}

.site-footer ul li a {
  text-decoration: none;
}

hr {
  color: #f1f1f1;
  opacity: 0.25;
}
.post iframe {
  width: 100%;
}

.has-red-color {
  color: #dc3545!important;
}
.has-green-color {
  color: #28a745!important;
}
.has-orange-color {
  color: #fd7e14!important;
}
.has-yellow-color {
  color: #ffc107!important;
}
.has-blue-color {
  color: #007bff!important;
}

.embed-responsive-item {
  object-fit: cover;
  background-color: #f1f1f1;
}
.author-link a {
  color: inherit !important;
  text-decoration: none;
}

.article-share-btn:hover{
  background-color: #212529;
  color: white !important;
  transition: ease-in 0.2s;
  border: 1px solid #212529;
}

.article-share-btn i{
  color: inherit;
}

.btn-outline:hover{
  background-color: #212529;
  color: white !important;
  transition: ease-in 0.2s;
  border: 1px solid #212529;
}

.second-nav-item {
  position: relative;
}

/* Sidebar */
.sticky-sidebar {
  padding-top: 20px;
  margin-top: -20px;
}

/* Tab styling */
.tab-control .active {
  color: #212529 !important;
  font-weight: bold;
  border-bottom: solid 2px #212529;
}

/* Prevent blue outline on input */
.form-control:focus {
  border-color: #ced4da; /* default B5 color or set your own color*/
  outline: none !important;
  box-shadow: none !important;
}

/* Menu collapse icon change [+] / [-] */
/* Hide the minus icon by default */
#newsToggleIconMinus {
  opacity: 0;
}

/* Show the minus icon and hide the plus icon when the collapsible content is shown */
.nav-link[data-bs-toggle="collapse"]:not(.collapsed) #newsToggleIconMinus {
  opacity: 1 !important;
}

.nav-link[data-bs-toggle="collapse"]:not(.collapsed) #newsToggleIconPlus {
  opacity: 0;
  width: 0px;
}

/* Ensure plus is visible and minus is hidden when collapsed */
.nav-link[data-bs-toggle="collapse"].collapsed #newsToggleIconPlus {
  opacity: 1;
}

.nav-link[data-bs-toggle="collapse"].collapsed #newsToggleIconMinus {
  opacity: 0;
}

@media (max-width: 767px) {
  .sticky-sidebar {
    padding-top: 0px;
    margin-top: 0px;
  }
}