.macbook-air {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  padding: 40px;
  position: relative;
  background-color: #eeedf1;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  box-sizing: border-box;
}


.macbook-air .profile {
  display: flex;
  flex-direction: column;
  min-width: 300px;
  max-width: 400px;
  align-items: flex-start;
  justify-content: space-between;
  position: sticky;
  top: 40px;
  flex-shrink: 0;
  min-height: calc(100vh - 80px);
}

.macbook-air .profile-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.macbook-air .vector {
  position: relative;
  width: 100px;
  height: 100px;
}

.macbook-air .text-container {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  flex: 0 0 auto;
}

.macbook-air .name {
  margin: 0;
  font-family: "Inter", "Helvetica", sans-serif;
  font-weight: 600;
  color: #19191a;
  font-size: 26px;
  letter-spacing: 0;
  line-height: 1.1;
}

.macbook-air .c {
  color: #000000;
}

.macbook-air .title {
  margin: 0;
  font-family: "Inter", "Helvetica", sans-serif;
  font-weight: 400;
  color: #090909;
  font-size: 20px;
  letter-spacing: 0.02px;
  line-height: 1.4;
}

.macbook-air .text-wrapper {
  color: #19191a;
}

.macbook-air .text-wrapper-2 {
  color: #090909;
  letter-spacing: 0.02px;
}

.macbook-air .text-wrapper-3 {
  color: #000000;
  letter-spacing: 0.02px;
}

.macbook-air .text-wrapper-4 {
  margin: 0;
  font-family: "Inter", "Helvetica", sans-serif;
  font-weight: 400;
  color: #3f00d8;
  font-size: 20px;
  letter-spacing: 0.12px;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.2s ease;
}

.macbook-air .text-wrapper-5 {
  margin: 0;
  font-family: "Inter", "Helvetica", sans-serif;
  font-weight: 400;
  color: #3f00d8;
  font-size: 20px;
  letter-spacing: 0.12px;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.2s ease;
}

.macbook-air .contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
}

.macbook-air .div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}


.macbook-air .location {
  margin: 0;
  font-family: "Inter", "Helvetica", sans-serif;
  font-weight: 400;
  color: #000000;
  font-size: 20px;
  letter-spacing: 0.12px;
  line-height: 1.4;
}

.macbook-air .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 100px;
  flex: 1;
  min-width: 0;
  max-width: 100%;
}

.macbook-air .project {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  max-width: 100%;
}

.macbook-air .image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.macbook-air .list .project:last-child .image {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.macbook-air .container-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

.macbook-air .container-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.macbook-air .description {
  margin: 0;
  font-family: "Inter", "Helvetica", sans-serif;
  font-weight: 400;
  color: #090909;
  font-size: 20px;
  letter-spacing: -0.25px;
  line-height: 1.5;
}

.macbook-air .date {
  margin: 0;
  font-family: "Inter", "Helvetica", sans-serif;
  font-weight: 400;
  color: #86818b;
  font-size: 16px;
  letter-spacing: -0.25px;
  line-height: 1.4;
}

/* Desktop shows location below, mobile shows inline */
.macbook-air .mobile-location {
  display: none;
}

.macbook-air .desktop-location {
  display: block;
}

/* Hover effects */
.macbook-air .text-wrapper-4:hover,
.macbook-air .text-wrapper-5:hover {
  color: #2600a0;
}

/* Hide dots on desktop */
@media (min-width: 1025px) {
  .macbook-air .dot {
    display: none;
  }
}

/* Responsive design */
@media (max-width: 1024px) {
  .macbook-air {
    flex-direction: column !important;
    gap: 0px;
    padding: 16px;
  }
  
  .macbook-air .profile {
    position: static;
    max-width: 100%;
    margin-bottom: 40px;
    min-height: auto;
  }
  
  .macbook-air .contact-info {
    flex-direction: row;
    gap: 32px;
    margin-top: 0px;
  }
  
  /* Switch to inline location for mobile */
  .macbook-air .mobile-location {
    display: inline;
    color: #090909;
    letter-spacing: 0.02px;
  }
  
  .macbook-air .desktop-location {
    display: none;
  }
  
  /* Make links horizontal for mobile */
  .macbook-air .div:first-child {
    flex-direction: row;
    gap: 12px;
  }
  
  .macbook-air .vector {
    width: 100px;
    height: 100px;
    border-radius: 50%;
  }
  
  .macbook-air .name {
    font-size: 24px;
    line-height: 1.2;
  }
  
  .macbook-air .title {
    font-size: 18px;
  }
  
  .macbook-air .profile-info {
    margin-bottom: 16px;
  }
  
  .macbook-air .contact-info {
    gap: 40px;
  }
  
  .macbook-air .text-wrapper-4,
  .macbook-air .text-wrapper-5,
  .macbook-air .location {
    font-size: 18px;
  }
  
  .macbook-air .description {
    font-size: 18px;
  }
  
  .macbook-air .container,
  .macbook-air .container-wrapper {
    padding: 0 16px;
  }
  
  .macbook-air .list {
    gap: 40px;
  }
}
