/* MAIN WRAPPER */
.mks-profile {
  max-width: 900px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
}

/* PHOTO / FEATURED IMAGE */
.mks-photo img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* INFO GRID */
.mks-info-grid {
  border: 2px solid #003366;
  border-radius: 10px;
  overflow: hidden;
}

/* ROW */
.mks-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #ccc;
}

/* LABEL + VALUE */
.mks-label,
.mks-value {
  padding: 12px 15px;
}

/* LABEL STYLE */
.mks-label {
  background: #f2f6fb;
  font-weight: 600;
  border-right: 1px solid #ccc;
}

/* VALUE STYLE */
.mks-value {
  background: #fff;
}

/* LAST ROW BORDER FIX */
.mks-row:last-child {
  border-bottom: none;
}

/* COMMENT SECTION */
.mks-comments {
  margin-top: 40px;
  padding: 20px;
  background: #f9fbff;
  border-radius: 10px;
  border: 2px solid #003366;
}

.mks-comments h3 {
  margin-bottom: 15px;
  color: #003366;
}

/* COMMENT LIST */
.mks-comment {
  border-bottom: 1px dashed #ccc;
  padding: 10px 0;
}

.mks-comment:last-child {
  border-bottom: none;
}

.mks-comment span {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 3px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .mks-row {
    grid-template-columns: 1fr;
  }
  .mks-label {
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
}