/* Programs section styles */
.programs-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.programs-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.program-item {
  background-color: #fff;
  overflow: hidden;
  position: relative;
}


.program-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #666;
}

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

.programs-content {
  padding: 1.5rem;
  height: 100%;
  background-color: #1e293b;
  color: #fff;
}

.programs-icon {
  width: 50px;
  height: 50px;
  top: 0;
  left: 0;
  position: absolute;
  background-color: #df6b22;
  padding: 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.programs-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.programs-title-and-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.program-link {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: start;
}

.program-link svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}

.program-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.program-desc {
  margin-top: 1vh;
  font-size: 0.9rem;
  color: #fefefe;
  line-height: 1.5;
}

/* Media queries */
@media screen and (max-width: 768px) {
  .programs-list {
    grid-template-columns: 1fr;
  }
}
