/* Gemeinsame Eigenschaften für beide Widgets */
.widget {
  position: absolute;     /* freie Positionierung */
  width: 398px;
  height: 398px;
  right: 47px;             /* Maß rechtsbündig */
  border: 1px solid #ccc;
  background: #f9f9f9;
  padding: 5px;
  box-sizing: border-box;
}

/* Erstes Widget: 1120 px vom oberen Rand */
#widget-tagesschau {
  top: 1120px;
}

/* Zweites Widget: 76 px unter dem ersten */
#widget-stuttmann {
  top: calc(1120px + 398px + 47px);
}
