/* Skills header single column layout */
.skills-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  width: 100%;
}

.skills-text {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.skills-text p {
  margin-bottom: 0;
  line-height: 1.8;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

.highlighted-tech {
  font-weight: 500;
  color: var(--primary-color);
}

.skills-divider {
  width: 50%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--primary-color), transparent);
  margin: 25px auto;
}

@media (max-width: 768px) {
  .skills-text {
    max-width: 100%;
    padding: 0 15px;
  }
  
  .skills-text p {
    font-size: 1rem;
  }
  
  .skills-divider {
    width: 80%;
  }
}
