/* WRAPPER */
.profile-section {
  padding: 40px 10%;
}

/* CONTAINER */
.profile-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* CARD UMUM */
.profile-card,
.activity-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* PROFILE */
.profile-card {
  text-align: center;
}

/* AVATAR */
.avatar {
  width: 100px;
  height: 100px;
  background: #0f172a;
  color: white;
  font-size: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 10px;
}

/* EMAIL */
.email {
  color: gray;
  font-size: 14px;
}

/* BUTTON */
.profile-actions {
  margin-top: 15px;
}

.btn {
  display: inline-block;
  padding: 10px 15px;
  margin: 5px;
  background: #0f172a;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.btn:hover {
  background: #1e293b;
}

/* BUTTON SECONDARY */
.btn.secondary {
  background: gray;
}

.btn.secondary:hover {
  background: #555;
}

/* ACTIVITY */
.activity-card h3 {
  margin-bottom: 10px;
}

.activity-card ul {
  padding-left: 20px;
}

.activity-card li {
  margin-bottom: 8px;
}

