.article-details-wrapp {
  margin-bottom: 60px;
}
.article-details-wrapp .article-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.article-details-wrapp .article-content .article-main-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .article-details-wrapp .article-content .article-main-content {
    flex-direction: row;
    align-items: flex-start;
  }
  

}
.article-details-wrapp .article-content .article-main-content .article-image {
  flex: 0 0 40%;
}
.article-details-wrapp .article-content .article-main-content .article-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.article-details-wrapp .article-content .article-main-content .article-text {
  flex: 0 0 70%;
}
.article-details-wrapp .article-content .article-main-content .article-text h2 {
  font-size: 1.8rem;
  color: #333;
  margin-top: 30px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}
.article-details-wrapp .article-content .article-main-content .article-text h2:first-child {
  margin-top: 0;
}
.article-details-wrapp .article-content .article-main-content .article-text p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #555;
}
.article-details-wrapp .article-content .article-main-content .article-text ul,
.article-details-wrapp .article-content .article-main-content .article-text ol {
  margin-bottom: 25px;
  padding-right: 20px;
}
.article-details-wrapp .article-content .article-main-content .article-text ul li,
.article-details-wrapp .article-content .article-main-content .article-text ol li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #555;
}
.article-details-wrapp .article-content .article-main-content .article-text .article-gallery {
  margin-top: 30px;
}
.article-details-wrapp .article-content .article-main-content .article-text .article-gallery h2 {
  font-size: 1.6rem;
}
.article-details-wrapp .article-content .article-main-content .article-text .article-gallery .gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}
.article-details-wrapp .article-content .article-main-content .article-text .article-gallery .gallery-container .gallery-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.article-details-wrapp .article-content .article-main-content .article-text .article-gallery .gallery-container .gallery-item img:hover {
  transform: scale(1.05);
}
.article-details-wrapp .article-content .related-content {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}
.article-details-wrapp .article-content .related-content h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 25px;
}
.article-details-wrapp .article-content .related-content .related-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}
.article-details-wrapp .article-content .related-content .related-items .related-item {
  border: 1px solid #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.article-details-wrapp .article-content .related-content .related-items .related-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.article-details-wrapp .article-content .related-content .related-items .related-item .related-image {
  height: 200px;
  overflow: hidden;
}
.article-details-wrapp .article-content .related-content .related-items .related-item .related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.article-details-wrapp .article-content .related-content .related-items .related-item .related-image img:hover {
  transform: scale(1.05);
}
.article-details-wrapp .article-content .related-content .related-items .related-item .related-info {
  padding: 20px;
}
.article-details-wrapp .article-content .related-content .related-items .related-item .related-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #333;
}
.article-details-wrapp .article-content .related-content .related-items .related-item .related-info p {
  color: #6c757d;
  margin-bottom: 15px;
  line-height: 1.5;
}
.article-details-wrapp .article-content .related-content .related-items .related-item .related-info .btn-more {
  display: inline-block;
  padding: 0 5px;
  color: var(--color-secondary);
  border: 1px solid var(--color-secondaryAlpha);
  border-radius: 15px;
  font-size: 0.85rem;
}
.article-details-wrapp .article-content .related-content .related-items .related-item .related-info .btn-more:hover {
  background-color: var(--color-secondaryAlpha);
}
.article-details-wrapp .article-sidebar {
  margin-top: 20px;
}
.article-details-wrapp .article-sidebar h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #333;
  border-right: 3px solid var(--color-primary);
  padding-right: 10px;
}
.article-details-wrapp .article-sidebar .specialists-section, .article-details-wrapp .article-sidebar .faq-section, .article-details-wrapp .article-sidebar .appointment-section {
  background-color: #f1f3f7;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.article-details-wrapp .article-sidebar .specialist {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-borderLight);
}
.article-details-wrapp .article-sidebar .specialist img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: 10px;
}
.article-details-wrapp .article-sidebar .specialist .specialist-info h4 {
  margin: 0 0 5px;
  font-size: 1.1rem;
}
.article-details-wrapp .article-sidebar .specialist .specialist-info p {
  margin: 0 0 5px;
  font-size: 0.9rem;
  color: #666;
}
.article-details-wrapp .article-sidebar .faq-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-borderLight);
}
.article-details-wrapp .article-sidebar .faq-item h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--color-primary);
}
.article-details-wrapp .article-sidebar .faq-item p {
  font-size: 0.9rem;
  margin: 0;
}
.article-details-wrapp .article-sidebar .appointment-form input {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.article-details-wrapp .article-sidebar .btn-more, .article-details-wrapp .article-sidebar .btn-submit {
  display: inline-block;
  padding: 0 5px;
  color: var(--color-secondary);
  border: 1px solid var(--color-secondaryAlpha);
  border-radius: 15px;
  font-size: 0.85rem;
}
.article-details-wrapp .article-sidebar .btn-more:hover, .article-details-wrapp .article-sidebar .btn-submit:hover {
  background-color: var(--color-secondaryAlpha);
}
.article-details-wrapp .user-comments {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}
.article-details-wrapp .user-comments h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 25px;
}
.article-details-wrapp .user-comments .comments-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.article-details-wrapp .user-comments .comments-container .comment {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.article-details-wrapp .user-comments .comments-container .comment .comment-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.article-details-wrapp .user-comments .comments-container .comment .comment-header .user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: 15px;
}
.article-details-wrapp .user-comments .comments-container .comment .comment-header .comment-info {
  flex-grow: 1;
}
.article-details-wrapp .user-comments .comments-container .comment .comment-header .comment-info h4 {
  margin: 0 0 5px 0;
  font-size: 1.1rem;
  color: #333;
}
.article-details-wrapp .user-comments .comments-container .comment .comment-header .comment-info .comment-date {
  font-size: 0.9rem;
  color: #6c757d;
}
.article-details-wrapp .user-comments .comments-container .comment .comment-header .rating {
  color: #ffc107;
  font-size: 1rem;
}
.article-details-wrapp .user-comments .comments-container .comment .comment-body p {
  margin: 0;
  line-height: 1.6;
  color: #555;
}
.article-details-wrapp .user-comments .add-comment-form .form-group .rating-select {
  display: flex;
  gap: 5px;
  font-size: 1.5rem;
  color: #6c757d;
}
.article-details-wrapp .user-comments .add-comment-form .form-group .rating-select i {
  cursor: pointer;
  transition: color 0.2s ease;
}
.article-details-wrapp .user-comments .add-comment-form .form-group .rating-select i:hover, .article-details-wrapp .user-comments .add-comment-form .form-group .rating-select i.active {
  color: #ffc107;
}
.article-details-wrapp .faq-section {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}
.article-details-wrapp .faq-section h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 25px;
}
.article-details-wrapp .faq-section .faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.article-details-wrapp .faq-section .faq-container .faq-item {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
}
.article-details-wrapp .faq-section .faq-container .faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #f8f9fa;
  cursor: pointer;
}
.article-details-wrapp .faq-section .faq-container .faq-item .faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #333;
}
.article-details-wrapp .faq-section .faq-container .faq-item .faq-question i {
  transition: transform 0.3s ease;
}
.article-details-wrapp .faq-section .faq-container .faq-item .faq-question.active i {
  transform: rotate(180deg);
}
.article-details-wrapp .faq-section .faq-container .faq-item .faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.article-details-wrapp .faq-section .faq-container .faq-item .faq-answer p {
  margin: 0;
  line-height: 1.6;
  color: #555;
}
.article-details-wrapp .faq-section .faq-container .faq-item .faq-answer.active {
  padding: 15px 20px;
  max-height: 500px;
}
.article-details-wrapp .social-share {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
  text-align: center;
}
.article-details-wrapp .social-share h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 20px;
}
.article-details-wrapp .social-share .share-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.article-details-wrapp .social-share .share-buttons .share-button {
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}
.article-details-wrapp .social-share .share-buttons .share-button i {
  margin-left: 8px;
  font-size: 1.1rem;
}
.article-details-wrapp .social-share .share-buttons .share-button:hover {
  opacity: 0.9;
}
.article-details-wrapp .social-share .share-buttons .share-button.telegram {
  background-color: #0088cc;
}
.article-details-wrapp .social-share .share-buttons .share-button.whatsapp {
  background-color: #25d366;
}
.article-details-wrapp .social-share .share-buttons .share-button.twitter {
  background-color: #1da1f2;
}
.article-details-wrapp .social-share .share-buttons .share-button.facebook {
  background-color: #3b5998;
}
.article-details-wrapp .social-share .share-buttons .share-button.linkedin {
  background-color: #0077b5;
}

.articles-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.articles-list .article-item {
  border: 1px solid #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.articles-list .article-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.articles-list .article-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.articles-list .article-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.articles-list .article-item h2 {
  font-size: 1.3rem;
  color: #333;
  margin: 15px 15px 10px;
}
.articles-list .article-item p {
  color: #6c757d;
  margin: 0 15px 15px;
  line-height: 1.5;
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #0d6efd;
  color: #fff;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top i {
  font-size: 1.2rem;
}
.scroll-to-top:hover {
  background-color: #0b5ed7;
}

.faq-answer.active {
  padding: 15px 20px;
  max-height: 500px;
}

.rating-select i.active {
  color: #ffc107;
}

@media (max-width: 768px) {
	  img
  {
	  max-width: 100%;
  }
  .article-details-wrapp .inner-page-banner {
    height: 200px;
  }
  .article-details-wrapp .inner-page-banner .page-banner-content h1 {
    font-size: 1.8rem;
  }
  .article-details-wrapp .article-content .article-main-content .article-image,
.article-details-wrapp .article-content .article-main-content .article-text {
    flex: 0 0 100%;
  }
  .article-details-wrapp .related-content .related-items {
    grid-template-columns: 1fr;
  }
  .article-details-wrapp .user-comments .add-comment-form {
    padding: 15px;
  }
  .article-details-wrapp .social-share .share-buttons {
    flex-direction: column;
    align-items: center;
  }
  .article-details-wrapp .social-share .share-buttons .share-button {
    width: 100%;
    justify-content: center;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .article-details-wrapp .related-content .related-items {
    grid-template-columns: repeat(2, 1fr);
  }
}