.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 150px;
  margin: 0 80px;
}

.blog-header h1 {
  font-size: 24px;
  font-weight: 600;
  line-height: 150%;
  color: white;
  margin: 0;
}

.socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.socials p {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 8px;
}

.social-icons span {
  cursor: pointer;
  border: 1px solid #262626;
  border-radius: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-icons span:hover {
  border-color: #d0ff71;
  transform: translateY(-2px);
}

.copy-notification {
  position: absolute;
  top: -40px;
  right: 0;
  background-color: #d0ff71;
  color: #000;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(208, 255, 113, 0.3);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-photos {
  margin: 20px 80px;
  margin-top: 40px;
  padding: 40px 40px;
  display: flex;
  justify-content: space-between;
  border: 1px solid #262626;
  background-color: #1a1a1a;
  border-radius: 12px;
  gap: 30px;
  flex-wrap: wrap;
}

.blog-photos img {
  width: calc((100% - 30px) / 2);
  max-width: 580px;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.blog-content {
  display: flex;
  margin: 20px 80px;
  gap: 20px;
  align-items: start;
}

.content-desc {
  border: 1px solid #262626;
  padding: 40px 40px;
  border-radius: 10px;
  width: 50%;
  height: auto;
}

.content-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.name {
  color: white;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  margin: 0;
}

.location {
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  margin: 0;
}

.description-blog {
  display: flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid #262626;
  padding-top: 16px;
}

.description-blog span {
  color: var(--button-color);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  background-color: #1a1a1a;
  border: 1px solid #262626;
  border-radius: 28px;
}

.content-text {
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  padding-top: 40px;
  margin: 0;
}

.content-text hr {
  border-top: 1px solid #262626;
  margin: 40px 0;
}

.content-desc h2 {
  color: white;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  margin: 0;
  margin-bottom: 10px;
}

.content-text a {
  color: var(--button-color);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.content-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 40px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 1px solid #d0ff71;
  background: linear-gradient(90deg, #1a1a1a 0%, rgba(26, 26, 26, 0) 100%);
  padding-left: 16px;
}

.feature p {
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

@media (max-width: 1024px) {
  .blog-header {
    flex-direction: column;
    margin: 0 16px;
    padding-top: 110px;
    align-items: start;
    gap: 16px;
  }

  .socials {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .social-icons img {
    width: 40px !important;
    height: 40px !important;
  }

  .blog-photos {
    margin: 30px 16px;
    padding: 20px 20px;
    justify-content: center;
  }

  .blog-photos img {
    display: none;
    width: 100%;
  }

  .blog-photos img[active] {
    display: block;
  }

  .blog-content {
    margin: 20px 16px;
    flex-direction: column;
  }

  .content-desc {
    width: auto;
    padding: 20px 20px;
  }

  .content-text {
    padding-top: 20px;
  }
}
