/* ========================================
   ARTICLE PAGE STYLES
   Follows EnerBless-M design system
   ======================================== */

/* ========== HERO SECTION ==========  */
#article-page .hero-section.hero-bg-image {
  background: url(../images/male-inf-banner.png) no-repeat center center !important;
  background-size: cover !important;
  padding: 150px 0 !important;
  overflow: hidden;
  width: calc(100% - 0px);
  margin-left: 0px;
  margin-right: 0px;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
}



/* Gradient overlay for text readability */
/* #article-page .hero-section.hero-bg-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 20, 25, 0.75) 0%,
    rgba(15, 20, 25, 0.5) 60%,
    rgba(15, 20, 25, 0.2) 100%
  );
  pointer-events: none;
  z-index: 1;
} */

#article-page .hero-section.hero-bg-image .container-fluid {
  position: relative;
  z-index: 2;
}

#article-page .hero-content {
  padding: 0;
}

#article-page .hero-content .title-secondary {
  display: block;
  font-size: 37px;
  font-weight: 800;
  color: #ffffff;
  line-height: normal;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
  text-align: center;
}

#article-page .hero-section.hero-bg-image h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#article-page .hero-section.hero-bg-image h5 {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-family: 'Inter', 'Roboto', sans-serif;
}

#article-page .hero-content .article-meta {
  display: flex;
  gap: 2rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

#article-page .article-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

#article-page .article-meta .meta-item i {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ========== ARTICLE CONTAINER ========== */
.article-container {
  width: 100%;
  float: left;
  background: linear-gradient(180deg, rgba(15, 20, 25, 0.5) 0%, rgba(15, 20, 25, 0.2) 100%);
  position: relative;
  z-index: 1;
  padding-top: 50px;
  padding-bottom: 50px;
}

/* ========== CONTENT CARD ========== */
.content-card {
  background: linear-gradient(135deg, rgba(40, 45, 55, 0.95) 0%, rgba(30, 35, 45, 0.95) 100%);
  backdrop-filter: blur(15px);
  border: 1.5px solid rgba(211, 19, 126, 0.25);
  border-radius: 24px;
  padding: 20px 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  color: #ffffff;
}

.content-card:hover {
  box-shadow: 0 30px 80px rgba(211, 19, 126, 0.2);
  border-color: rgba(211, 19, 126, 0.4);
  transform: translateY(-2px);
}

.content-card .card-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(211, 19, 126, 0.3);
  width: 100%;
  float: left;
}

.content-card h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-family: 'Poppins', sans-serif;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.content-card h2 i {
  color: #f48620;
  font-size: 2.2rem;
}

.content-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  font-family: 'Poppins', sans-serif;
  line-height: 1.3;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(211, 19, 126, 0.3);
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.content-card h3::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #D3137E, #f48620);
  border-radius: 1px;
}

.content-card h3 i {
  color: #f48620;
  font-size: 1.6rem;
  margin-right: 0.25rem;
}

.content-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 1.75rem;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.content-card h4 i {
  color: #D3137E;
  font-size: 1.3rem;
}

.content-card p {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.content-card p.text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* ========== ARTICLE SECTIONS ========== */
.article-section {
   padding-top: 50px;
  margin-top: 0;
  width: 100%;
  float: left;
 
}

.article-section:first-child
{
  padding-top:0px;
}


.article-section ul {
  margin-left: 0;
  margin-bottom: 1.5rem;
  list-style: none;
  padding-left: 0;
}

.article-section ul li {
  margin-bottom: 1.25rem;
  color: #ffffff;
  line-height: 28px;
  position: relative;
  padding-left: 3.5rem;
  display: flex;
  align-items: flex-start;
  font-size: 17px;
}

.article-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #D3137E, #f48620);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
}

.article-section ul li::after {
     content: '';
    position: absolute;
    left: 5px;
    top: 8px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    background-image: url(../images/sml-arw.png);
    width: 16px;
    height:14px;
    background-size: contain;
    background-repeat: no-repeat;
}

.article-section .effect ul li::after
{
     content: '';
    position: absolute;
    left: 5px;
    top: 8px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    background-image: url(../images/sml-arw.png);
    width: 16px;
    height: 14px;
    background-size: contain;
    background-repeat: no-repeat;
}


.article-section ol {
  margin-left: 0;
  margin-bottom: 1.5rem;
  padding-left: 0;
  list-style: none;
  counter-reset: item;
}

.article-section ol li {
  margin-bottom: 1.25rem;
  color: #ffffff;
  line-height: 1.85;
  position: relative;
  padding-left: 3.5rem;
  counter-increment: item;
  display: flex;
  align-items: flex-start;
  font-size: 17px;
}

.article-section ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #f48620, #D3137E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: white;
  font-weight: 800;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
}

/* ========== FIGURES & MEDIA ========== */
.article-figure {
  margin: 2.5rem 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: rgba(40, 45, 55, 0.6);
  border: 1px solid rgba(211, 19, 126, 0.2);
}

.article-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: transform 0.3s ease;
  background: rgba(211, 19, 126, 0.1);
}

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

.figure-caption {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.75rem;
  font-weight: 500;
  text-align: center;
  padding: 0 1rem 1rem;
  line-height: 1.6;
}

/* ========== ARTICLE FOOTER ========== */
.article-footer {
  border-top: 2px solid rgba(211, 19, 126, 0.25);
  padding-top: 2rem;
  margin-top: 0px !important;
}

.article-footer .tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  color: #ffffff;
}

.article-footer .badge {
  background: rgba(244, 134, 32, 0.2) !important;
  color: #f48620 !important;
  font-weight: 600;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(244, 134, 32, 0.4);
}

.article-actions {
     display: flex;
    gap: 0.75rem;
    flex-wrap: nowrap;
}

.article-actions .btn {
  border-radius: 8px;
  font-weight: 600;
  padding: 10px;
  transition: all 0.3s ease;
}

.article-actions .btn-outline-primary {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.article-actions .btn-outline-primary:hover {
  background: #D3137E;
  border-color: #D3137E;
  color: white;
  transform: translateY(-2px);
}

.article-actions .btn-primary {
  background: linear-gradient(135deg, #D3137E, #f48620);
  border: none;
  color: white;
}

.article-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(211, 19, 126, 0.3);
}

/* ========== SIDEBAR ========== */
.sticky-side {
  position: relative;
}

.sticky-side .card {
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid rgba(211, 19, 126, 0.25);
  background: linear-gradient(135deg, rgba(211, 19, 126, 0.15) 0%, rgba(244, 134, 32, 0.08) 100%);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  padding: 1.75rem;
  margin-bottom: 1.75rem;
  transition: all 0.3s ease;
  max-height: none;
  overflow-y: visible;
      padding-bottom: 15px;
}

.sticky-side .card:hover {
  border-color: rgba(211, 19, 126, 0.4);
  box-shadow: 0 20px 50px rgba(211, 19, 126, 0.2);
}

.sticky-side .card-body {
  padding: 0;
  color: #ffffff;
}

.sticky-side .card-body a {
  color: #f48620;
  text-decoration: none;
  font-weight: normal;
  transition: all 0.3s ease;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0rem 0px 0.5rem;
  line-height: 1.6;
}

.sticky-side .card-body a:hover {
  color: #D3137E;
  padding-left: 0.5rem;
}

.sticky-side .card-body ul li {
  margin-bottom: 0px;
}

.sticky-side .card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
}

.sticky-side .card-title i {
  color: #f48620;
  font-size: 1.5rem;
}

.toc ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 10px;
}

.toc ul li {
  padding: 0.6rem 0px 0px;
  border-bottom: 1px solid rgba(211, 19, 126, 0.1);
}

.toc ul li:last-child {
  border-bottom: none;
}

.toc ul li a {
  color: #f48620;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: block;
  padding: 0.25rem 0;
}

.toc ul li a:hover {
  color: #D3137E;
  padding-left: 0.5rem;
  text-decoration: underline;
}

/* ========== CTA GRADIENT ========== */
.bg-gradient-cta {
  background: linear-gradient(135deg, rgba(211, 19, 126, 0.95), rgba(244, 134, 32, 0.9)) !important;
  color: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(211, 19, 126, 0.3);
  border: 1px solid rgba(211, 19, 126, 0.4);
}

.bg-gradient-cta .card-title {
  color: white;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bg-gradient-cta .card-title i {
  font-size: 1.8rem;
}

.bg-gradient-cta p {
  color: rgba(255, 255, 255, 0.95);
}

.bg-gradient-cta .btn {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-weight: 700;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
}

.bg-gradient-cta .btn:hover {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
  color: white;
}

/* ========== ACCESSIBILITY & UTILITIES ========== */
.muted {
  color: rgba(0, 0, 0, 0.55);
  font-size: 0.95rem;
}

.dot {
  margin: 0 0.5rem;
  color: rgba(0, 0, 0, 0.3);
}

.text-muted {
  color: #999 !important;
  font-size: 0.95rem;
}

.d-flex {
  display: flex;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.text-center {
  text-align: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

#article-page .hero-section.hero-bg-image
{
width: 100%;
    height: 75vh;
    background: url(../images/article1-banner.png) no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    padding: 0px 0;
    overflow: hidden;
    width: calc(100% - 0px);
    margin-left: 0px;
    margin-right: 0px;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
     min-height:350px;
}


#article-page .hero-section.hero-bg-image.artcl2
{
width: 100%;
    height: 75vh;
    background: url(../images/article2-banner.png) no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    padding: 0px 0;
    overflow: hidden;
    width: calc(100% - 0px);
    margin-left: 0px;
    margin-right: 0px;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
    min-height: 350px;
}

#article-page .hero-section.hero-bg-image.artcl3
{
width: 100%;
    height: 75vh;
    background: url(../images/article3-banner.png) no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    padding: 0px 0;
    overflow: hidden;
    width: calc(100% - 0px);
    margin-left: 0px;
    margin-right: 0px;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
    min-height: 350px;
}

#article-page .hero-section.hero-bg-image .hero-content {
    position: relative;
    left: unset;
    right: unset;
    top: unset;
    bottom: unset;
    transform: unset;
    padding-top: 100px;
    display: block;
    float: left;
    width: 100%;
    text-align: center;
    float: left;
    max-width: 100%;
    padding: 40px 50px;
    background: #24001370;
    background: linear-gradient(50deg, #6c003bb3 0%, #8e4403a8 100%);
}


#article-page .hero-section.hero-bg-image h1 {
    font-size: 50px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    max-width: 900px;
}

#article-page .impact-item {
    display: flex;
    gap: 1.5rem;
   margin-bottom: 2rem;
     /* padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border-left: 3px solid #f48620; */
    transition: all 0.3s ease;
}

#article-page .effect .impact-item
{
     margin-bottom: 15px;
}

#article-page .impact-item-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D3137E, #f48620);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}
#article-page .impact-item-content p {
    font-size: 17px;
    color: #ffffff;
    line-height: 1.7;
    margin: 0;
}

#article-page .impact-item-content-text {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.7;
    margin: 0;
    width: 100%;
    float: left;
}

#article-page .effect .impact-item-icon
{
      width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(211, 19, 126, 0.2), rgba(244, 134, 32, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: #f48620;
}

#article-page .content-card .effect h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 29px;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
}

#article-page .article-section .effect .impact-item-content-text ul
{
  margin-left: 0;
    margin-bottom: 15px;
    list-style: none;
    padding-left: 0;
}

#article-page .article-section .effect .impact-item-content-text ul li
{
  margin-bottom: 15px;
  color: #ffffff;
  line-height: 22px;
  position: relative;
  padding-left: 2.5rem;
  display: flex;
  align-items: flex-start;
  font-size: 17px;
  text-align: left;
}

#article-page .article-section .effect .impact-item-content-text ul li span i.fa-arrow-turn-up
{
      -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    margin-right: 6px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#article-page .article-section .effect .impact-item-content-text p{
   margin-bottom: 20px;
   color: #ffffff;
   line-height: 22px;
   position: relative;
   padding-left:0px;
   display: flex;
   align-items: flex-start;
   font-size: 17px;
   text-align: left;
}

#article-page .article-section .faico
{
  padding-left: 80px;
  width: 100%;
  float: left;
  line-height: 25px;
  padding-top: 10px;
  position: relative;
  margin-bottom: 30px;
  font-size: 17px;
}

#article-page .article-section .faico .fas{
          width: 60px;
          height: 60px;
          background: linear-gradient(135deg, rgba(211, 19, 126, 0.2), rgba(244, 134, 32, 0.2));
          border-radius: 50%;
          margin: 0 auto 1.5rem;
          font-size: 2rem;
          color: #f48620;
          display: inline-block;
          text-align: center;
          padding: 13px;
          position: absolute;
          left: 0px;
}

.refs p{
  font-size: 14px;
} 


.refs p a{
 text-decoration: underline;
 color:#f48620;
 word-break: break-all;
}


.refs p a:hover{
 text-decoration: none;
 color:#fff;
}

.structrimg img
{
  border-radius: 10px;
  max-height: 300px;
  float: right;
}



.m_scroll_arrows
{
  display: block;
  width: 5px;
  height: 5px;
  -ms-transform: rotate(45deg); /* IE 9 */
  -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
  transform: rotate(45deg);   
  border-right: 4px solid white;
  border-bottom: 4px solid white;
  margin: 0 0 3px 4px;  
  width: 16px;
  height: 16px;
}


.farw
{
  margin-top: 1px;
}

.farw, .sarw
{
      margin: 1px auto;
    -webkit-animation: mouse-scroll 1s infinite;
    -moz-animation: mouse-scroll 1s infinite;
    animation: mouse-scroll 1s infinite;  
}

.farw
{
  -webkit-animation-delay: .1s;
  -moz-animation-delay: .1s;
  -webkit-animation-direction: alternate;  
  animation-direction: alternate;
  animation-delay: alternate;
}

.sarw
{
  -webkit-animation-delay: .2s;
  -moz-animation-delay: .2s;
  -webkit-animation-direction: alternate;  
  animation-delay: .2s;
  animation-direction: alternate;  
  margin-top: -6px;
}



@-webkit-keyframes mouse-scroll {
  0%   { opacity: 0;}
  50%  { opacity: .5;}
  100% { opacity: 1;}
}
@-moz-keyframes mouse-scroll {
  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@-o-keyframes mouse-scroll {
  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@keyframes mouse-scroll {
  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}




/* ========== RESPONSIVE DESIGN ========== */

/* Tablet Landscape (1200px) */
@media (max-width: 1199px) {
  #article-page .hero-section.hero-bg-image h1 {
    font-size: 3rem;
  }

  .content-card {
    padding: 40px;
  }

  .content-card h2 {
    font-size: 1.8rem;
  }

  .content-card h3 {
    font-size: 1.3rem;
  }
}

/* Tablet Portrait (991px) */
@media (max-width: 991px) {
  #article-page .hero-section.hero-bg-image {
    padding: 120px 0 !important;
    min-height: 480px;
  }

  #article-page .hero-content .title-secondary {
    font-size: 38px;
  }

  #article-page .hero-section.hero-bg-image h1 {
    font-size: 2.5rem;
  }

  #article-page .hero-section.hero-bg-image h5 {
    font-size: 1.1rem;
  }

  .content-card {
    padding: 32px;
  }

  .content-card h2 {
    font-size: 1.6rem;
  }

  .content-card h3 {
    font-size: 28px;
  }

  .content-card h4 {
    font-size: 1.1rem;
  }

  .content-card p {
    font-size: 1rem;
  }

  .sticky-side {
    position: static;
    margin-top: 2rem;
  }

  .sticky-side .card {
    padding: 1.5rem;
  }
}
@media (max-width:991px) and (min-width: 768px) {
      .text-center-sm {
        text-align: center !important;
    }
  .formula-img {
    border-radius: 10px;
    float: none;
    height: 190px;
}
 .structrimg
  {
    float: none !important;
    text-align: center;
  }
  .structrimg img
{
  border-radius: 10px;
  max-height: 250px;
  float: none;
}
  article{order: 2;}
}

@media (max-width:768px) and (min-width: 150px) {
  article{order: 2;}
  .structrimg
  {
    float: none !important;
    text-align: center;
  }
  .structrimg img
{
  border-radius: 10px;
  max-height: 200px;
  float: none;
}

  .article-footer .d-flex
  {
    display: block !important;
  }
  #article-page #Effect .impact-item{
        /* flex-direction: column; */
        text-align: center;
    }
    #article-page .content-card .effect h4{    margin-top: 0px;
    margin-bottom: 15px;}
    #article-page .effect .impact-item-icon{margin-bottom: 0px;}
  .formula-img {
    margin: 0px auto;
    float: none;
    height: 190px;
    text-align: center;
}
/* #article-page .hero-section.hero-bg-image{    background-position: left bottom !important;} */
}
@media (max-width:435px) and (min-width: 150px) {
  .article-actions{flex-wrap: wrap;}
  #article-page .hero-section.hero-bg-image{    height: 75vh;}
}

/* Mobile (768px) */
@media (max-width: 767px) {
  #article-page .hero-section.hero-bg-image {
    padding: 100px 0 !important;
    min-height: 420px;
    display: flex;
    align-items: center;
  }

  #article-page .hero-content .title-secondary {
    font-size: 32px;
    margin-bottom: 0.75rem;
  }

  #article-page .hero-section.hero-bg-image h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  #article-page .hero-section.hero-bg-image h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  #article-page .hero-content .article-meta {
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9rem;
  }

  .content-card {
    padding: 24px;
    border-radius: 20px;
  }

  .content-card h2 {
    font-size: 1.5rem;
  }

  .content-card h3 {
    font-size: 25px;
  }

  .content-card h4 {
    font-size: 1rem;
  }

  .content-card p {
    font-size: 17px;
    line-height: 1.7;
  }
/* 
  .article-section {
    margin-top: 0px;
    margin-bottom: 1.75rem;
  } */

  .article-figure {
    margin: 1.5rem 0;
  }

  .article-container {
    padding: 40px 0;
  }

  .sticky-side {
    position: static;
    margin-top: 2rem;
  }

  .article-footer {
    padding-top: 1.5rem;
    margin-top: 2rem;
  }

  /* .article-actions {
    flex-direction: column;
  } */

  .article-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* Small Mobile (480px) */
@media (max-width: 479px) {
  #article-page .hero-section.hero-bg-image {
    padding: 80px 0 !important;
            min-height: 300px;
  }

  #article-page .hero-content .title-secondary {
    font-size: 26px;
  }

  #article-page .hero-section.hero-bg-image h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  #article-page .hero-section.hero-bg-image h5 {
    font-size: 0.95rem;
  }

  .content-card {
    padding: 18px;
    margin-bottom: 1rem;
    width: 100%;
    float: left;
  }

  .content-card h2 {
    font-size: 1.35rem;
  }

  .content-card h3 {
    font-size: 24px;
    margin-top: 1.5rem;
  }


  .article-section ul li {
           padding-left: 40px;
  }

  .article-section ul li::before {
    font-size: 0.95rem;
  }

  .sticky-side .card {
    padding: 1.25rem;
  }

  .bg-gradient-cta {
    padding: 1.75rem;
  }
}

/* Desktop Sticky Sidebar */
@media (min-width: 992px) {
  .sticky-side {
    position: sticky;
    top: 92px;
  }
}

/* Print Styles */
@media print {
  body * {
    visibility: visible;
  }

  .modern-nav,
  .mobile-toggle,
  .animated-bg,
  .geometric-shapes,
  .modern-footer
  .loading-overlay {
    display: none !important;
  }

  .article-container {
    padding-top: 0;
  }

  .hero-section {
    page-break-after: avoid;
  }

  .content-card {
    box-shadow: none;
    border: 1px solid #ddd;
  }

  .sticky-side {
    position: static;
  }
}



/* Hamburger Icon */
.hamburger {
  width: 32px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.hamburger span {
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: 0.35s ease;
}

/* Animation to X */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Slide-In Mobile Menu */
.mobile-menu {
  position: absolute;
  top: 0;
  right: -270px;
  width: 260px;
  height: auto;
  background: #ffffff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: -5px 0 25px rgba(0,0,0,0.15);
  transition: right 0.35s ease;
  z-index: 999;
}

.mobile-menu a {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.mobile-menu.active {
  right: 0;
}

/* Hide mobile menu on lg+ */
@media (min-width: 992px) {
  .mobile-menu, .hamburger {
    display: none;
  }
}

.sidemenu1
{
  position: fixed;
  right: 0;
  bottom: 50px;
}
