/* Container utama */
.portfolio.container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
}

/* Setiap sertifikat */
.certificate {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin-top: 8rem;
  margin-bottom: -8rem;
  align-items: flex-start;
  background-color: var(--second-bg-color);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Gambar sertifikat */
.certificate img {
  width: 200px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Deskripsi sertifikat */
.description {
  flex: 1;
}

.description h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.description p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive untuk layar kecil */
@media (max-width: 768px) {
  .certificate {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .certificate img {
    width: 100%;
    max-width: 300px;
  }

  .description h2 {
    font-size: 1.1rem;
  }

  .description p {
    font-size: 0.95rem;
  }
}
