.header_top_section a {font-size: 18px;}
nav ul li a:after{content: unset;}
.menu .menu__wrapper nav a:hover{opacity: unset;}
.personal-profile .personal-profile__social a{font-size: 32px;}
.resume-list .resume-list__block p.mb-10{margin-bottom: 10px;}
.resume-list .resume-list__block ul{list-style: disc; margin: 0 0 10px 20px; padding-left: 20px;}
.resume-list .resume-list__block ul li{margin-bottom: 8px;}

/* LinkedIn Badge Styling */
.linkedin-badge-section {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 10px;
}

.linkedin-badge-section .badge-base {
  display: inline-block;
}

/* Footer Article Styling */
.footer-article {
  color: #ffffff;
  text-align: left;
}

.footer-article__content {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 15px;
}

.footer-article__image {
  width: 15%;
  margin-bottom: 15px;
}

.footer-article__img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 6px;
  display: block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-article__image a:hover .footer-article__img {
  opacity: 0.9;
  transform: scale(1.02);
}

.footer-article__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-article__text {
  margin-bottom: 8px;
}

.footer-article__link {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.footer-article__link:hover {
  color: #f0f0f0;
  border-bottom-color: #ffffff;
  text-decoration: none;
}

.footer-article__excerpt {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0;
  display: block;
  margin-top: 8px;
}

/* Footer Copyright */
.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
  margin-bottom: 0;
}

/* Footer responsive adjustments */
@media (min-width: 769px) {
  .footer .col-md-6:first-child {
    text-align: left;
  }
}

@media (max-width: 768px) {
  #contact.container-fluid {
    padding: 2rem 1rem 1rem !important;
  }
  
  .footer .row {
    text-align: left;
  }
  
  .footer .col-md-7,
  .footer .col-md-2,
  .footer .col-md-3 {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .footer .col-md-2 {
    display: none;
  }
  
  .footer .col-md-3.text-right {
    text-align: center;
    margin-top: 20px;
  }
  
  .linkedin-badge-section {
    justify-content: center;
  }
  
  .footer-article {
    text-align: left;
    margin-bottom: 20px;
  }
  
  .footer-article__content {
    flex-direction: row;
    align-items: start;
    gap: 15px;
  }
  
  .footer-article__image {
    width: 20%;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  
  .footer-article__img {
    width: 100%;
    max-width: 100%;
  }
  
  .footer-article__text {
    text-align: left;
    flex: 1;
  }
  
  .footer-article__excerpt {
    text-align: left;
  }
}