p {
  padding: 1rem 0;
}

/* ===== PROGRAM SCREENSHOT =============================== */
.mockup-feature {
  display: flex;
  justify-content: center;
  align-items: center;

  margin-bottom: 8rem;
}

.mockup-container {
  overflow: hidden;

  max-width: 100rem;
  width: 100%;

  border: 1px solid var(--glass-border);
  border-radius: 2rem;
  backdrop-filter: blur(2rem);
  background: var(--glass-bg);
  box-shadow:
    0 2rem 4rem rgba(0, 0, 0, 0.4),
    0 0 3rem var(--primary-20);
}

.mockup-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== ARTEFACT GRID =========================================== */
.artefact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;

  margin-bottom: 6rem;
}

/* ===== ARTEFACT CARD =========================================== */
.artefact-card {
  overflow: hidden;

  position: relative;

  transition: all 0.3s ease;

  border: 1px solid var(--glass-border);
  border-radius: 1.6rem;
  backdrop-filter: blur(2rem);
  background: var(--glass-bg);
}

/* Screenshot area */
.artefact-screenshot {
  overflow: hidden;

  position: relative;

  width: 100%;
  height: 28rem;

  background: var(--clr-base-900);
}

.artefact-screenshot::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  height: 4rem;

  content: "";

  background: linear-gradient(transparent, var(--clr-base-800));
  pointer-events: none;
}

.artefact-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.5s ease;
}

/* Text area */
.artefact-info {
  padding: 2.5rem;
}

.artefact-info h3 {
  margin-bottom: 1rem;

  font-size: var(--txt-huge);
}

.artefact-info p {
  font-size: var(--txt-normal);
  color: var(--clr-primary-600);
  line-height: 1.6;
}

.callout {
  margin-top: 2rem;
  padding: 1.5rem;

  border-left: 0.4rem solid var(--clr-primary);
  border-radius: 0 1.2rem 1.2rem 0;
  background: rgba(0, 240, 255, 0.05);
}
