/* Desktop-only refinement layer.
   Shared/base rules stay in style.css */

@media (min-width: 769px) {
  .container {
    padding: 0 2rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero-layout {
    flex-direction: row;
    text-align: left;
    gap: 4rem;
  }

  .social-links {
    justify-content: flex-start;
  }

  .btn {
    width: auto;
  }

  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .timeline {
    border-left: 2px solid var(--glass-border);
    margin-left: 1rem;
    padding-left: 2rem;
  }

  .timeline-item::before {
    display: block;
  }

  .edu-card {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .hero-layout {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .social-links {
    justify-content: center;
  }

  .profile-img-container {
    width: 220px;
    height: 220px;
  }
}

@media (min-width: 993px) {
  .profile-img-container {
    width: 280px;
    height: 280px;
  }
}
