.projects-list {
  margin: 2rem 0;
}

.project-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.project-item:last-child {
  border-bottom: none;
}

.project-icon {
  align-items: center;
  justify-content: center;
}

.project-icon i.green {
  font-size: 3.5rem;
  color: rgb(1, 96, 26);
}
.project-icon i.green::after {
  color: rgba(1, 143, 39, 1);
}
.project-icon i.blue {
  font-size: 3.5rem;
  color: rgb(15, 1, 96);
}
.project-icon i.blue::after {
  color: rgb(1, 60, 143);
}
.project-icon i.yellow {
  font-size: 3.5rem;
  color: rgb(228, 89, 3);
}
.project-icon i.yellow::after {
  color: rgb(222, 225, 14);
}

.project-content {
  flex-grow: 1;
}

.project-content h3 {
  margin: 0 0 0.5rem 0;
  color: #2c5282;
}

.project-content p {
  margin: 0 0 1rem 0;
  color: #4a5568;
}

.project-link {
  display: inline-block;
  color: #2c5282;
  text-decoration: none;
  font-weight: 500;
}

.project-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .project-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .project-content {
    text-align: center;
  }
} 

.fad {
  position: relative;
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
}
.fad::before, .fad::after {
  position: absolute;
  top: 0;
  left: 10px;
  font-family: "Font Awesome 6 Duotone";
}



.projects-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.projects-header {
  text-align: center;
  margin-bottom: 3rem;
}

.projects-description {
  color: #666;
  max-width: 600px;
  margin: 1rem auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.project-card {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.project-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-content {
  padding: 1.5rem;
}

.project-content h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
}

.project-content h2 a {
  color: inherit;
  text-decoration: none;
}

.project-date {
  color: #666;
  font-size: 0.9rem;
  margin: 0 0 1rem 0;
}

.project-description {
  color: #444;
  margin: 0 0 1rem 0;
  line-height: 1.5;
}

.read-more {
  display: inline-block;
  color: #2c5282;
  text-decoration: none;
  font-weight: 500;
}

.read-more:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .projects-page {
    padding: 1rem;
  }
}