/*--------------------------------------------------------------
# Custom Modern Section: Laporan Praktikum (Web & Mobile)
--------------------------------------------------------------*/
.laprak-card-modern {
  background: var(--surface-color, #ffffff);
  border-radius: 14px;
  padding: 30px 24px;
  margin: 15px 5px 25px 5px;
  position: relative;
  overflow: hidden;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid color-mix(in srgb, var(--default-color, #272829), transparent 94%);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1;
}

/* --- DEKORASI GARIS ATAS DINAMIS --- */
/* Default Web: Biru */
.laprak-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0563bb, #00a8ff);
  opacity: 0.8;
  transition: height 0.3s ease, opacity 0.3s ease;
  z-index: -1;
}

/* Khusus Mobile variant: Merah */
.laprak-card-modern.mbl-variant::before {
  background: linear-gradient(90deg, #ff4757, #ff6b81);
}

/* --- DESAIN BULATAN IKON POJOK KANAN ATAS --- */
/* Default Web: Bulatan Biru Halus */
.laprak-card-modern .laprak-card-icon {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, #0563bb, transparent 93%);
  border-radius: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-bottom: 18px;
  padding-left: 18px;
  color: #0563bb;
  font-size: 1.25rem;
  transition: all 0.4s ease;
}

/* Khusus Mobile variant: Bulatan Merah Halus */
.laprak-card-modern.mbl-variant .laprak-card-icon {
  background: color-mix(in srgb, #ff4757, transparent 93%);
  color: #ff4757;
}

/* --- STRUCTURAL TEXT CONTENT --- */
.laprak-card-modern .laprak-card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-top: 10px;
  width: 100%;
}

.laprak-card-modern .laprak-card-title {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
  padding-right: 35px;
  /* Mencegah teks judul menabrak ikon di pojok kanan */
  transition: color 0.3s ease;
}

.laprak-card-modern .laprak-card-text {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* --- TOMBOL LINK INTERAKTIF --- */
/* Default Web: Biru */
.laprak-card-modern .laprak-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0563bb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  transition: gap 0.3s ease;
}

/* Khusus Mobile variant: Merah */
.laprak-card-modern.mbl-variant .laprak-card-link {
  color: #ff4757;
}

.laprak-card-modern .laprak-card-link i {
  transition: transform 0.3s ease;
}

