.mkfp-meta-fields {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 1.5rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid #dfe3ff;
  padding: 1.15rem 1rem;
}
.mkfp-meta-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-width: 180px;
  flex: 1 1 0;
  padding: 0 2rem;
  position: relative;
  gap: 0.75rem;
 
  transition: transform 0.18s cubic-bezier(.4,1.5,.5,1);
  text-decoration: none;
  color: inherit;
}
.mkfp-meta-item:hover {
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}
.mkfp-clickable {
  text-decoration: none;
  color: inherit;
}
.mkfp-clickable:hover {
  text-decoration: none;
  color: inherit;
}
.mkfp-meta-item:not(:last-child) {
  border-right: 1px solid #e0e6ed;
  height: 80%;
}

.mkfp-meta-icon {
  width: 45px;
  height: 45px;
  display: flex;
  margin-right: 0.3rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  background: #6c97ff;
  padding: 8px;
  border-radius: 10px;
  transition: transform 0.18s cubic-bezier(.4,1.5,.5,1), box-shadow 0.18s cubic-bezier(.4,1.5,.5,1);
}
.mkfp-meta-item:hover .mkfp-meta-icon {
  transform: scale(1.13);
  box-shadow: 0 2px 8px rgba(106,141,255,0.13);
}
.mkfp-meta-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  -webkit-user-drag: none;
}
.mkfp-meta-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* No align-items, let text be left-aligned by default */
}
.mkfp-meta-label {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: #444;
  text-align: left;
  position: relative;
}
.mkfp-meta-label::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #6c97ff;
  transition: width 0.3s ease;
}
.mkfp-meta-item:hover .mkfp-meta-label::after {
  width: 50%;
}
.mkfp-meta-value {
  font-size: 0.8rem;
  color: #222;
  text-align: left;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .mkfp-meta-fields {
    padding: 1rem 0.5rem;
  }
  .mkfp-meta-item {
    padding: 0 1rem;
    min-width: 140px;
    gap: 0.5rem;
  }
  .mkfp-meta-icon {
    width: 40px;
    height: 40px;
  }
  .mkfp-meta-label, .mkfp-meta-value {
    font-size: 1rem;
  }
}
@media (max-width: 700px) {
  .mkfp-meta-fields {
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0.2rem;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  }
  .mkfp-meta-item {
    flex-direction: row;
    border-right: none !important;
    border-bottom: 1px solid #e0e6ed;
    min-width: 0;
    width: 100%;
    padding: 1rem 0.5rem;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  .mkfp-meta-item:not(:last-child)::after {
    display: none;
  }
  .mkfp-meta-item:last-child {
    border-bottom: none;
  }
  .mkfp-meta-icon {
    width: 36px;
    height: 36px;
  }
  .mkfp-meta-label, .mkfp-meta-value {
    font-size: 0.98rem;
  }
}
@media (max-width: 480px) {
  .mkfp-meta-fields {
    padding: 0.2rem 0.1rem;
    border-radius: 8px;
  }
  .mkfp-meta-item {
    padding: 0.7rem 0.2rem;
  }
  .mkfp-meta-icon {
    width: 28px;
    height: 28px;
  }
  .mkfp-meta-label, .mkfp-meta-value {
    font-size: 0.92rem;
  }
} 